:root{
    --white:#ffffff;
    --red:#e10600;
    --black:#0d0d0d;
    --dark:#161616;
    --gray:#cfcfcf;
    --win-color:#28a745;
    --loss-color:#b30000;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    color:var(--white);
    min-height:100vh;
    background:linear-gradient(-45deg,#0d0d0d,#2a0000,#0d0d0d,#1a0000);
    background-size:400% 400%;
    animation:bgMove 12s ease infinite;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

@keyframes bgMove{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 50px;
    font-family:'Bebas Neue',sans-serif;
    background:linear-gradient(270deg,#ffffff 0%,#ffffff 55%,#ff1a1a 100%);
    border-bottom:3px solid #000;
    position:relative;
    z-index:999
}

.logo img{
    height:90px;
    transition:.3s
}

.logo img:hover{
    transform:scale(1.08)
}

.nav-links{
    display:flex;
    gap:35px
}

.nav-links li a{
    display:flex;
    flex-direction:column;
    align-items:center;
    color:var(--red);
    font-size:17px;
    letter-spacing:1px;
    position:relative;
    transition:.3s
}

.nav-links li a i{
    font-size:22px;
    margin-bottom:5px
}

.nav-links li a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    width:0%;
    height:3px;
    background:var(--red);
    transition:.3s
}

.nav-links li a:hover::after{
    width:100%
}

.nav-links li a:hover{
    transform:translateY(-2px)
}

#menu-checkbox{
    display:none
}

.menu-icon{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer
}

.menu-icon span{
    width:30px;
    height:3px;
    background:var(--red)
}

.hero{
    min-height:88vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    padding:40px 20px;
    z-index:1
}

.hero-bg-image{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    z-index:0
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(255,0,0,.18),transparent 55%);
    z-index:1
}

.hero-content{
    position:relative;
    z-index:2
}

.hero-year-badge{
    font-family:'Bebas Neue',sans-serif;
    font-size:14px;
    letter-spacing:4px;
    color:var(--red);
    border:1px solid var(--red);
    padding:8px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:15px;
    background:rgba(225,6,0,0.08)
}

.small-title{
    font-family:'Montserrat',sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    color:var(--red);
    margin-bottom:10px
}

.hero h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:120px;
    letter-spacing:4px
}

.hero-title-line{
    width:80px;
    height:3px;
    background:var(--red);
    margin:15px auto;
    border-radius:2px
}

.hero-text{
    max-width:700px;
    margin:18px auto 30px;
    color:#d8d8d8;
    font-size:18px;
    line-height:1.8
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap
}

.hero-scroll{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    z-index:2;
    animation:scrollBounce 2s ease infinite
}

.hero-scroll span{
    font-family:'Bebas Neue',sans-serif;
    font-size:12px;
    letter-spacing:3px;
    color:rgba(255,255,255,0.4)
}

.hero-scroll i{
    color:var(--red);
    font-size:16px
}

@keyframes scrollBounce{
    0%,100%{transform:translateX(-50%) translateY(0)}
    50%{transform:translateX(-50%) translateY(8px)}
}

.btn{
    padding:14px 28px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    display:inline-block
}

.red-btn{
    background:var(--red);
    color:#fff
}

.white-btn{
    background:#fff;
    color:#111
}

.btn:hover{
    transform:translateY(-4px)
}

.quick-info{
    width:90%;
    max-width:1300px;
    margin:-45px auto 80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    position:relative;
    z-index:10
}

.info-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    position:relative;
    overflow:hidden
}

.info-card-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.15;
    transition:opacity .3s
}

.info-card:hover .info-card-img{
    opacity:0.25
}

.info-card-number{
    font-family:'Bebas Neue',sans-serif;
    font-size:48px;
    color:rgba(225,6,0,0.15);
    position:absolute;
    top:10px;
    right:15px;
    line-height:1
}

