/* =====================================================
   GAJANAN UTSAV SAMITI 2026
   Main Stylesheet
====================================================== */

:root{

    --black:#0d0d0d;
    --white:#ffffff;
    --gold:#d4af37;
    --light:#f8f8f8;
    --gray:#9d9d9d;
    --border:#262626;

    --shadow:0 8px 30px rgba(0,0,0,.12);

    --radius:16px;

    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:#222;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,92%);
    margin:auto;

}

/*=============================
 TYPOGRAPHY
==============================*/

h1,h2,h3{

    font-family:'Cinzel',serif;

}

h1{

    font-size:58px;

}

h2{

    font-size:36px;

}

h3{

    font-size:24px;

}

p{

    line-height:1.7;

}

/*=============================
 NAVBAR
==============================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(212,175,55,.18);

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    transition:.35s ease;

}

#menuBtn{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    color:var(--black);
}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--black);

    font-weight:800;

    font-size:18px;

    letter-spacing:.3px;

    white-space:nowrap;

}

.desktop-logo{
    display:inline;
}

.mobile-logo{
    display:none;
}

.logo i{

    color:var(--gold);

    font-size:30px;

    transition:.35s;

}

nav{

    display:flex;

    align-items:center;

    gap:22px;

    flex-wrap:nowrap;

}

nav a{

    position:relative;

    font-weight:600;

    font-size:16px;

    white-space:nowrap;

    transition:.35s;

}

nav a:hover{

    color:var(--gold);

}
nav a.active{

color:var(--gold);

}

nav a.active::after{

width:100%;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.35s;

}

nav a:hover::after{

width:100%;

}

.donate-btn{

    background:linear-gradient(135deg,#d4af37,#f2d978);

    color:#111;

    padding:10px 18px;

    border-radius:40px;

    font-weight:700;

    white-space:nowrap;

}

.donate-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(212,175,55,.45);

}

/*=============================
 MOBILE MENU
==============================*/

#menuBtn{

    display:none;

    border:none;

    background:none;

    font-size:24px;

    cursor:pointer;

}

/*=============================
 COMING SECTION
==============================*/

.coming{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px;

}

.coming h1{

    color:var(--gold);

    margin-bottom:15px;

}

.coming h2{

    font-size:30px;

}

/*=============================
 BUTTONS
==============================*/

.btn{

    display:inline-block;

    padding:15px 36px;

    background:linear-gradient(135deg,#d4af37,#f2d978);

    color:#111;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 12px 30px rgba(212,175,55,.35);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(212,175,55,.45);

}

/*=============================
 CARDS
==============================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    padding:30px;

}

/*=============================
 FOOTER
==============================*/

footer{

    position:relative;

    background:linear-gradient(180deg,#141414,#0b0b0b);

    color:#fff;

    text-align:center;

    padding:70px 0 35px;

    overflow:hidden;

    border-top:4px solid var(--gold);

}

footer::before{

content:"";

position:absolute;

top:-180px;

left:50%;

transform:translateX(-50%);

width:420px;

height:420px;

border-radius:50%;

background:rgba(212,175,55,.08);

filter:blur(80px);

pointer-events:none;

}

.footer-content h2{

    color:var(--gold);

    font-size:34px;

    margin-bottom:18px;

    letter-spacing:1px;

}

.footer-content p{

    margin:12px 0;

    color:#d8d8d8;

    line-height:1.8;

}

.social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:25px 0;

}

.social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1d1d1d;

    color:#fff;

    border:1px solid rgba(212,175,55,.25);

    transition:.35s;

}

.social a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 12px 30px rgba(212,175,55,.45);

}

.copyright{

    margin-top:25px;

    color:#9d9d9d;

    font-size:15px;

}

.developer{

    margin-top:8px;

    color:var(--gold);

    font-size:15px;

    font-weight:600;

    letter-spacing:.5px;

}

.footer-divider{

width:100px;

height:3px;

border:none;

background:var(--gold);

margin:25px auto;

border-radius:10px;

}

/*=============================
 BACK TO TOP
==============================*/

#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    cursor:pointer;

    display:none;

    z-index:999;

}

/*=============================
 SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}
/*==============================
MOBILE NAVIGATION
===============================*/

@media(max-width:992px){

nav{

position:absolute;

top:78px;

left:0;

width:100%;

background:#fff;

display:flex;

flex-direction:column;

align-items:center;

gap:0;

max-height:0;

overflow:hidden;

transition:.4s;

border-bottom:1px solid #eee;

}

nav.active{

max-height:420px;

padding:20px 0;

}

nav a{

padding:18px;

width:100%;

text-align:center;

}

}

/*==============================
ACTIVE MENU
===============================*/

.active-link{

color:var(--gold);

font-weight:600;

}

/*==============================
FADE EFFECT
===============================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/*==============================
PAGE LOADED
===============================*/

.loaded{

animation:fadeIn .5s;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}
/*=============================
HERO
==============================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#f7e08a 0%,transparent 30%),
    radial-gradient(circle at bottom left,#fff6d8 0%,transparent 35%),
    linear-gradient(135deg,#ffffff,#f8f8f8);

}

.hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

border-radius:50%;

background:rgba(212,175,55,.15);

top:-150px;

right:-120px;

filter:blur(80px);

animation:floatGlow 8s ease-in-out infinite;

}

.hero::after{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:rgba(212,175,55,.08);

bottom:-120px;

left:-100px;

filter:blur(70px);

animation:floatGlow 10s ease-in-out infinite reverse;

}

.hero-container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

}

.hero-left h1{

    font-size:72px;

    margin:20px 0;

    line-height:1.1;

    color:#111;

    text-shadow:0 3px 20px rgba(212,175,55,.15);

}

.hero-left h2{

    color:var(--gold);

    font-size:38px;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero-left p{

    font-size:19px;

    max-width:560px;

    line-height:1.9;

    color:#444;

    margin-bottom:40px;

}

.hero-right{

display:flex;

justify-content:center;

}

.hero-right img{

    width:470px;

    animation:ganeshFloat 5s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(212,175,55,.30));

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(12px);

    border:1px solid rgba(212,175,55,.35);

    color:#111;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}
.hero-buttons{

display:flex;

gap:20px;

margin-top:20px;

}

.btn-outline{

background:white;

border:2px solid var(--gold);

}

.btn-outline:hover{

background:var(--gold);

}

/*=============================
COUNTDOWN
==============================*/

.countdown{

padding:80px 0;

text-align:center;

background:#111;

color:white;

}

.timer{

margin-top:40px;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.timer div{

background:#1d1d1d;

padding:30px;

border-radius:18px;

}

.timer span{

font-size:48px;

font-weight:bold;

color:var(--gold);

display:block;

}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(25px);
}

100%{
transform:translateY(0px);
}

}

@keyframes ganeshFloat{

0%{
    transform:translateY(0px);
}

50%{
    transform:translateY(-18px);
}

100%{
    transform:translateY(0px);
}

}
/*==============================
SECTION TITLE
==============================*/

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

margin-bottom:10px;

}

.section-title p{

color:#777;

}

/*==============================
HIGHLIGHTS
==============================*/

.highlights{

padding:100px 0;

}

.highlight-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.highlight-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:var(--shadow);

transition:.4s;

}

.highlight-card:hover{

transform:translateY(-10px);

}

.highlight-card i{

font-size:45px;

color:var(--gold);

margin-bottom:20px;

}

/*==============================
TIMELINE
==============================*/

.timeline{

padding:100px 0;

background:#111;

color:white;

}

