@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --pitch-green: #1db954;
    --pitch-green-dark: #0d4a22;
    --referee-yellow: #f1c40f;
    --referee-red: #e74c3c;
    --stadium-black: #080808;
    --stadium-gray: #151515;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    /* Increased for better contrast */
    --text-low-contrast: rgba(255, 255, 255, 0.6);
}

.bg-pitch-green {
    background-color: var(--pitch-green) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9) !important;
}

body {
    background-color: var(--stadium-black);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Gradients */
.bg-pitch-gradient {
    background: linear-gradient(135deg, var(--stadium-black) 0%, #1a2a1a 100%);
}

.text-gradient {
    background: linear-gradient(90deg, var(--pitch-green), var(--referee-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--pitch-green);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

/* Buttons */
.btn-football {
    background: linear-gradient(90deg, var(--pitch-green), #158f43);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-football:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
    color: #000;
}

.btn-referee {
    background: linear-gradient(90deg, var(--referee-yellow), #d4ac0d);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(29, 185, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(29, 185, 84, 0);
    }
}

.pulse {
    animation: pulse-green 2s infinite;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }

    .section-padding {
        padding: 40px 0;
    }
}