.info-card i{
    font-size:38px;
    color:var(--red);
    margin-bottom:12px;
    position:relative;
    z-index:1
}

.info-card h3{
    position:relative;
    z-index:1
}

.info-card p{
    position:relative;
    z-index:1
}

.info-card:hover{
    transform:translateY(-8px);
    border-color:var(--red)
}

.home-stats{
    width:90%;
    max-width:1000px;
    margin:0 auto 80px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    padding:40px 20px
}

.home-stat{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center
}

.home-stat-number{
    font-family:'Bebas Neue',sans-serif;
    font-size:42px;
    color:var(--white);
    line-height:1
}

.home-stat-label{
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    color:rgba(255,255,255,0.4);
    margin-top:8px
}

.home-stat-divider{
    width:1px;
    height:50px;
    background:rgba(255,255,255,0.1)
}

.about-section{
    width:90%;
    max-width:1250px;
    margin:auto;
    padding:20px 0 90px
}

.section-title{
    text-align:center;
    margin-bottom:45px
}

.section-title h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:62px
}

.section-title-line{
    width:60px;
    height:3px;
    background:var(--red);
    margin:15px auto 0;
    border-radius:2px
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px
}

.about-box{
    background:rgba(255,255,255,.04);
    border-left:5px solid var(--red);
    border-radius:16px;
    padding:35px;
    position:relative;
    overflow:hidden
}

.about-box-img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px
}

.about-box-icon{
    width:45px;
    height:45px;
    border-radius:12px;
    background:rgba(225,6,0,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px
}

.about-box-icon i{
    font-size:20px;
    color:var(--red)
}

.about-box p{
    color:#d8d8d8;
    line-height:1.8
}
.about-timeline{
    width:90%;
    max-width:900px;
    margin:0 auto 80px;
    position:relative;
    padding:20px 0
}

.about-timeline-line{
    position:absolute;
    left:30px;
    top:0;
    bottom:0;
    width:2px;
    background:rgba(255,255,255,0.08)
}

.about-timeline-item{
    display:flex;
    gap:30px;
    margin-bottom:40px;
    position:relative
}

.about-timeline-item:last-child{
    margin-bottom:0
}

.about-timeline-dot{
    width:16px;
    height:16px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    border:2px solid rgba(255,255,255,0.2);
    flex-shrink:0;
    margin-top:6px;
    margin-left:23px;
    position:relative;
    z-index:2;
    transition:.3s
}

.about-timeline-dot-active{
    background:var(--red);
    border-color:var(--red);
    box-shadow:0 0 15px rgba(225,6,0,0.4)
}

.about-timeline-content{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:16px;
    padding:28px 30px;
    transition:.3s
}

.about-timeline-content:hover{
    border-color:rgba(225,6,0,0.2);
    background:rgba(225,6,0,0.04)
}

.about-timeline-year{
    font-family:'Bebas Neue',sans-serif;
    font-size:28px;
    color:var(--red);
    letter-spacing:2px;
    display:block;
    margin-bottom:6px
}

.about-timeline-content h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:22px;
    letter-spacing:1px;
    margin-bottom:8px
}

.about-timeline-content p{
    color:#c8c8c8;
    font-size:14px;
    line-height:1.7
}

@media(max-width:768px){
    .about-timeline-line{
        left:15px
    }

    .about-timeline-item{
        gap:20px
    }

    .about-timeline-dot{
        margin-left:8px
    }

    .about-timeline-content{
        padding:22px 20px
    }

    .about-timeline-year{
        font-size:24px
    }

    .about-timeline-content h3{
        font-size:19px
    }
}
.team-photo-section{
    width:90%;
    max-width:1400px;
    margin:0 auto 40px;
    position:relative
}

.team-photo-section img{
    width:100%;
    object-fit:contain;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3)
}

.team-photo{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3)
}

.team-photo-caption{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(13,13,13,0.9);
    border:1px solid var(--red);
    padding:12px 30px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap
}