.timeline-box{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.timeline-box div{

background:#1f1f1f;

padding:30px;

border-radius:15px;

text-align:center;

}

.timeline-box span{

font-size:18px;

color:var(--gold);

font-weight:bold;

}

/*==============================
PREVIEW
==============================*/

.preview{

padding:100px 0;

}

.preview-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.preview-image img{

border-radius:20px;

box-shadow:var(--shadow);

}

/*==============================
DONATION
==============================*/

.donation{

padding:100px 0;

background:#f7f7f7;

}

.donation-box{

display:flex;

justify-content:space-between;

align-items:center;

padding:50px;

background:white;

border-radius:20px;

box-shadow:var(--shadow);

}

.donation-box img{

width:220px;

}

/*==============================
LOCATION
==============================*/

.location{

padding:100px 0;

}

.map-box{

    width:100%;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.map-box iframe{

    width:100%;

    height:450px;

    border:0;

    display:block;

}
/* Announcement */

.announcement{

margin-top:78px;

background:#111;

color:#fff;

padding:12px 0;

font-weight:600;

}

/* Stats */

.stat-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

border:1px solid rgba(212,175,55,.15);

position:relative;

overflow:hidden;

}

.stat-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(212,175,55,.12),
transparent
);

transition:.6s;

}

.stat-card:hover::before{

left:100%;

}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.stat-card h3{

font-size:56px;

font-weight:700;

color:var(--gold);

margin-bottom:10px;

transition:.3s;

}

.stat-card p{

font-size:18px;

color:#555;

font-weight:500;

}

/* Notice */

.notice{

padding:80px 0;

background:#111;

}

.notice-box{

background:#222;

color:#fff;

padding:50px;

border-radius:20px;

text-align:center;

}

/* Video */

.video-preview{

padding:100px 0;

}

.video-card{

overflow:hidden;

border-radius:20px;

box-shadow:var(--shadow);

}

/* Committee */

.committee-preview{

padding:100px 0;

background:#f7f7f7;

}

.committee-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.committee-card{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

position:relative;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

border:1px solid rgba(212,175,55,.15);

transition:.4s ease;

}

.committee-card img{

width:170px;

height:170px;

border-radius:50%;

object-fit:cover;

margin:auto;

margin-bottom:22px;

border:5px solid #d4af37;

padding:5px;

background:white;

transition:.4s;

}

.committee-card:hover{

transform:translateY(-10px);

box-shadow:0 22px 45px rgba(201, 196, 181, 0.22);

}

.committee-card:hover img{

transform:scale(1.06) rotate(2deg);

}
.committee-card h3{

font-size:18px;

color:var(--gold);

margin-bottom:8px;

text-transform:uppercase;

letter-spacing:1px;

}

.committee-card p{

font-size:22px;

font-weight:700;

color:#222;

}
.committee-card::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:100%;

height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transition:.8s;

pointer-events:none;

}

.committee-card:hover::before{

left:120%;

}
/*==============================
PAGE HEADER
==============================*/

.page-header{

padding:160px 0 80px;

background:#111;

color:white;

text-align:center;

}

.page-header h1{

font-size:55px;

margin-bottom:15px;

color:var(--gold);

}

.schedule-section{

padding:90px 0;

background:#f7f7f7;

}

.schedule-card{

background:white;

padding:40px;

margin-bottom:40px;

border-radius:20px;

box-shadow:var(--shadow);

}

.schedule-card h2{

margin-bottom:30px;

color:#111;

}

.event-list{

display:grid;

gap:20px;

}

.event{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px;

background:#fafafa;

border-left:5px solid var(--gold);

border-radius:12px;

}

.event span{

font-weight:600;

color:var(--gold);

}

.games-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.game{

padding:25px;

background:#fafafa;

border-radius:12px;

text-align:center;

transition:.3s;

}

.game:hover{

transform:translateY(-5px);

box-shadow:var(--shadow);

}

.game strong{

display:block;

font-size:20px;

color:var(--gold);

margin-bottom:10px;

}

.aarti-box{

text-align:center;

background:#111;

color:white;

padding:40px;

border-radius:15px;

}

.aarti-box h3{

color:var(--gold);

margin-top:20px;

}
/*==============================
GALLERY
==============================*/

.gallery-section{

padding:100px 0;

}

.gallery-filter{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:50px;

flex-wrap:wrap;

}

.filter-btn{

padding:12px 28px;

border:none;

background:#eee;

border-radius:50px;

cursor:pointer;

font-weight:600;

transition:.35s;

}

.filter-btn.active,
.filter-btn:hover{

background:var(--gold);

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:22px;

cursor:pointer;

background:#fff;

box-shadow:0 15px 35px rgba(0,0,0,.08);

border:1px solid rgba(212,175,55,.15);

transition:.4s ease;

}

.gallery-item:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(212,175,55,.20);

}

.gallery-item img{

width:100%;

height:320px;

object-fit:cover;

display:block;

transition:transform .6s ease, filter .6s ease;

}

.gallery-item:hover img{

transform:scale(1.12);

filter:brightness(.9);

}

.gallery-item::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transition:.7s;

z-index:2;

pointer-events:none;

}

.gallery-item:hover::before{

left:100%;

}



/*==============================
LIGHTBOX
==============================*/

#lightbox{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.92);

justify-content:center;

align-items:center;

z-index:99999;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:15px;

}

#closeLightbox{

position:absolute;

top:30px;

right:40px;

font-size:45px;

color:white;

cursor:pointer;

}
/*==============================
VIDEO PAGE
==============================*/

.video-gallery{

padding:100px 0;

}

.video-filter{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:50px;

flex-wrap:wrap;

}

.video-btn{

padding:12px 28px;

border:none;

background:#eee;

border-radius:50px;

cursor:pointer;

font-weight:600;

transition:.35s;

}

.video-btn.active,
.video-btn:hover{

background:var(--gold);

}

.video-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

.video-item{

background:white;

padding:20px;

border-radius:18px;

box-shadow:var(--shadow);

transition:.35s;

}

.video-item:hover{

transform:translateY(-8px);

}

.video-item iframe{

width:100%;

height:250px;

border:none;

border-radius:12px;

}

.video-item h3{

margin-top:20px;

text-align:center;

}
/*==============================
DONATE PAGE
==============================*/

.donate-page{

padding:100px 0;

}

.donate-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.donate-info{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:var(--shadow);

}

.upi-box{

background:#f4f4f4;

padding:18px;

margin:25px 0;

border-radius:10px;

font-size:20px;

font-weight:600;

text-align:center;

}

.qr-box{

text-align:center;

}

.qr-box img{

width:320px;

margin:auto;

box-shadow:var(--shadow);

border-radius:20px;

}

.contact-box{

padding:80px 0;

background:#111;

color:white;

text-align:center;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:40px;

}

.contact-grid div{

background:#222;

padding:30px;

border-radius:15px;

}

.contact-grid i{

font-size:40px;

color:var(--gold);

margin-bottom:20px;

}
/*==============================
COMMITTEE PAGE
==============================*/

.committee-page{

padding:100px 0;

background:#f8f8f8;

}

