:root {
    --football-primary: #000000;
    --football-secondary: #ffffff;
    --football-accent: #333333;
    --football-light: #f8f9fa;
}

body {
    background-color: var(--football-secondary);
    color: var(--football-primary);
}

.navbar {
    background-color: var(--football-primary) !important;
    border-bottom: 3px solid var(--football-secondary);
}

.navbar-brand, .navbar-nav .nav-link {
    color: var(--football-secondary) !important;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: var(--football-light) !important;
}

.bg-primary {
    background-color: var(--football-primary) !important;
}

.text-primary {
    color: var(--football-primary) !important;
}

.btn-primary {
    background-color: var(--football-primary);
    border-color: var(--football-primary);
}

.btn-primary:hover {
    background-color: var(--football-accent);
    border-color: var(--football-accent);
}

.btn-outline-primary {
    color: var(--football-primary);
    border-color: var(--football-primary);
}

.btn-outline-primary:hover {
    background-color: var(--football-primary);
    border-color: var(--football-primary);
}

.card {
    border: 2px solid var(--football-primary);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-header {
    background-color: var(--football-primary);
    color: var(--football-secondary);
    border-bottom: 2px solid var(--football-secondary);
}

.footer {
    background-color: var(--football-primary) !important;
    color: var(--football-secondary) !important;
    border-top: 3px solid var(--football-secondary);
    position: relative !important;
    z-index: 1 !important;
}

.footer a {
    color: var(--football-secondary) !important;
}

.footer a:hover {
    color: var(--football-light) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--football-primary) 0%, var(--football-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.football-pattern {
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 75%, transparent 75%),
        linear-gradient(-45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 20px 20px;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .btn {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh !important;
        background-attachment: scroll !important;
    }
    
    .hero-section h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
    }
    
    .hero-section .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 40vh !important;
        padding: 2rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.9rem !important;
    }
    
    .hero-section .d-flex {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}