.team-photo-caption i{
    color:var(--red);
    font-size:14px
}

.team-photo-caption span{
    font-family:'Bebas Neue',sans-serif;
    font-size:13px;
    letter-spacing:2px;
    color:rgba(255,255,255,0.8)
}

.home-cta{
    width:90%;
    max-width:1200px;
    margin:0 auto 80px;
    background:linear-gradient(135deg,rgba(225,6,0,0.12),rgba(255,255,255,0.03));
    border:1px solid rgba(225,6,0,0.2);
    border-radius:24px;
    padding:60px 40px;
    text-align:center
}

.home-cta-content h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:52px;
    letter-spacing:2px;
    margin-bottom:12px
}

.home-cta-content p{
    color:#d8d8d8;
    font-size:16px;
    margin-bottom:25px
}

.home-cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap
}

.page-hero{
    text-align:center;
    padding:80px 20px
}

.page-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(13,13,13,0.85),rgba(42,0,0,0.75));
    z-index:1
}

.page-hero-content{
    position:relative;
    z-index:2
}

.page-hero h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:90px
}

.page-hero p{
    color:#d8d8d8
}
.schedule-season-stats{
    width:90%;
    max-width:1000px;
    margin:0 auto 60px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    padding:35px 20px;
    background:linear-gradient(135deg,rgba(225,6,0,0.06),rgba(255,255,255,0.02));
    border:1px solid rgba(225,6,0,0.1);
    border-radius:20px;
    position:relative;
    z-index:10
}

.schedule-stat{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center
}

.schedule-stat-num{
    font-family:'Bebas Neue',sans-serif;
    font-size:42px;
    color:var(--white);
    line-height:1
}

.schedule-stat-win{
    color:var(--win-color)
}

.schedule-stat-loss{
    color:var(--loss-color)
}

.schedule-stat-label{
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    color:rgba(255,255,255,0.4);
    margin-top:8px
}

.schedule-stat-divider{
    width:1px;
    height:50px;
    background:rgba(255,255,255,0.08)
}

.schedule-team-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:40px
}