.committee-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.committee-card{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.committee-card:hover{

transform:translateY(-8px);

}

.committee-card img{

width:170px;

height:170px;

border-radius:50%;

object-fit:cover;

margin:auto;

margin-bottom:20px;

border:4px solid var(--gold);

}

.committee-card h3{

margin-bottom:10px;

color:var(--gold);

}

.committee-card p{

font-weight:500;

}
/*==============================
CONTACT PAGE
==============================*/

.contact-page{

padding:100px 0;

background:#f7f7f7;

}

.contact-layout{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

}

.contact-card{

background:#fff;

padding:45px;

border-radius:24px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

border:1px solid rgba(212,175,55,.15);

transition:.35s;

position:relative;

overflow:hidden;

}

.contact-card:hover{

transform:translateY(-8px);

box-shadow:0 22px 45px rgba(212,175,55,.18);

}

.contact-item{

display:flex;

align-items:flex-start;

gap:20px;

padding:18px;

margin:18px 0;

border-radius:16px;

transition:.35s;

}

.contact-item:hover{

background:#fff8df;

}

.contact-item i{

font-size:24px;

width:60px;

height:60px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#d4af37,#f2d978);

color:#111;

border-radius:50%;

transition:.35s;

flex-shrink:0;

}

.contact-item:hover i{

transform:scale(1.12) rotate(8deg);

}

.contact-item h3{

font-size:20px;

margin-bottom:6px;

color:#222;

}

.contact-item p{

font-size:16px;

line-height:1.7;

color:#666;

}

.map-card{

overflow:hidden;

border-radius:24px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

border:1px solid rgba(212,175,55,.15);

transition:.35s;

}

.map-card:hover{

transform:translateY(-8px);

box-shadow:0 22px 45px rgba(212,175,55,.18);

}

.map-card iframe{

width:100%;

height:100%;

min-height:520px;

border:0;

}

.today-notice{

padding:80px 0;

background:#fff;

}

.notice-card{

background:white;

padding:45px;

border-radius:20px;

box-shadow:var(--shadow);

border-left:6px solid var(--gold);

}

.notice-card h2{

color:var(--gold);

margin-bottom:10px;

}

.notice-card h4{

margin-bottom:20px;

color:#555;

}

.important-box{

margin-top:25px;

padding:18px;

background:#fff7df;

border-radius:12px;

}
.gallery-year{

padding:80px 0;

background:#fafafa;

}

.gallery-year:nth-child(even){

background:#fff;

}

.gallery-year h2{

font-size:42px;

text-align:center;

margin-bottom:40px;

color:var(--gold);

position:relative;

}

.gallery-year h2::after{

content:"";

width:90px;

height:4px;

background:var(--gold);

display:block;

margin:12px auto;

border-radius:10px;

}
#lightbox{

display:none;

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.9);

z-index:9999;

justify-content:center;

align-items:center;

}

#lightbox img{

max-width:90%;

max-height:85%;

border-radius:12px;

}

#closeBtn{

position:absolute;

top:25px;

right:40px;

font-size:45px;

color:white;

cursor:pointer;

}

#prevBtn,
#nextBtn{

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:40px;

background:none;

border:none;

color:white;

cursor:pointer;

padding:15px;

}

#prevBtn{

left:20px;

}

#nextBtn{

right:20px;

}
/* ===============================
   Scroll Indicator
================================ */

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    width:32px;
    height:58px;
    border:2px solid rgba(212,175,55,.7);
    border-radius:25px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:8px;
    z-index:5;
}

.scroll-indicator span{
    width:6px;
    height:12px;
    background:#d4af37;
    border-radius:10px;
    animation:scrollDown 1.8s infinite;
}
@keyframes scrollDown{

    0%{
        opacity:1;
        transform:translateY(0);
    }

    50%{
        opacity:.4;
    }

    100%{
        opacity:0;
        transform:translateY(22px);
    }

}
/* ==========================================
   Scroll Reveal Animation
========================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.reveal-left{

    opacity:0;

    transform:translateX(-70px);

    transition:all .8s ease;

}

.reveal-left.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-right{

    opacity:0;

    transform:translateX(70px);

    transition:all .8s ease;

}

.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-scale{

    opacity:0;

    transform:scale(.9);

    transition:all .8s ease;

}

.reveal-scale.active{

    opacity:1;

    transform:scale(1);

}
/* =====================================
   PRELOADER
===================================== */

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(135deg,#ffffff,#f8f8f8);

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:opacity .7s ease,visibility .7s;

}

#preloader.hide{

opacity:0;

visibility:hidden;

pointer-events:none;

}

.loader-content{

text-align:center;

}

.loader-logo{

font-size:72px;

color:var(--gold);

animation:loaderFloat 2s ease-in-out infinite;

}

.loader-content h2{

margin-top:18px;

font-size:34px;

color:var(--gold);

}

.loader-content p{

margin:12px 0 25px;

color:#666;

font-size:18px;

}

.loader-bar{

width:260px;

height:6px;

background:#ececec;

border-radius:50px;

overflow:hidden;

margin:auto;

}

.loader-bar span{

display:block;

width:0;

height:100%;

background:linear-gradient(90deg,#d4af37,#f2d978);

animation:loadingBar 1.3s linear forwards;

}

@keyframes loaderFloat{

0%{transform:translateY(0);}

50%{transform:translateY(-10px);}

100%{transform:translateY(0);}

}

@keyframes loadingBar{

0%{width:0;}

100%{width:100%;}

}


/* ===============================
   Latest Winners
================================ */

.latest-winners{

    padding:80px 0;

}

.winner-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));

    gap:35px;

}

.winner-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.15);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s ease;

    position:relative;

}


.winner-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.8s;

    pointer-events:none;

}


.winner-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(212,175,55,.20);

}

.winner-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 24px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f2d978
    );

    color:#111;

}


.game-title{

    display:flex;

    align-items:center;

    gap:15px;

}

.game-icon{

    font-size:34px;

}

.game-title h3{

    margin:0;

    font-size:22px;

    line-height:1.3;

}


.winner-year-tag{

    padding:7px 14px;

    border-radius:30px;

    background:rgba(255,255,255,.35);

    font-weight:700;

    font-size:14px;

}
.winner-row{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 22px;

    border-bottom:1px solid #f2f2f2;

    transition:.25s;

}

.winner-row:last-child{

    border-bottom:none;

}

.winner-row:last-child{

border:none;

}


.winner-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.winner-row:hover{

    background:#fffaf0;

}

.gallery-image{

    width:100%;

    height:240px;

    object-fit:cover;

}

.winner-info{

    padding:20px;

    text-align:center;

}

.medal{

    display:inline-block;

    margin-bottom:10px;

    font-weight:700;

    color:#d97706;

}

.winner-info h3{

    margin-bottom:8px;

}

.center-btn{

    text-align:center;

    margin-top:40px;

}

.page-header{

    padding:90px 0;

    text-align:center;

    background:linear-gradient(135deg,#ff9933,#ffcc80);

    color:#fff;

}

.page-header h1{

    font-size:42px;

    margin-bottom:10px;

}

.winner-year{

    padding:80px 0;

}

.winner-year h2{

    text-align:center;

    font-size:38px;

    margin-bottom:40px;

    color:var(--primary);

}


.winner-row{

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px 20px;

    border-bottom:1px solid #eee;

}




.winner-photo{

    width:72px;
    height:72px;

    min-width:72px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid var(--gold);

    background:#fff;

    box-shadow:0 8px 20px rgba(212,175,55,.25);

}


.winner-details{

flex:1;

}

.winner-name{

    display:flex;

    flex-direction:column;

    gap:8px;

}
.medal-badge{

    display:inline-flex;

    align-items:center;

    width:max-content;

    padding:6px 12px;

    border-radius:30px;

    background:#fff6d8;

    border:1px solid rgba(212,175,55,.35);

    color:#9b6a00;

    font-size:13px;

    font-weight:700;

}

.winner-text{

    font-size:20px;

    font-weight:700;

    color:#222;

}

.age-group-card{

    margin:18px;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.18);

    background:#fffdf7;

}

.age-heading{

    padding:14px 20px;

    background:rgba(212,175,55,.10);

    color:#111;

    font-size:18px;

    font-weight:700;

}

.team-card{

    margin:18px;

    padding:20px;

    border-radius:18px;

    background:#fafafa;

    border:2px dashed rgba(212,175,55,.35);

    text-align:center;

}

.winner-row strong{

    color:var(--primary);

}

