@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --card-background: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.input-section {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.teams-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.vs {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

input {
    padding: 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 8px;
    width: 200px;
    font-size: 1.1rem;
}

.predict-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.2s;
}

.predict-button:hover {
    transform: scale(1.05);
}

.prediction-section {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.prediction-box {
    margin-top: 1.5rem;
}

.prediction-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.probability-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 500;
}

.prediction-reasons {
    text-align: left;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.prediction-reasons h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.prediction-reasons ul {
    list-style-type: none;
}

.prediction-reasons li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.prediction-reasons li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* New Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 0;
    margin-top: 4rem;
    font-family: 'Playfair Display', serif;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    position: relative;
}

.footer-content::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: 0;
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 600px) {
    .teams-input {
        flex-direction: column;
    }
    
    input {
        width: 100%;
    }
    
    .vs {
        margin: 0.5rem 0;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 2rem 0;
    }
    
    .footer h2 {
        font-size: 2rem;
    }
    
    .footer p {
        font-size: 1.1rem;
    }
}