.schedule-team-badge{
    width:55px;
    height:55px;
    border-radius:16px;
    background:rgba(225,6,0,0.12);
    border:1px solid rgba(225,6,0,0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.schedule-team-badge i{
    font-size:22px;
    color:var(--red)
}

.schedule-team-badge-u16{
    background:rgba(255,193,7,0.1);
    border-color:rgba(255,193,7,0.25)
}

.schedule-team-badge-u16 i{
    color:#ffc107
}

.schedule-team-info h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:32px;
    letter-spacing:2px;
    line-height:1.1
}

.schedule-team-info span{
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    color:rgba(255,255,255,0.4);
    text-transform:uppercase
}

@media(max-width:768px){
    .schedule-season-stats{
        flex-direction:column;
        gap:20px;
        padding:30px 20px
    }

    .schedule-stat-divider{
        width:50px;
        height:1px
    }

    .schedule-team-header{
        margin-bottom:30px
    }
}

@media(max-width:480px){
    .schedule-stat-num{
        font-size:34px
    }
}
.standings-teaser-overlay{
    position:relative;
    z-index:2;
    background:rgba(13,13,13,0.85);
    padding:80px 30px;
    border-radius:0;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center
}

.standings{
    width:90%;
    max-width:900px;
    margin:60px auto
}

.table{
    display:flex;
    flex-direction:column;
    gap:10px
}

.row{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    background:rgba(255,255,255,.05);
    padding:15px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s
}

.row:hover{
    border-color:var(--red);
    transform:translateY(-3px)
}

.header{
    background:rgba(225,6,0,.15);
    font-weight:700
}

.highlight{
    border:1px solid var(--red)
}
.footer {
    margin-top: 60px;
    background: linear-gradient(135deg, #080808, #170000, #250000, #080808);
    border-top: 3px solid var(--red);
}

.footer-top {
    width: 92%;
    max-width: 1500px;
    margin: auto;
    padding: 40px 0 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-start;
}

.footer-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: none;
}

.footer-brand img {
    width: 90px;
    margin-bottom: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    line-height: 1;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    margin-top: 0;
    max-width: 260px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.footer-links-list li a:hover {
    color: var(--red);
    padding-left: 6px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: 0.3s;
    font-size: 14px;
}

.socials a:hover {
    background: var(--red);
    transform: translateY(-4px);
}

.footer-contact {
    color: #cfcfcf;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--red);
    font-size: 11px;
    width: 14px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.sub-heading{
    font-family:'Bebas Neue',sans-serif;
    font-size:38px;
    text-align:center;
    color:rgba(255,255,255,0.5);
    letter-spacing:2px;
    margin-bottom:35px
}

.sub-heading i{
    color:var(--red);
    margin-right:10px;
    font-size:30px
}

.standings-teaser{
    width:100%;
    text-align:center;
    position:relative;
    min-height:350px
}

.standings-teaser i{
    font-size:48px;
    color:var(--red);
    margin-bottom:20px;
    display:block
}

.standings-teaser h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:62px;
    letter-spacing:2px
}

.standings-teaser p{
    color:#d8d8d8;
    margin-bottom:25px;
    font-size:16px;
    max-width:500px;
    margin-left:auto;
    margin-right:auto
}

.schedule-section{
    width:90%;
    max-width:1000px;
    margin:auto;
    padding:0 0 90px
}

.schedule-group{
    margin-bottom:60px
}

.schedule-group:last-child{
    margin-bottom:0
}

.schedule-list{
    display:flex;
    flex-direction:column;
    gap:15px
}

.match-card{
    display:flex;
    align-items:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    padding:20px;
    transition:all 0.3s;
    position:relative;
    overflow:hidden
}

.match-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:5px;
    background:transparent;
    transition:background 0.3s
}

.match-card:hover{
    background:rgba(255,255,255,0.06);
    border-color:rgba(255,255,255,0.15);
    transform:translateX(5px)
}

.match-card.result-win::before{
    background:var(--win-color)
}

.match-card.result-loss::before{
    background:var(--loss-color)
}

.match-card.upcoming::before{
    background:rgba(255,255,255,0.2)
}

.match-date{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-width:65px;
    margin-right:25px;
    background:rgba(255,255,255,0.04);
    border-radius:10px;
    padding:10px
}

.match-day{
    font-family:'Bebas Neue',sans-serif;
    font-size:32px;
    line-height:1
}

.match-month{
    font-size:12px;
    font-weight:700;
    color:var(--red);
    letter-spacing:1px
}

.match-details{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:6px
}

.match-teams{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap
}

.team{
    font-weight:600;
    font-size:15px;
    color:#e0e0e0
}

.match-vs{
    font-family:'Bebas Neue',sans-serif;
    font-size:14px;
    color:rgba(255,255,255,0.3);
    letter-spacing:1px
}

.match-meta{
    font-size:12px;
    color:rgba(255,255,255,0.4)
}

.match-meta i{
    margin-right:5px;
    font-size:11px
}

.match-status{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-left:20px
}

.status-score{
    font-family:'Bebas Neue',sans-serif;
    font-size:28px;
    letter-spacing:1px;
    color:rgba(255,255,255,0.8)
}

.status-badge{
    font-size:10px;
    font-weight:700;
    padding:4px 10px;
    border-radius:4px;
    letter-spacing:1px
}

.win-badge{
    background:rgba(40,167,69,0.15);
    color:var(--win-color);
    border:1px solid rgba(40,167,69,0.3)
}

.loss-badge{
    background:rgba(108,117,125,0.15);
    color:var(--loss-color);
    border:1px solid rgba(108,117,125,0.3)
}

.upcoming-badge{
    background:rgba(255,255,255,0.05);
    color:rgba(255,255,255,0.6);
    border:1px solid rgba(255,255,255,0.15)
}

.league-badge{
    background:rgba(225,6,0,0.12);
    color:var(--red);
    border:1px solid rgba(225,6,0,0.3);
    font-size:9px;
    font-weight:700;
    padding:3px 8px;
    border-radius:4px;
    letter-spacing:1px
}

.friendly-badge{
    background:rgba(255,193,7,0.12);
    color:#ffc107;
    border:1px solid rgba(255,193,7,0.3);
    font-size:9px;
    font-weight:700;
    padding:3px 8px;
    border-radius:4px;
    letter-spacing:1px
}

.schedule-sub-label{
    font-family:'Montserrat',sans-serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:25px;
    margin-top:45px;
    display:flex;
    align-items:center;
    gap:15px;
    opacity:0.7
}

.schedule-sub-label::after{
    content:"";
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.06)
}