.winner-thumb{

    width:50px !important;

    height:50px !important;

    min-width:90px;

    min-height:90px;

    border-radius:90%;

    object-fit:cover;

    border:2px solid #f5a623;

    display:block;

    flex-shrink:0;

}

.latest-winners .winner-row{

    display:flex;

    align-items:center;

    gap:15px;

}



.winner-btn{

display:inline-block;

margin-top:15px;

padding:10px 18px;

border-radius:30px;

background:linear-gradient(135deg,#ff9933,#ffb347);

color:#fff;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.winner-btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 20px rgba(255,153,51,.35);

}

.gallery-event{

    margin-bottom:60px;

}

.gallery-event h3{

    margin-bottom:20px;

    padding-left:10px;

    border-left:5px solid #ff9933;

    font-size:30px;

    color:#333;

}



.winner-footer{

    padding:24px;

    border-top:1px solid #eee;

    text-align:center;

}

.gallery-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:13px 24px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f2d978
    );

    color:#111;

    font-weight:700;

    transition:.35s;

}

.gallery-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(212,175,55,.35);

}

.gallery-btn.disabled{

    background:#ececec;

    color:#777;

    cursor:not-allowed;

    box-shadow:none;

}

.winner-filter-section{

    padding:30px 0;

}

.winner-filters{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    flex-wrap:wrap;

}

.winner-filters input,
.winner-filters select{

    min-width:240px;

    padding:15px 20px;

    border:2px solid rgba(212,175,55,.18);

    border-radius:14px;

    background:#fff;

    font-size:16px;

    font-weight:500;

    transition:.35s ease;

    outline:none;

}



.winner-filters input:focus,
.winner-filters select:focus{

    border-color:var(--gold);

    box-shadow:0 0 0 5px rgba(212,175,55,.15);

}


.winner-filter-section{

    position:sticky;
    top:82px;
    z-index:200;

    padding:28px 0;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(212,175,55,.15);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.winner-filters input{

    flex:1;
    max-width:420px;

}

.winner-filters input::placeholder{

    color:#888;

}

.winner-filters select{

    cursor:pointer;

}




/*==================================================
    NO RESULTS
==================================================*/

.no-results{

    display:none;

    text-align:center;

    padding:80px 20px;

    background:#fff;

    border-radius:20px;

    border:2px dashed rgba(212,175,55,.35);

    margin-top:40px;

}

.no-results i{

    font-size:60px;

    color:var(--gold);

    margin-bottom:20px;

}

.no-results h3{

    color:#222;

    margin-bottom:10px;

}

.no-results p{

    color:#666;

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:992px){

    .winner-grid{

        grid-template-columns:1fr;

    }

    .winner-filters{

        flex-direction:column;

        align-items:stretch;

    }

    .winner-filters input,
    .winner-filters select{

        width:100%;

        max-width:none;

        min-width:unset;

    }

}

@media(max-width:768px){

    .winner-header{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }

    .game-title{

        justify-content:center;

    }

    .winner-row{

        flex-direction:column;

        text-align:center;

    }

    .winner-photo{

        width:90px;

        height:90px;

    }

    .winner-name{

        align-items:center;

    }

    .gallery-btn{

        width:100%;

    }

}

@media(max-width:480px){

    .winner-year h2{

        font-size:30px;

    }

    .game-title h3{

        font-size:18px;

    }

    .winner-text{

        font-size:18px;

    }

    .winner-filter-section{

        top:70px;

    }

}

/*==================================================
    SMALL ANIMATIONS
==================================================*/

.winner-card,
.age-group-card,
.team-card{

    animation:fadeWinner .45s ease;

}

@keyframes fadeWinner{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}




/* =========================================================
   HALL OF FAME
========================================================= */

.hof-page {
    padding: 120px 0 80px;

    background:
        radial-gradient(
            circle at top,
            rgba(235, 196, 65, 0.14),
            transparent 38%
        ),
        #f8f8f8;

    min-height: 70vh;
}

.hof-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.hof-header {
    text-align: center;
    margin-bottom: 45px;
}

.hof-trophy {
    font-size: 75px;
    line-height: 1;
    margin-bottom: 15px;
}

.hof-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 58px;

    color: #b88900;

    margin: 0 0 12px;

    letter-spacing: 1px;
}

.hof-header p {
    font-size: 19px;

    color: #666;

    margin: 0 0 18px;
}

.hof-year {
    display: inline-block;

    padding: 12px 28px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #d9ae27,
            #f5d86b
        );

    color: #171717;

    font-weight: 800;

    font-size: 17px;

    box-shadow:
        0 8px 20px rgba(201,160,35,0.20);
}


/* =========================================================
   CHAMPION
========================================================= */

.hof-champion {
    position: relative;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fff9df,
            #ffffff 55%,
            #fff4c2
        );

    border: 2px solid #e2bc3c;

    border-radius: 30px;

    padding: 55px 30px;

    margin-bottom: 45px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.10);

    overflow: hidden;
}


/* Trophy watermark */

.hof-champion::before {
    content: "🏆";

    position: absolute;

    right: -20px;
    top: -45px;

    font-size: 180px;

    opacity: 0.05;

    pointer-events: none;
}

.hof-champion-label {
    display: inline-block;

    padding: 13px 28px;

    background: #171717;

    color: #f5d86b;

    border-radius: 50px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

/* =========================================================
   CHAMPION PHOTO
========================================================= */

.hof-champion-photo {
    display: block;

    width: 150px;
    height: 150px;

    margin: 25px auto 20px;

    border-radius: 50%;

    object-fit: cover;

    object-position: center;

    border: 5px solid #d4af37;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(212,175,55,0.25);
}


/* Default trophy when photo is not available */

.hof-champion-default {
    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 65px;

    background:
        linear-gradient(
            135deg,
            #f4c542,
            #ffe88a
        );
}



.hof-champion h2 {
    font-family: 'Cinzel', serif;

    font-size: 48px;

    color: #171717;

    margin: 0 0 12px;
}

.hof-wins {
    font-size: 30px;

    font-weight: 800;

    color: #b88900;
}

.hof-prize {
    display: inline-block;

    margin-top: 20px;

    padding: 13px 28px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #d7a91f,
            #f5d86b
        );

    color: #171717;

    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(201,160,35,0.25);
}


/* =========================================================
   TIE / NO CHAMPION
========================================================= */

.hof-tie {
    text-align: center;

    padding: 45px 25px;

    margin-bottom: 45px;

    background:
        linear-gradient(
            135deg,
            #fff1d6,
            #ffffff
        );

    border: 2px solid #e4a12a;

    border-radius: 25px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

.hof-tie h2 {
    font-family: 'Cinzel', serif;

    color: #b35d00;

    margin: 0 0 12px;
}

.hof-tie p {
    color: #555;

    font-size: 17px;

    margin: 7px 0;
}

.hof-no-prize {
    display: inline-block;

    margin-top: 20px;

    padding: 12px 25px;

    background: #222;

    color: white;

    border-radius: 40px;

    font-weight: 800;
}


/* =========================================================
   SEARCH
========================================================= */

.hof-search {
    margin-bottom: 35px;
}

.hof-search input {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 17px 22px;

    border-radius: 16px;

    border: 1px solid #ead48b;

    background: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-size: 16px;

    outline: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

    transition: 0.25s ease;
}

.hof-search input:focus {
    border-color: #d6ad2e;

    box-shadow:
        0 0 0 3px rgba(214,173,46,0.12);
}


/* =========================================================
   SECTION TITLE
========================================================= */

.hof-section-title {
    text-align: center;

    margin: 45px 0 35px;
}

.hof-section-title h2 {
    font-family: 'Cinzel', serif;

    font-size: 38px;

    color: #222;

    margin: 0 0 8px;
}

.hof-section-title p {
    color: #777;

    font-size: 17px;

    margin: 0;
}


/* =========================================================
   LEADERBOARD
========================================================= */

.hof-leaderboard {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.hof-player {
    display: grid;

    grid-template-columns:
        75px
        1fr
        110px;

    align-items: center;

    gap: 20px;

    padding: 22px 25px;

    background: #ffffff;

    border-radius: 22px;

    border: 1px solid #eee;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.hof-player:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.09);
}


/* =========================================================
   RANK
========================================================= */

.hof-rank {
    width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f5f1e2;

    font-size: 22px;

    font-weight: 900;

    color: #8f6c00;
}


/* Gold */

.hof-player:nth-child(1) .hof-rank {
    background:
        linear-gradient(
            135deg,
            #f4c542,
            #ffe88a
        );
}


/* Silver */

.hof-player:nth-child(2) .hof-rank {
    background:
        linear-gradient(
            135deg,
            #d5d5d5,
            #f4f4f4
        );
}


/* Bronze */

.hof-player:nth-child(3) .hof-rank {
    background:
        linear-gradient(
            135deg,
            #cd8b52,
            #f0c29b
        );
}


/* =========================================================
   PLAYER PHOTO
========================================================= */

.hof-player-photo {
    width: 72px;
    height: 72px;

    min-width: 72px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #d4af37;

    background: #fff;

    box-shadow:
        0 8px 22px rgba(212,175,55,.22);
}


/* =========================================================
   PLAYER INFO
========================================================= */

.hof-player-info {
    display: flex;

    align-items: center;

    gap: 18px;
}

.hof-player-info h3 {
    font-family: 'Cinzel', serif;

    font-size: 23px;

    color: #222;

    margin: 0;
}

.hof-player-info p {
    margin: 5px 0 0;

    color: #777;

    font-size: 14px;
}


/* =========================================================
   STATUS
========================================================= */

.hof-status {
    display: inline-block;

    margin-top: 7px;

    padding: 5px 12px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 800;
}

.hof-status.eligible {
    background: #e4f6e8;

    color: #21863b;
}

.hof-status.ineligible {
    background: #f1f1f1;

    color: #777;
}


/* =========================================================
   WINS
========================================================= */

.hof-player-wins {
    text-align: center;
}

.hof-player-wins strong {
    display: block;

    font-size: 34px;

    color: #bd900f;

    font-weight: 900;
}

.hof-player-wins span {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   GAP
========================================================= */

.hof-gap {
    grid-column: 2 / -1;

    color: #555;

    font-weight: 700;

    padding-top: 3px;
}

.hof-gap.champion {
    color: #b88900;
}

.hof-gap.ineligible {
    color: #999;
}


/* =========================================================
   GAME HISTORY
========================================================= */

.hof-games {
    grid-column: 2 / -1;

    margin-top: 15px;

    padding-top: 18px;

    border-top: 1px solid #eee;
}

.hof-games-title {
    font-weight: 900;

    color: #222;

    margin-bottom: 12px;
}

.hof-game-item {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

    border-bottom: 1px solid #f0f0f0;

    font-size: 14px;
}

.hof-game-item:last-child {
    border-bottom: none;
}

.hof-game-position {
    font-weight: 800;

    color: #b88900;
}


/* =========================================================
   EMPTY
========================================================= */

.hof-empty {
    text-align: center;

    padding: 70px 20px;

    background: #ffffff;

    border-radius: 25px;

    color: #777;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
}

.hof-empty h2 {
    margin: 15px 0 8px;

    color: #222;
}


/* =========================================================
   PRIZE POPUP
========================================================= */

.hof-popup-overlay {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.72);

    backdrop-filter: blur(8px);

    z-index: 99999;
}

.hof-popup-overlay.active {
    display: flex;
}

.hof-popup {
    width: min(520px,100%);

    max-height: 90vh;

    overflow-y: auto;

    position: relative;

    padding: 40px 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fffdf5,
            #fff7d8
        );

    border-radius: 28px;

    border: 2px solid #d4af37;

    box-shadow:
        0 25px 70px rgba(0,0,0,.3);
}

.hof-popup-close {
    position: absolute;

    top: 12px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: #171717;

    color: #fff;

    font-size: 26px;

    cursor: pointer;
}

.hof-popup-trophy {
    font-size: 60px;
}

.hof-popup-title {
    margin: 12px 0 20px;

    color: #b88900;

    font-weight: 900;

    letter-spacing: 1px;
}

.hof-popup-photo {
    width: 130px;
    height: 130px;

    margin: 15px auto 20px;

    border-radius: 50%;

    object-fit: cover;

    border: 5px solid #d4af37;

    box-shadow:
        0 10px 30px rgba(212,175,55,.25);
}

.hof-popup-default {
    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 65px;
}

.hof-popup h2 {
    margin-bottom: 10px;

    color: #171717;
}

.hof-popup-wins {
    font-size: 25px;

    font-weight: 800;

    color: #b88900;
}

.hof-popup-message {
    margin-top: 20px;

    line-height: 1.8;

    color: #555;
}

.hof-prize-details {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

    padding: 18px;

    text-align: left;

    border-radius: 16px;

    background: #fff1c7;

    border: 1px solid #ead48b;
}

.hof-prize-detail-icon {
    font-size: 32px;
}


/* =========================================================
   PREVIOUS CHAMPIONS
========================================================= */

.hof-previous-section {
    margin-top: 70px;
}

.hof-previous-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px,1fr)
        );

    gap: 25px;
}

.hof-previous-card {
    background: #fff;

    padding: 25px;

    border-radius: 20px;

    text-align: center;

    border: 1px solid #ead48b;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.hof-previous-card img {
    width: 90px;
    height: 90px;

    margin: 0 auto 15px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #d4af37;
}

.hof-previous-card h3 {
    font-size: 20px;

    margin-bottom: 6px;

    color: #222;
}

.hof-previous-card p {
    color: #777;
}


/* =========================================================
   HALL OF FAME RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .hof-page {
        padding-top: 105px;
    }

    .hof-header h1 {
        font-size: 45px;
    }

    .hof-player {
        grid-template-columns:
            62px
            1fr
            90px;
    }

    .hof-player-info h3 {
        font-size: 20px;
    }
}


@media (max-width: 600px) {

    .hof-page {
        padding:
            105px
            14px
            60px;
    }

    .hof-container {
        width: 100%;
    }

    .hof-trophy {
        font-size: 60px;
    }

    .hof-header h1 {
        font-size: 38px;
    }

    .hof-header p {
        font-size: 16px;
    }

    .hof-year {
        font-size: 15px;

        padding:
            10px
            22px;
    }

    .hof-champion {
        padding: 40px 18px;
    }

    .hof-champion h2 {
        font-size: 35px;
    }

    .hof-wins {
        font-size: 26px;
    }

    .hof-section-title h2 {
        font-size: 29px;
    }

    .hof-player {
        grid-template-columns:
            55px
            1fr;

        gap: 14px;

        padding: 18px;
    }

    .hof-player-photo {
        width: 60px;
        height: 60px;

        min-width: 60px;
    }

    .hof-player-wins {
        grid-column: 2;

        text-align: left;
    }

    .hof-player-wins strong {
        font-size: 28px;
    }

    .hof-gap {
        grid-column: 2;
    }

    .hof-games {
        grid-column: 2;
    }

    .hof-popup {
        padding:
            35px
            20px;
    }

    .hof-popup-photo {
        width: 110px;
        height: 110px;
    }
}


@media (max-width: 400px) {

    .hof-header h1 {
        font-size: 32px;
    }

    .hof-champion h2 {
        font-size: 30px;
    }

    .hof-player-info h3 {
        font-size: 18px;
    }

    .hof-player-wins strong {
        font-size: 25px;
    }
}


/* =========================================================
   HALL OF FAME YEAR SELECTOR
========================================================= */