.schedule-group .schedule-list:first-of-type{
    margin-top:0
}

.schedule-image-banner{
    width:100%;
    margin:-40px auto 60px;
    position:relative;
    z-index:10
}

.schedule-image-banner img{
    width:50%;
    object-fit:contain;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3);
    margin:0 auto
}

.schedule-inner-banner{
    margin:0 auto 40px
}

.schedule-banner-img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3)
}

.standings-game-photo{
    width:90%;
    max-width:1400px;
    margin:0 auto 80px
}

.standings-photo{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3)
}

.about-team-photo{
    width:90%;
    max-width:1400px;
    margin:0 auto 80px
}

.full-width-photo{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3)
}

.coach-game-photo{
    width:100%;
    margin:0 auto 80px
}

.coach-game-photo img{
    width:60%;
    object-fit:contain;
    border-radius:20px;
    border:2px solid rgba(225,6,0,0.3);
    margin:0 auto
}

.about-quote-section{
    width:90%;
    max-width:900px;
    margin:0 auto 80px;
    padding:20px 0
}

.quote-box{
    background:linear-gradient(135deg,rgba(225,6,0,0.1),rgba(255,255,255,0.03));
    border:1px solid rgba(225,6,0,0.2);
    border-radius:20px;
    padding:50px 40px;
    text-align:center;
    position:relative
}

.coach-photo-wrapper{
    margin-bottom:25px
}

.coach-photo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid var(--red);
    margin:0 auto
}

.quote-box i{
    font-size:40px;
    color:rgba(225,6,0,0.3);
    margin-bottom:20px;
    display:block
}

.quote-box p{
    font-family:'Montserrat',sans-serif;
    font-size:20px;
    line-height:1.8;
    color:#e0e0e0;
    font-style:italic;
    font-weight:300;
    max-width:700px;
    margin:0 auto
}

.quote-author{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:4px
}

.author-name{
    font-family:'Bebas Neue',sans-serif;
    font-size:26px;
    color:var(--red);
    letter-spacing:1px
}

.author-role{
    font-size:13px;
    color:rgba(255,255,255,0.4);
    letter-spacing:1px;
    text-transform:uppercase
}

.contact-section{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:0 0 90px
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:40px;
    align-items:start
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px
}

.contact-info-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:30px;
    transition:all 0.4s
}

.contact-info-card:hover{
    border-color:rgba(225,6,0,0.4);
    background:rgba(255,255,255,0.06)
}

.contact-info-card i{
    font-size:28px;
    color:var(--red);
    display:block
}

.contact-info-card h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:28px;
    letter-spacing:1px;
    margin-bottom:10px
}

.contact-info-card p{
    color:#d8d8d8;
    font-size:14px;
    line-height:1.6
}

.contact-phone{
    color:var(--red)!important;
    font-weight:600;
    font-size:15px!important
}