.hof-year-selector {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 18px;
}

.hof-year-selector label {
    font-size: 14px;

    font-weight: 700;

    color: #777;
}

.hof-year-selector select {
    padding: 9px 35px 9px 15px;

    border-radius: 25px;

    border: 1px solid #d9ae27;

    background: #fff;

    color: #222;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 700;

    outline: none;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(201,160,35,.12);
}

.hof-year-selector select:focus {
    border-color: #b88900;

    box-shadow:
        0 0 0 3px rgba(201,160,35,.12);
}


@media (max-width: 600px) {

    .hof-year-selector {
        flex-direction: column;

        gap: 7px;
    }

    .hof-year-selector select {
        width: 160px;

        text-align: center;
    }
}


/*==================================================
    TOP CHAMPIONS
==================================================*/

.top-champions{

    padding:50px 0;

}

.top-champions h2{

    text-align:center;

    margin-bottom:35px;

    color:#222;

}

.champion-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.champion-card{

    background:#fff;

    border-radius:22px;

    padding:28px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

    border:2px solid rgba(212,175,55,.20);

}

.champion-card:hover{

    transform:translateY(-8px);

}

.champion-rank{

    font-size:55px;

    margin-bottom:15px;

}

.champion-card h3{

    margin-bottom:8px;

}

.champion-card p{

    color:#666;

    margin-bottom:15px;

}

.champion-medals{

    font-weight:600;

    font-size:17px;

}


.error-page{

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 20px;

}

.error-card{

    max-width:600px;

    text-align:center;

    background:#fff;

    padding:40px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.error-card h1{

    font-size:90px;

    color:#d35400;

    margin-bottom:10px;

}

.error-card h2{

    margin-bottom:15px;

}

.error-card p{

    margin-bottom:25px;

    line-height:1.8;

}

/* ===========================
   ADMIN DASHBOARD
=========================== */

.admin-dashboard{

    padding:60px 20px;

}

.admin-dashboard h1{

    text-align:center;
    margin-bottom:10px;

}

.admin-dashboard p{

    text-align:center;
    margin-bottom:40px;

}

.admin-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;

}

.admin-card{

    display:block;
    text-decoration:none;
    color:#222;

    background:#fff;

    border-radius:16px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.admin-card:hover{

    transform:translateY(-5px);

}

.admin-card h3{

    margin-bottom:10px;

}

.logout-card{

    background:#ffe8e8;

}

.delete-btn{

    background:#d32f2f;

    color:#fff;

    margin-left:10px;

}

.delete-btn:hover{

    background:#b71c1c;

}


/*==================================================
    ADMIN LOGIN
==================================================*/

.admin-login{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:140px 20px 80px;
    background:#f8f8f8;
}

.login-card{
    width:100%;
    max-width:520px;
    background:#fff;
    padding:45px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.login-logo{
    font-size:70px;
    margin-bottom:20px;
}

.login-card h1{
    color:#d4af37;
    margin-bottom:10px;
}

.form-group{
    margin:20px 0;
    text-align:left;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input{
    width:100%;
    padding:14px;
    border:2px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.form-group input:focus{
    outline:none;
    border-color:#d4af37;
}

.admin-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#d4af37;
    color:#111;
    font-weight:700;
    cursor:pointer;
    margin-top:20px;
}

.admin-btn:hover{
    background:#c59b22;
}

/* =========================
   HOME GALLERY SLIDER
========================= */

.gallery-slider {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-size: 24px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 5;
}

.gallery-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.6);

    cursor: pointer;

    transition: 0.3s ease;
}

.gallery-dot.active {
    transform: scale(1.35);
    background: #fff;
}


/* MOBILE */

@media (max-width: 768px) {

    .gallery-slider {
        height: 280px;
    }

    .gallery-prev,
    .gallery-next {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

}




/* =========================
   ADMIN UPLOAD PREVIEW
========================= */

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.upload-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
}

.upload-preview-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.upload-preview-item span {
    display: block;
    padding: 7px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* ==========================================
   HOME FESTIVAL GLIMPSE 2025
========================================== */

.home-video-card {
    width: 100%;
    max-width: 850px;
    margin: 30px auto 0;

    border-radius: 18px;
    overflow: hidden;

    background: #111;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}


.youtube-home-thumbnail {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    cursor: pointer;

    background: #111;
}


.youtube-home-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}


.youtube-home-thumbnail:hover img {
    transform: scale(1.03);
}


.youtube-home-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 70px;
    height: 50px;

    border: none;
    border-radius: 12px;

    background: #ff0000;

    color: white;

    font-size: 28px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}


.youtube-home-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* YouTube player after clicking */

.home-video-card iframe {
    width: 100%;

    aspect-ratio: 16 / 9;

    height: auto;

    display: block;

    border: 0;
}


/* No video */

.home-video-empty {
    max-width: 850px;

    margin: 30px auto;

    padding: 40px 20px;

    text-align: center;

    border-radius: 18px;

    background: #f5f5f5;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .home-video-card {
        max-width: 100%;

        margin-top: 20px;

        border-radius: 12px;
    }


    .youtube-home-play {
        width: 60px;
        height: 44px;

        font-size: 23px;

        border-radius: 10px;
    }

}

/* =========================================================
   WINNERS MANAGER
========================================================= */

.winners-manager {
    padding: 50px 0 80px;
}


/* =========================================================
   HEADER
========================================================= */

.wm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.wm-title {
    font-size: 42px;
    font-weight: 800;
    color: #151515;
}

.wm-header p {
    margin: 8px 0 0;
    color: #777;
    font-size: 16px;
}

.wm-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 15px 23px;

    background: linear-gradient(
        135deg,
        #d9ae2f,
        #f4d66c
    );

    color: #111;
    text-decoration: none;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(211, 170, 40, .25);

    transition: .25s ease;
}

.wm-add-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(211, 170, 40, .35);
}


/* =========================================================
   STATISTICS
========================================================= */

.wm-stats {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 30px;
}

.wm-stat-card {
    display: flex;
    align-items: center;
    gap: 18px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 18px;

    padding: 22px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);
}

.wm-stat-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff7dc;

    border-radius: 14px;

    font-size: 27px;
}

.wm-stat-label {
    display: block;

    color: #888;

    font-size: 14px;

    margin-bottom: 3px;
}

.wm-stat-card strong {
    display: block;

    font-size: 27px;

    color: #151515;
}


/* =========================================================
   FILTER
========================================================= */

.wm-filter-box {
    display: grid;

    grid-template-columns:
        2fr 1fr 1.4fr 1fr;

    gap: 14px;

    background: #fff;

    border: 1px solid #eee;

    padding: 18px;

    border-radius: 18px;

    margin-bottom: 35px;

    box-shadow:
        0 7px 25px rgba(0,0,0,.05);
}

.wm-search {
    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    padding: 0 15px;

    background: #fafafa;
}

.wm-search span {
    font-size: 19px;
}

.wm-search input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding: 14px 0;

    font-size: 15px;
}

.wm-filter-box select {
    border: 1px solid #e5e5e5;

    background: #fafafa;

    border-radius: 12px;

    padding: 13px 14px;

    font-size: 15px;

    outline: none;

    cursor: pointer;
}


/* =========================================================
   GRID
========================================================= */

.wm-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================================
   CARD
========================================================= */

.wm-card {
    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #eee;

    box-shadow:
        0 10px 30px rgba(0,0,0,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.wm-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 35px rgba(0,0,0,.11);
}


/* =========================================================
   CARD HEADER
========================================================= */

.wm-card-header {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #f8e18a,
            #e0b735
        );
}

.wm-game-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.5);

    border-radius: 14px;

    font-size: 26px;

    flex-shrink: 0;
}

.wm-game-heading {
    flex: 1;
    min-width: 0;
}

.wm-game-heading h3 {
    margin: 0;

    font-size: 21px;

    color: #171717;
}

.wm-game-heading span {
    display: inline-block;

    margin-top: 5px;

    font-size: 13px;

    font-weight: 600;

    color: #765900;
}

.wm-type-badge {
    background: rgba(255,255,255,.7);

    border-radius: 30px;

    padding: 8px 11px;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   CARD BODY
========================================================= */

.wm-card-body {
    padding: 18px 20px;

    min-height: 150px;
}


/* =========================================================
   PERSON
========================================================= */

.wm-winner-preview {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.wm-person {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 12px;

    border-bottom: 1px solid #eee;
}

.wm-person:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.wm-person-photo {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5;

    border: 2px solid #d7af31;
}

.wm-person-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.wm-person-photo span {
    font-size: 22px;
}

.wm-person-info {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.wm-person-info strong {
    font-size: 16px;
}

.wm-person-info span {
    font-size: 13px;

    color: #a27500;

    font-weight: 600;
}

.wm-person-info small {
    color: #888;

    font-size: 12px;
}


/* =========================================================
   AGE GROUP
========================================================= */

.wm-age-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.wm-age-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 12px;

    background: #fafafa;

    border-radius: 12px;
}

.wm-age-label {
    font-size: 13px;

    font-weight: 700;

    color: #8b6900;

    background: #fff2bd;

    padding: 7px 10px;

    border-radius: 8px;

    white-space: nowrap;
}

.wm-age-person {
    display: flex;

    align-items: center;

    gap: 10px;

    flex: 1;

    min-width: 0;
}

.wm-age-person img,
.wm-default-photo {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;
}

.wm-default-photo {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #eee;

    font-size: 18px;
}

.wm-age-person strong {
    display: block;

    font-size: 15px;
}

.wm-age-person small {
    display: block;

    color: #888;

    margin-top: 2px;
}


/* =========================================================
   TEAM
========================================================= */

.wm-team-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.wm-team-row {
    padding: 13px;

    background: #fafafa;

    border-radius: 10px;

    display: flex;

    gap: 10px;

    align-items: center;
}


/* =========================================================
   MORE
========================================================= */

.wm-more {
    margin-top: 12px;

    font-size: 13px;

    color: #888;

    text-align: center;
}


/* =========================================================
   FOOTER
========================================================= */

.wm-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 15px 20px;

    border-top: 1px solid #eee;

    background: #fcfcfc;
}

.wm-record-count {
    font-size: 13px;

    color: #777;

    font-weight: 600;
}

.wm-actions {
    display: flex;

    gap: 8px;
}

.wm-edit-btn,
.wm-delete-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 9px 13px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .2s ease;
}

.wm-edit-btn {
    background: #fff2bd;

    color: #765900;
}

.wm-delete-btn {
    background: #ffe8e8;

    color: #b32626;
}

.wm-edit-btn:hover,
.wm-delete-btn:hover {
    transform: translateY(-1px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.wm-no-results {
    text-align: center;

    padding: 70px 20px;

    background: #fff;

    border-radius: 18px;

    border: 1px solid #eee;
}

.wm-no-results div {
    font-size: 40px;
}

.wm-no-results h3 {
    margin: 10px 0 5px;

    font-size: 22px;
}

.wm-no-results p {
    margin: 0;

    color: #888;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .wm-grid {
        grid-template-columns: 1fr;
    }

    .wm-filter-box {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .winners-manager {
        padding: 30px 0 60px;
    }

    .wm-header {
        flex-direction: column;

        align-items: stretch;
    }

    .wm-title {
        font-size: 30px;
    }

    .wm-add-btn {
        width: 100%;
    }

    .wm-stats {
        grid-template-columns: 1fr;
    }

    .wm-filter-box {
        grid-template-columns: 1fr;

        padding: 13px;
    }

    .wm-card-header {
        padding: 15px;

        gap: 10px;
    }

    .wm-game-icon {
        width: 44px;
        height: 44px;

        font-size: 22px;
    }

    .wm-game-heading h3 {
        font-size: 17px;
    }

    .wm-type-badge {
        font-size: 10px;

        padding: 6px 8px;
    }

    .wm-card-body {
        padding: 15px;
    }

    .wm-card-footer {
        flex-direction: column;

        align-items: stretch;
    }

    .wm-actions {
        width: 100%;
    }

    .wm-edit-btn,
    .wm-delete-btn {
        flex: 1;
    }

    .wm-age-row {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   PRIZE POPUP
========================================================= */

.hof-prize {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.hof-popup-overlay {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.70);

    backdrop-filter: blur(7px);
}

.hof-popup-overlay.active {
    display: flex;
}

.hof-popup {

    position: relative;

    width: min(500px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 40px 30px;

    text-align: center;

    border-radius: 30px;

    border: 2px solid #e2bc3c;

    background:
        linear-gradient(
            145deg,
            #fff9df,
            #ffffff 55%,
            #fff4c2
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);

    animation:
        hofPopupIn .25s ease;
}

@keyframes hofPopupIn {

    from {
        opacity: 0;
        transform: scale(.90) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

}

.hof-popup-close {

    position: absolute;

    top: 12px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: #171717;

    color: #f5d86b;

    font-size: 27px;

    cursor: pointer;

    line-height: 1;
}

.hof-popup-trophy {
    font-size: 55px;
    margin-bottom: 5px;
}

.hof-popup-title {

    display: inline-block;

    padding: 7px 18px;

    border-radius: 25px;

    background: #171717;

    color: #f5d86b;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;

}

.hof-popup-photo {

    display: block;

    width: 135px;
    height: 135px;

    margin: 22px auto 15px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #d9ae27;

    box-shadow:
        0 10px 30px rgba(184,137,0,.25);
}

.hof-popup-default {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 135px;
    height: 135px;

    margin: 22px auto 15px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f5d86b,
            #d7a91f
        );

    font-size: 55px;
}

.hof-popup h2 {

    margin: 5px 0;

    font-family: Georgia, serif;

    font-size: 34px;

    color: #171717;
}

.hof-popup-wins {

    margin-top: 7px;

    font-size: 21px;

    font-weight: 900;

    color: #b88900;
}

.hof-popup-message {

    margin-top: 22px;

    padding: 18px;

    border-radius: 18px;

    background: rgba(255,255,255,.75);

    color: #555;

    line-height: 1.6;

    font-size: 15px;
}

.hof-popup-note {

    margin-top: 20px;

    display: inline-block;

    padding: 9px 18px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #d7a91f,
            #f5d86b
        );

    color: #171717;

    font-weight: 900;
}


/* Mobile */

@media (max-width: 600px) {

    .hof-popup {
        padding: 35px 20px;
        border-radius: 24px;
    }

    .hof-popup-photo,
    .hof-popup-default {

        width: 110px;
        height: 110px;

    }

    .hof-popup h2 {
        font-size: 28px;
    }

}


.hof-prize-details {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    padding: 16px;

    text-align: left;

    border-radius: 18px;

    background: rgba(255,255,255,.8);

    border: 1px solid #ead48b;
}

.hof-prize-detail-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d7a91f,
            #f5d86b
        );

    font-size: 25px;
}

.hof-prize-details strong {
    color: #b88900;
    font-size: 16px;
}

.hof-prize-details p {

    margin: 4px 0 0;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}



/* =========================================================
   HALL OF FAME — PREVIOUS CHAMPIONS
========================================================= */

.hof-previous-section {
    margin-top: 60px;
    padding-top: 45px;
    border-top: 2px solid #ead48b;
}

.hof-previous-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hof-previous-card {
    position: relative;
    overflow: hidden;
    text-align: center;

    padding: 30px 22px;

    border-radius: 24px;

    background: linear-gradient(
        145deg,
        #fffdf4,
        #ffffff
    );

    border: 1px solid #ead48b;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hof-previous-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.11);
}


/* YEAR */

.hof-previous-year {
    display: inline-block;

    padding: 7px 18px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #d9ae27,
        #f5d86b
    );

    color: #171717;

    font-size: 13px;
    font-weight: 900;

    margin-bottom: 20px;
}


/* PHOTO */

.hof-previous-photo {
    width: 105px;
    height: 105px;

    object-fit: cover;

    display: block;

    margin: 0 auto 18px;

    border-radius: 50%;

    border: 4px solid #d9ae27;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.12);
}


/* DEFAULT PHOTO */

.hof-previous-default {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff8dc;

    font-size: 48px;
}


/* NAME */

.hof-previous-name {
    font-family: Georgia, serif;

    font-size: 25px;
    font-weight: 900;

    color: #222;
}


/* WINS */

.hof-previous-wins {
    margin-top: 8px;

    font-size: 17px;
    font-weight: 800;

    color: #b88900;
}


/* CHAMPION LABEL */

.hof-previous-label {
    display: inline-block;

    margin-top: 15px;

    padding: 7px 14px;

    border-radius: 20px;

    background: #171717;

    color: #f5d86b;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.7px;
}


/* =========================================================
   COMMITTEE ADMIN TOOLBAR FIX
========================================================= */

.committee-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    padding: 10px 0;
}