.contact-sub-text{
    margin-top:15px;
    font-size:12px!important;
    color:rgba(255,255,255,0.4)!important
}

.contact-form-container{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:35px
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px
}

input, select, textarea{
    width:100%;
    padding:14px 18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:8px;
    color:var(--white);
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    transition:all 0.3s
}

input::placeholder, textarea::placeholder{
    color:rgba(255,255,255,0.35)
}

select{
    appearance:none;
    cursor:pointer
}

select option{
    background:#222;
    color:#fff
}

input:focus, select:focus, textarea:focus{
    outline:none;
    border-color:var(--red);
    background:rgba(225,6,0,0.05);
    box-shadow:0 0 10px rgba(225,6,0,0.1)
}

textarea{
    resize:vertical;
    min-height:120px
}

.lang-switcher{
    display:flex;
    gap:12px;
    align-items:center;
    margin-left:20px;
    padding-left:20px;
    border-left:2px solid rgba(0,0,0,0.15)
}

.lang-switcher a{
    font-family:'Bebas Neue',sans-serif;
    font-size:18px;
    letter-spacing:1px;
    color:#666;
    transition:0.3s
}

.lang-switcher a:hover{
    color:var(--red)
}

.lang-switcher .active-lang{
    color:var(--red);
    border-bottom:3px solid var(--red);
    padding-bottom:2px
}

.two-col{
    display:flex;
    gap:1.5rem;
    flex-wrap:wrap
}

.two-col .standings-teaser{
    flex:1;
    min-width:280px
}

.standings-empty{
    text-align:center;
    padding:60px 20px;
    background:rgba(255,255,255,0.03);
    border:1px dashed rgba(255,255,255,0.1);
    border-radius:16px
}

.standings-empty i{
    font-size:40px;
    color:var(--red);
    margin-bottom:20px;
    display:block
}

.standings-empty p{
    font-family:'Bebas Neue',sans-serif;
    font-size:24px;
    letter-spacing:1px;
    margin-bottom:8px
}

.standings-empty span{
    font-size:13px;
    color:rgba(255,255,255,0.4)
}

.academy-intro{
    width:90%;
    max-width:1300px;
    margin:0 auto 80px
}

.academy-intro-content{
    background:linear-gradient(135deg,rgba(225,6,0,0.08),rgba(255,255,255,0.03));
    border:1px solid rgba(225,6,0,0.15);
    border-radius:24px;
    padding:60px 50px;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:50px;
    align-items:center
}

.academy-label{
    font-family:'Bebas Neue',sans-serif;
    font-size:14px;
    letter-spacing:4px;
    color:var(--red);
    display:block;
    margin-bottom:12px
}

.academy-intro-text h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:52px;
    letter-spacing:1px;
    margin-bottom:20px
}

.academy-intro-text p{
    color:#d8d8d8;
    line-height:1.8;
    font-size:15px;
    margin-bottom:12px
}

.academy-intro-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px
}
.academy-why{
    width:90%;
    max-width:1300px;
    margin:0 auto 80px
}

.academy-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px
}

.academy-why-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:16px;
    padding:30px 22px;
    text-align:center;
    transition:.3s
}

.academy-why-card:hover{
    border-color:rgba(225,6,0,0.2);
    transform:translateY(-4px)
}

.academy-why-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    background:rgba(225,6,0,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px
}

.academy-why-icon i{
    font-size:20px;
    color:var(--red)
}

.academy-why-card h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:20px;
    letter-spacing:1px;
    margin-bottom:10px
}

.academy-why-card p{
    color:#c8c8c8;
    font-size:13px;
    line-height:1.6
}

@media(max-width:992px){
    .academy-why-grid{
        grid-template-columns:repeat(2,1fr)
    }
}

@media(max-width:480px){
    .academy-why-grid{
        grid-template-columns:1fr
    }
}
.stat-box{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    transition:.3s
}

.stat-box:hover{
    border-color:var(--red);
    transform:translateY(-4px)
}