.committee-year-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.committee-year-box label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.committee-year-box select {
    display: block;
    width: 180px;
    min-height: 44px;
    padding: 8px 38px 8px 14px;

    border: 2px solid #dcae20;
    border-radius: 10px;

    background: #fff;
    color: #222;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    outline: none;
}

.committee-year-box select:focus {
    border-color: #b88900;
    box-shadow: 0 0 0 3px rgba(220, 174, 32, 0.15);
}


/* =========================================================
   ADD BUTTON
========================================================= */

.committee-toolbar > .admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .committee-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .committee-year-box {
        width: 100%;
    }

    .committee-year-box select {
        width: 100%;
    }

    .committee-toolbar > .admin-btn {
        width: 100%;
    }

}


/* =========================================================
   COMMITTEE ADMIN MEMBER CARD FIX
========================================================= */

.committee-admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}


.committee-member-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 30px;

    padding: 28px;

    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   PHOTO
========================================================= */

.committee-member-photo {
    width: 180px;
    height: 180px;

    overflow: hidden;

    border-radius: 12px;

    background: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;
}


.committee-member-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.committee-no-photo {
    font-size: 55px;
    opacity: 0.6;
}


/* =========================================================
   DETAILS
========================================================= */

.committee-member-info {
    min-width: 0;
}


.committee-member-info h3 {
    margin: 0 0 8px;

    font-family: "Cinzel", serif;

    font-size: 25px;

    color: #111;
}


.committee-member-info p {
    margin: 0 0 10px;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    color: #555;
}


.committee-member-info small {
    color: #777;

    font-family: "Poppins", sans-serif;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.committee-member-actions {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 12px;

    width: 120px;

    flex-shrink: 0;
}


.committee-member-actions form {
    width: 100%;
    margin: 0;
}


.committee-member-actions .admin-btn {
    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    white-space: nowrap;
}


.committee-member-actions .edit-btn {
    background: #dcae20;
    color: #111;
}


.committee-member-actions .delete-btn {
    background: #c99718;
    color: #111;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .committee-member-card {

        grid-template-columns: 1fr;

        text-align: center;

        justify-items: center;

    }


    .committee-member-photo {

        width: 150px;
        height: 150px;

    }


    .committee-member-actions {

        width: 100%;

        max-width: 280px;

        flex-direction: row;

    }


    .committee-member-actions form,
    .committee-member-actions .admin-btn {

        width: 100%;

    }

}


/* =========================================================
   HOME PAGE - COMMITTEE PREVIEW
   Circular Member Photos
========================================================= */

.committee-preview .committee-grid .member {
    text-align: center;
}

.committee-preview .committee-grid .member img {
    width: 150px;
    height: 150px;

    object-fit: cover;

    border-radius: 50%;

    display: block;
    margin: 0 auto 15px;

    border: 4px solid #d9ad24;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Member name */

.committee-preview .committee-grid .member h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}


/* Member post */

.committee-preview .committee-grid .member p {
    margin: 0;
}


/* Mobile */

@media (max-width: 768px) {

    .committee-preview .committee-grid .member img {
        width: 120px;
        height: 120px;
    }

}


/* =========================================================
   SCHEDULE ADMIN - FIXED LAYOUT
========================================================= */

.schedule-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.schedule-section-header h2 {
    margin: 0;
}

.schedule-section-header .admin-btn {
    flex-shrink: 0;
}


/* =========================================================
   PROGRAM / GAME ITEM
========================================================= */

.schedule-admin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 20px 22px;
    margin-bottom: 16px;

    border-radius: 14px;
}


/* LEFT CONTENT */

.schedule-admin-item > div:first-child {
    flex: 1;
    min-width: 0;
}

.schedule-admin-item strong {
    display: block;
    margin-bottom: 6px;
}

.schedule-admin-item p {
    margin: 0;
}


/* RIGHT ACTIONS */

.schedule-admin-item > div:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    flex-shrink: 0;
}


/* DELETE FORM */

.schedule-admin-item > div:last-child form {
    display: inline-flex !important;
    margin: 0;
}


/* BUTTONS */

.schedule-admin-item .admin-btn {
    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .schedule-section-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .schedule-admin-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .schedule-admin-item > div:last-child {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

}



/* =========================================================
   GAME RULES
========================================================= */

.game-rules {
    width: 100%;
    margin-top: 12px;
}


/* VIEW RULES BUTTON */

.game-rules summary {

    cursor: pointer;

    display: inline-flex;
    align-items: center;

    max-width: 100%;

    padding: 8px 12px;

    border-radius: 8px;

    font-weight: 600;

    user-select: none;

}


/* RULES CONTENT */

.game-rules-content {

    width: 100%;

    margin-top: 12px;

    padding: 14px;

    box-sizing: border-box;

    border-radius: 10px;

    overflow: hidden;

}


/* NUMBERED LIST */

.game-rules-list {

    margin: 0;

    padding-left: 24px;

    width: 100%;

    box-sizing: border-box;

}


/* EACH RULE */

.game-rules-list li {

    margin-bottom: 10px;

    padding-left: 5px;

    line-height: 1.6;

    white-space: normal;

    overflow-wrap: anywhere;

    word-break: normal;

}


/* REMOVE LAST ITEM EXTRA SPACE */

.game-rules-list li:last-child {

    margin-bottom: 0;

}


/* RULE TEXT */

.game-rules-list li span {

    display: inline;

    white-space: normal;

    overflow-wrap: anywhere;

}


/* GAME DATE */

.game-date {

    display: block;

    margin-bottom: 6px;

}


/* GAME NAME */

.game-name {

    white-space: normal;

    overflow-wrap: anywhere;

    word-break: normal;

    line-height: 1.5;

}


/* MOBILE */

@media (max-width: 600px) {

    .game-rules-content {

        padding: 12px;

    }

    .game-rules-list {

        padding-left: 22px;

    }

    .game-rules-list li {

        line-height: 1.55;

        margin-bottom: 9px;

    }

}