.stat-number{
    font-family:'Bebas Neue',sans-serif;
    font-size:48px;
    color:var(--red);
    display:block;
    line-height:1
}

.stat-label{
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    color:rgba(255,255,255,0.5);
    margin-top:8px;
    display:block
}

.coach-profile{
    width:90%;
    max-width:800px;
    margin:0 auto
}

.coach-profile-card{
    background:linear-gradient(135deg,rgba(225,6,0,0.08),rgba(255,255,255,0.03));
    border:1px solid rgba(225,6,0,0.15);
    border-radius:20px;
    padding:50px;
    text-align:center
}

.coach-avatar{
    width:100px;
    height:100px;
    border-radius:50%;
    background:rgba(225,6,0,0.15);
    border:3px solid var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px
}

.coach-avatar i{
    font-size:40px;
    color:var(--red)
}

.coach-profile-card h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:36px;
    letter-spacing:1px;
    margin-bottom:6px
}

.coach-title{
    font-size:13px;
    font-weight:600;
    color:var(--red);
    letter-spacing:1px;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px
}

.coach-profile-card p{
    color:#d8d8d8;
    line-height:1.8;
    font-size:15px;
    max-width:550px;
    margin:20px auto 0
}
@media (max-width: 992px) {
    .hero h1 { font-size: 80px; }
    .quick-info { grid-template-columns: 1fr; margin-top: -30px; }
    .about-grid { grid-template-columns: 1fr; }
    .academy-why-grid { grid-template-columns: repeat(2, 1fr); }
    .academy-intro-content { grid-template-columns: 1fr; padding: 40px 30px; }
    .lineup { grid-template-columns: repeat(3, 1fr); }
    .u16-lineup { grid-template-columns: repeat(3, 1fr); }
    .team-hero-content h1 { font-size: 70px; }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .logo img { height: 60px; }
    .lang-switcher { margin-left: auto; padding-left: 15px; gap: 8px; }
    .lang-switcher a { font-size: 16px; }

    .menu-icon { display: flex; z-index: 1001; position: relative; }
    
    #menu-checkbox:checked ~ .menu-icon span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    #menu-checkbox:checked ~ .menu-icon span:nth-child(2) { opacity: 0; }
    #menu-checkbox:checked ~ .menu-icon span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
        height: 100vh;
        width: 90%;
        max-width: 320px;
        background: linear-gradient(180deg, #0d0d0d, #1a0000);
        flex-direction: column;
        align-items: center;
        padding: 100px 30px 40px;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
        z-index: 999;
        border-left: 3px solid var(--red);
        border-right: 3px solid var(--red);
        border-bottom: 3px solid var(--red);
        border-radius: 0 0 20px 20px;
        overflow-y: auto;
        opacity: 0;
    }
    
    #menu-checkbox:checked ~ .nav-links { transform: translateX(-50%) translateY(0); opacity: 1; }
    
    .nav-links::before {
        content: "";
        position: fixed;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: -1;
    }
    
    #menu-checkbox:checked ~ .nav-links::before { opacity: 1; pointer-events: auto; }
    
    .nav-links li { width: 100%; margin-bottom: 10px; }
    
    .nav-links li a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 10px;
        color: var(--white);
        font-size: 16px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid transparent;
        width: 100%;
    }
    
    .nav-links li a i { font-size: 18px; color: var(--red); margin-bottom: 0; width: 24px; text-align: center; }
    .nav-links li a:hover { background: rgba(225, 6, 0, 0.1); border-color: rgba(225, 6, 0, 0.3); }
    .nav-links li a::after { display: none; }
    
    .nav-links::after {
        content: "";
        position: absolute;
        top: 85px;
        left: 30px;
        right: 30px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.5), transparent);
    }

    .hero { min-height: 80vh; padding: 30px 15px; }
    .hero h1 { font-size: 55px; letter-spacing: 2px; }
    .small-title { font-size: 11px; letter-spacing: 3px; }
    .hero-text { font-size: 15px; margin-bottom: 25px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 80%; text-align: center; }

    .info-card { padding: 25px 20px; }

    .home-stats { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
        padding: 20px; 
    }
    .home-stat-divider { display: none; }
    .home-stat-number { font-size: 32px; }

    .section-title h2 { font-size: 46px; }
    .team-photo-caption { 
        padding: 8px 16px; 
        white-space: normal; 
        text-align: center; 
        justify-content: center; 
    }
    .team-photo-caption span { font-size: 10px; letter-spacing: 1px; }

    .home-cta { padding: 40px 20px; }
    .home-cta-content h2 { font-size: 38px; }
    
    .two-col, div[style*="display: flex"] { flex-direction: column; }
    .standings-teaser { min-height: auto; padding: 50px 20px; }
    .standings-teaser h2 { font-size: 48px; }

    .schedule-season-stats { flex-direction: column; gap: 20px; padding: 30px 20px; }
    .schedule-stat-divider { width: 50px; height: 1px; }
    
    .match-card { flex-wrap: wrap; gap: 15px; }
    .match-status { margin-left: 0; flex-direction: row; width: 100%; justify-content: flex-end; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
    
    .about-timeline-line { left: 15px; }
    .about-timeline-item { gap: 20px; }
    .about-timeline-dot { margin-left: 8px; }
    .about-timeline-content { padding: 22px 20px; }
    .about-timeline-year { font-size: 24px; }
    .about-timeline-content h3 { font-size: 19px; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    .team-hero { height: 50vh; min-height: 300px; }
    .team-hero-content h1 { font-size: 56px; }
    .staff-grid { gap: 30px; }
    .sub-heading { font-size: 30px; }
}

@media (max-width: 480px) {
    .navbar { padding: 10px 15px; }
    .logo img { height: 50px; }
    .lang-switcher { padding-left: 10px; margin-left: 10px; }
    .lang-switcher a { font-size: 14px; }

    .hero h1 { font-size: 40px; }
    .hero-year-badge { font-size: 11px; padding: 6px 14px; }
    .hero-buttons .btn { width: 100%; }

    .section-title h2 { font-size: 38px; }
    .sub-heading { font-size: 24px; }
    .sub-heading i { font-size: 22px; }

    .home-stat-number { font-size: 28px; }
    .home-stat-label { font-size: 9px; }

    .team-photo-caption { bottom: 15px; left: 15px; right: 15px; transform: none; }
    .about-box { padding: 25px 20px; }

    .home-cta-content h2 { font-size: 32px; }
    .standings-teaser h2 { font-size: 38px; }
    .standings-teaser i { font-size: 36px; }

    .match-teams { flex-direction: column; align-items: flex-start; gap: 4px; }
    .match-vs { display: none; }
    .match-date { min-width: 55px; margin-right: 15px; padding: 8px; }
    .match-day { font-size: 26px; }
    .schedule-stat-num { font-size: 34px; }

    .footer-top { flex-direction: column; text-align: center; align-items: center; }
    .footer-brand { flex-direction: column; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-column { width: 100%; }
    .socials { justify-content: center; }
    .footer-contact { justify-content: center; }
    .footer-links-list li a:hover { padding-left: 0; }

    .academy-why-grid { grid-template-columns: 1fr; }
    .academy-intro-text h2 { font-size: 36px; }

    input, select, textarea { font-size: 16px; }

    .lineup { grid-template-columns: repeat(2, 1fr); }
    .u16-lineup { grid-template-columns: repeat(2, 1fr); }
    .roster-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
    .player-number { font-size: 44px; }
    .player-name { font-size: 19px; }
    .team-hero-content h1 { font-size: 44px; }
    .team-hero-sub { font-size: 11px; letter-spacing: 3px; }
}