*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
    scroll-behavior:smooth;
}

:root{
    --primary: #f5c542;
    --danger: #f54242;
    --dark: #0f0f0f;
    --light: #ffffff;
    --glow: #f5c542;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(24c5, 197, 66, 0.3);
}

/* SMALL HEADER STYLES */
.small-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 20px rgba(245, 197, 66, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-logo i {
    font-size: 22px;
}

.header-logo:hover {
    color: #fff;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

.header-nav a:hover {
    color: var(--primary);
    background: rgba(245, 197, 66, 0.1);
}

.header-cta {
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    color: #000 !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.5);
}

/* Hamburger Menu */
.headerhamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.headerhamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger Active State - Animate to X */
.headerhamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.headerhamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.headerhamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .small-header {
        padding: 10px 20px;
    }
    
    .header-logo {
        font-size: 16px;
    }
    
    .header-logo i {
        font-size: 18px;
    }
    
    .headerhamburger {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 55px;
        right: 0;
        left: auto;
        width: 200px;
        max-width: 70%;
        height: auto;
        max-height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(245, 197, 66, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        padding: 20px 15px;
        gap: 10px;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        border-radius: 0 0 0 15px;
    }
    
    .header-nav.active {
        transform: translateX(0);
    }
    
    .header-nav a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .header-cta {
        margin-top: 10px;
    }
}

body{
    background:#0f0f0f;
    color:white;
    overflow-x: hidden;
}

/* SMALL HEADER STYLES */
.small-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 20px rgba(245, 197, 66, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-logo i {
    font-size: 22px;
}

.header-logo:hover {
    color: #fff;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

.header-nav a:hover {
    color: var(--primary);
    background: rgba(245, 197, 66, 0.1);
}

.header-cta {
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    color: #000 !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.5);
}

/* Hamburger Menu */
.headerhamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.headerhamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .small-header {
        padding: 10px 20px;
    }
    
    .header-logo {
        font-size: 16px;
    }
    
    .header-logo i {
        font-size: 18px;
    }
    
    .headerhamburger {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 55px;
        right: 0;
        left: auto;
        width: 200px;
        max-width: 70%;
        height: auto;
        max-height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(245, 197, 66, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        padding: 20px 15px;
        gap: 10px;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        border-radius: 0 0 0 15px;
    }
    
    .header-nav.active {
        transform: translateX(0);
    }
    
    .header-nav a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .header-cta {
        margin-top: 10px;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb{
    background: var(--primary);
    border-radius: 5px;
}

/* NAVIGATION */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    animation: slideDown 0.5s ease-out;
}

.navbar.scrolled{
    padding: 10px 50px;
    background: rgba(15, 15, 15, 0.98);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 5px 30px rgba(245, 197, 66, 0.2);
}

@keyframes slideDown{
    from{transform: translateY(-100%); opacity: 0;}
    to{transform: translateY(0); opacity: 1;}
}

.logo{
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.5);
}

.logo i{
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse{
    0%, 100%{opacity: 1;}
    50%{opacity: 0.5;}
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-links a:hover{
    color: var(--primary);
    background: rgba(245, 197, 66, 0.1);
}

.nav-links a:hover::before{
    width: 80%;
}

.menu-toggle{
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* HERO SECTION */
.hero{
    height:100vh;
    padding-top: 80px;
    background: url('BGMI_image.png') center 100%/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    position: relative;
    overflow: hidden;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero::before{
    /* Overlay removed to show BGMI image */
}

@keyframes kenBurns{
    0%{
        background-position: center center;
        background-size: 105%;
    }
    25%{
        background-position: center -2%;
        background-size: 115%;
    }
    50%{
        background-position: center 30%;
        background-size: 110%;
    }
    75%{
        background-position: 10% center;
        background-size: 120%;
    }
    100%{
        background-position: center center;
        background-size: 105%;
    }
}

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.hero-content{
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    margin-left: 40%;
}

@keyframes fadeInUp{
    from{
        transform: translateY(50px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content h1{
    font-size: clamp(30px, 6vw, 70px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(245, 197, 66, 0.8),
                 0 0 60px rgba(245, 197, 66, 0.4);
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText{
    from{text-shadow: 0 0 30px rgba(245, 197, 66, 0.8), 0 0 60px rgba(245, 197, 66, 0.4);}
    to{text-shadow: 0 0 50px rgba(245, 197, 66, 1), 0 0 100px rgba(245, 197, 66, 0.6);}
}

.hero-content h2{
    color: #f5c542;
    margin:15px 0;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    letter-spacing: 3px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-content p{
    margin:20px 0;
    font-size: clamp(14px, 1.5vw, 18px);
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn{
    from{opacity: 0;}
    to{opacity: 1;}
}

/* COUNTDOWN */
.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:35px;
    animation: fadeIn 1s ease-out 0.7s both;
}

.time-box{
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary);
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 90px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.3);
    transition: 0.3s;
}

.time-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine{
    0%{transform: translateX(-100%);}
    100%{transform: translateX(100%);}
}

.time-box:hover{
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(245, 197, 66, 0.5);
}

.time-box h3{
    font-size: clamp(24px, 4vw, 36px);
    color: var(--primary);
    font-weight: 800;
}

.time-box p{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    color: #aaa;
}

/* BUTTON */

.btn{
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-top: 30px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.9s both;
}

.btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn:hover::before{
    left: 100%;
}

.btn:hover{
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(245, 197, 66, 0.6);
}

/* PULSE BUTTON */
.pulse-btn{
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn{
    0%, 100%{box-shadow: 0 0 0 0 rgba(245, 197, 66, 0.7);}
    50%{box-shadow: 0 0 0 20px rgba(245, 197, 66, 0);}
}

/* SECTIONS */
.section{
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(245, 197, 66, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 10%;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header{
    margin-bottom: 50px;
    font-size: large;
}

.section-tag{
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease-out;
}

.section h2{
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
}

.section h2::after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ABOUT SECTION */
.about-section{
    background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.9)),
url('BGMI_image.png') center top/cover no-repeat fixed;
    background-blend-mode: overlay;
    background-color: #0f0f0f;
}

.about-section p{
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
}

.about-features{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-box{
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    transition: 0.4s;
}

.feature-box:hover,
.feature-box.touch-active{
    transform: translateY(-10px);
    background: rgba(245, 197, 66, 0.1);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(245, 197, 66, 0.2);
}

.feature-box i{
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-box h4{
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-box p{
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* SCHEDULE SECTION */
.schedule-section{
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.timeline{
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--danger));
    border-radius: 2px;
}

.timeline-item{
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even){
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-dot{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid #0f0f0f;
    z-index: 1;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.5);
}

.timeline-content{
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    position: relative;
    transition: 0.3s;
}

.timeline-content:hover,
.timeline-content.touch-active{
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(245, 197, 66, 0.2);
}

.timeline-content h3{
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content p{
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.timeline-status{
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 12px;
    color: #888;
}

.timeline-status.completed{
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.timeline-status.live{
    background: rgba(245, 66, 66, 0.3);
    color: var(--danger);
    animation: blink 1s infinite;
}

@keyframes blink{
    0%, 100%{opacity: 1;}
    50%{opacity: 0.5;}
}

/* Rules Section - Scroll triggered animations */
.rules-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
}

/* Rules section initial state */
.rules-section .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.rules-section.page-active .section-header {
    opacity: 1;
    transform: translateY(0);
}

/* Rules grid initial state - cards hidden */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.rules-section.page-active .rule-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Cards appear one after another */
.rules-section.page-active .rule-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}
.rules-section.page-active .rule-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}
.rules-section.page-active .rule-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}
.rules-section.page-active .rule-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}
.rules-section.page-active .rule-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}
.rules-section.page-active .rule-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.rule-card{
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.rule-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--danger));
    transform: scaleX(0);
    transition: 0.3s;
}

.rule-card:hover::before{
    transform: scaleX(1);
}

.rule-card:hover,
.rule-card:active,
.rule-card.touch-active{
    transform: translateY(-10px);
    background: rgba(245, 197, 66, 0.05);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(245, 197, 66, 0.15);
}

.rule-card.touch-active .rule-icon{
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.5);
}

.rule-card:active .rule-icon{
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.5);
}

.rule-icon{
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #000;
    transition: 0.3s;
}

.rule-card:hover .rule-icon,
.rule-card.touch-active .rule-icon{
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.5);
}

.rule-card h4{
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary);
}

.rule-card p{
    font-size: 13px;
    color: #888;
}

/* PRIZE SECTION - PROMINENT */
.prizes-section{
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

/* PRIZE REWARDS INFO - What's In It For You */
.prize-rewards-info {
    margin: 50px auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(245, 197, 66, 0.2);
    border-radius: 20px;
    max-width: 1000px;
    animation: fadeInUp 0.6s ease-out;
}

.prize-rewards-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.prize-rewards-header i {
    font-size: 32px;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.prize-rewards-header h3 {
    font-size: 28px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.prize-rewards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.prize-reward-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    width: 240px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.prize-reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.prize-reward-card:hover,
.prize-reward-card.touch-active {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(245, 197, 66, 0.25);
}

.prize-reward-card .prize-reward-icon {
    font-size: 45px;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

.prize-reward-card h4 {
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.prize-reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.prize-reward-list li {
    padding: 8px 0;
    color: #ccc;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.prize-reward-list li:last-child {
    border-bottom: none;
}

.prize-reward-list li i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

/* All Participants Card */
.prize-reward-card.all-participants {
    border-color: rgba(255, 255, 255, 0.15);
}

.prize-reward-card.all-participants::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}

/* Top 40 Card */
.prize-reward-card.top-40 {
    border-color: rgba(245, 197, 66, 0.3);
}

.prize-reward-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.prize-reward-card.top-40 .prize-reward-icon {
    margin-top: 8px;
}

/* Top 20 Card - Most Prominent */
.prize-reward-card.top-20 {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.15), rgba(245, 197, 66, 0.02));
    transform: scale(1.05);
}

.prize-reward-card.top-20:hover,
.prize-reward-card.top-20.touch-active {
    transform: scale(1.08) translateY(-10px);
}

.prize-reward-card.top-20 .prize-reward-badge {
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    color: #000;
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.5);
}

.prize-reward-card.top-20 .prize-reward-icon {
    margin-top: 8px;
}

/* Mobile Responsive for Prize Rewards */
@media (max-width: 768px) {
    .prize-rewards-info {
        padding: 20px 15px;
        margin: 30px 10px 20px;
    }
    
    .prize-rewards-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .prize-rewards-header h3 {
        font-size: 20px;
    }
    
    .prize-rewards-header i {
        font-size: 26px;
    }
    
    .prize-rewards-grid {
        gap: 12px;
    }
    
    .prize-reward-card {
        width: 100%;
        max-width: 260px;
        padding: 20px 15px;
    }
    
    .prize-reward-card.top-20 {
        transform: scale(1);
    }
    
    .prize-reward-card.top-20:hover,
    .prize-reward-card.top-20.touch-active {
        transform: translateY(-10px);
    }
    
    .prize-reward-card .prize-reward-icon {
        font-size: 36px;
    }
    
    .prize-reward-card h4 {
        font-size: 14px;
    }
    
    .prize-reward-list li {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* Second Page Transition Indicator */
.prizes-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(245, 197, 66, 0.05) 0%, 
        transparent 30%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.prizes-section.page-transition::after {
    opacity: 1;
}

/* Page indicator line */
.page-indicator {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 10;
    transition: width 0.8s ease-out;
}

.prizes-section.page-active .page-indicator {
    width: 200px;
}

/* Heading fade in animation */
.prizes-section .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.prizes-section.page-active .section-header {
    opacity: 1;
    transform: translateY(0);
}

.prizes-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(245, 197, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.prizes-section .section-header h2{
    font-size: clamp(32px, 5vw, 55px);
    color: var(--primary);
    text-shadow: 0 0 30px rgba(245, 197, 66, 0.5);
    letter-spacing: 1px;
}

/* Prize cards animation - appear one after another like schedule */
.prizes {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Initial state for prize cards - hidden and offset */
.prize-box {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* When page is active, animate cards with staggered delay - SLOWER */
.prizes-section.page-active .prize-box:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.prizes-section.page-active .prize-box:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.prizes-section.page-active .prize-box:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.0s;
}

/* Prize CTA button - SLOWER delay to match cards */
.prize-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 1.3s, transform 0.6s ease-out 1.3s;
}

.prizes-section.page-active .prize-cta {
    opacity: 1;
    transform: translateY(0);
}

.prize-box{
    background: var(--card-bg);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 20px;
    width: 280px;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.prize-box:hover,
.prize-box.touch-active{
    transform: translateY(-20px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(245, 197, 66, 0.3);
}

.prize-box.champion.touch-active{
    transform: scale(1.2) translateY(-20px);
}

.prize-box.touch-active .prize-glow{
    opacity: 1;
}

.prize-box.champion{
    transform: scale(1.15);
    border: 3px solid var(--primary);
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.15), rgba(245, 197, 66, 0.02));
    box-shadow: 0 0 50px rgba(245, 197, 66, 0.3);
}

.prize-box.champion:hover{
    transform: scale(1.2) translateY(-20px);
}

.prize-cta{
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.prize-cta .btn{
    font-size: 20px;
    padding: 20px 50px;
    animation: glowBtn 2s ease-in-out infinite alternate;
}

@keyframes glowBtn{
    from{box-shadow: 0 10px 40px rgba(245, 197, 66, 0.4);}
    to{box-shadow: 0 10px 60px rgba(245, 197, 66, 0.8);}
}

.crown{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: var(--primary);
    animation: float 2s ease-in-out infinite;
}

@keyframes float{
    0%, 100%{transform: translateX(-50%) translateY(0);}
    50%{transform: translateX(-50%) translateY(-10px);}
}

.prize-icon{
    font-size: 50px;
    margin-bottom: 15px;
}

.prize-box h3{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.prize-amount{
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin: 15px 0;
}

.prize-amount small {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
}

.prize-glow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 197, 66, 0.2), transparent 70%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.prize-box:hover .prize-glow{
    opacity: 1;
}

/* REGISTRATION */
.registration-form{
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group{
    position: relative;
}

.form-group input,
.form-group select{
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color: var(--primary);
    background: rgba(245, 197, 66, 0.05);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.2);
}

.form-group input::placeholder{
    color: #666;
}

.form-group select{
    cursor: pointer;
    appearance: none;
}

.form-group select option{
    background: #1a1a1a;
    color: white;
}

.input-icon{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: 0.3s;
}

.form-group input:focus ~ .input-icon,
.form-group select:focus ~ .input-icon{
    color: var(--primary);
}

.submit-btn{
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    border: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px auto 0;
}

.submit-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(245, 197, 66, 0.5);
}

.submit-btn i{
    transition: 0.3s;
}

.submit-btn:hover i{
    transform: translateX(5px);
}

/* PLAYER LIST STYLES */
.player-list-label {
    display: block;
    text-align: left;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.player-list-label i {
    margin-right: 8px;
    color: var(--primary);
}

.player-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.player-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.player-input:focus {
    border-color: var(--primary);
    background: rgba(245, 197, 66, 0.05);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.2);
}

.player-input::placeholder {
    color: #666;
}

.add-player-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #888;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.add-player-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(245, 197, 66, 0.1);
}

.add-player-btn i {
    font-size: 12px;
}

.player-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 40px;
}

.player-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.2), rgba(245, 197, 66, 0.1));
    border: 1px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    animation: slideInPlayer 0.3s ease-out;
}

@keyframes slideInPlayer {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.player-tag i {
    font-size: 12px;
}

.remove-player-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.remove-player-btn:hover {
    transform: scale(1.2);
    color: #ff6b6b;
}

.player-count {
    text-align: left;
    color: #666;
    font-size: 12px;
    margin-top: 10px;
}

.player-count span {
    color: var(--primary);
    font-weight: 600;
}

/* MOBILE RESPONSIVE FOR PLAYER LIST */
@media (max-width: 768px) {
    .player-input-group {
        flex-direction: column;
    }
    
    .add-player-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .player-tag {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* REWARDS SECTION */
.rewards-info {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(245, 197, 66, 0.2);
    border-radius: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.rewards-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rewards-header i {
    font-size: 32px;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.rewards-header h3 {
    font-size: 26px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.rewards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.reward-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    width: 250px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.reward-card:hover,
.reward-card.touch-active {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(245, 197, 66, 0.25);
}

.reward-card .reward-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.reward-card h4 {
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.reward-list li {
    padding: 10px 0;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reward-list li:last-child {
    border-bottom: none;
}

.reward-list li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* All Participants Card */
.reward-card.all-participants {
    border-color: rgba(255, 255, 255, 0.15);
}

.reward-card.all-participants::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

/* Top 40 Card */
.reward-card.top-40 {
    border-color: rgba(245, 197, 66, 0.3);
}

.reward-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.reward-card.top-40 .reward-icon {
    margin-top: 10px;
}

/* Top 20 Card - Most Prominent */
.reward-card.top-20 {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.15), rgba(245, 197, 66, 0.02));
    transform: scale(1.05);
}

.reward-card.top-20:hover,
.reward-card.top-20.touch-active {
    transform: scale(1.08) translateY(-10px);
}

.reward-card.top-20 .reward-badge {
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    color: #000;
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.5);
}

.reward-card.top-20 .reward-icon {
    margin-top: 10px;
}

/* Mobile Responsive for Rewards */
@media (max-width: 768px) {
    .rewards-info {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .rewards-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .rewards-header h3 {
        font-size: 20px;
    }
    
    .rewards-header i {
        font-size: 28px;
    }
    
    .rewards-grid {
        gap: 15px;
    }
    
    .reward-card {
        width: 100%;
        max-width: 280px;
        padding: 25px 20px;
    }
    
    .reward-card.top-20 {
        transform: scale(1);
    }
    
    .reward-card.top-20:hover,
    .reward-card.top-20.touch-active {
        transform: translateY(-10px);
    }
    
    .reward-card .reward-icon {
        font-size: 40px;
    }
    
    .reward-card h4 {
        font-size: 16px;
    }
    
    .reward-list li {
        font-size: 13px;
        padding: 8px 0;
    }
}

/* CONTACT SECTION */
.contact-section{
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
}

/* TEAM MEMBERS SECTION - Hidden by default */
.team-members-section {
    display: none;
    margin-top: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(245, 197, 66, 0.2);
    border-radius: 20px;
    animation: slideDownTeam 0.5s ease-out;
}

.team-members-section.visible {
    display: block;
}

@keyframes slideDownTeam {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-members-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.team-members-header i {
    font-size: 28px;
    color: var(--primary);
}

.team-members-header h3 {
    font-size: 22px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-members-subtitle {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    position: relative;
    transition: 0.3s;
}

.team-member-card:hover {
    border-color: var(--primary);
    background: rgba(245, 197, 66, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 197, 66, 0.15);
}

.member-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.4);
}

.team-member-card h4 {
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 5px;
}

.team-member-card .form-group {
    margin-bottom: 12px;
}

.team-member-card .form-group input {
    padding: 10px 15px 10px 40px;
    font-size: 13px;
}

.team-member-card .form-group .input-icon {
    left: 12px;
    font-size: 14px;
}

/* Mobile Responsive for Team Members */
@media (max-width: 1024px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members-section {
        padding: 20px 15px;
    }
    
    .team-members-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .team-members-header h3 {
        font-size: 18px;
    }
}

.contact-container{
    display: flex;
    justify-content: center;
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: 0.3s;
}

.contact-item:hover,
.contact-item.touch-active{
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(245, 197, 66, 0.05);
}

.contact-item i{
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
}

.contact-item h4{
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-item p{
    font-size: 14px;
    color: #888;
}

.social-links{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon{
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover{
    background: var(--primary);
    color: #000;
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--primary);
}

/* FOOTER */
footer{
    background: #0a0a0a;
    padding: 50px 20px 20px;
    text-align: center;
    border-top: 2px solid var(--primary);
    position: relative;
}

footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(245, 197, 66, 0.02) 10px,
        rgba(245, 197, 66, 0.02) 20px
    );
    pointer-events: none;
}

.footer-content{
    position: relative;
    z-index: 1;
}

.footer-logo{
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-logo i{
    margin-right: 10px;
}

.footer-content p{
    color: #666;
    margin-bottom: 20px;
}

.footer-social{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social a{
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover{
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.copyright{
    font-size: 13px;
    color: #444 !important;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* PARTICLES */
.particles{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.particle{
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1){left: 10%; animation-delay: 0s; animation-duration: 15s;}
.particle:nth-child(2){left: 20%; animation-delay: 2s; animation-duration: 12s;}
.particle:nth-child(3){left: 30%; animation-delay: 4s; animation-duration: 18s;}
.particle:nth-child(4){left: 40%; animation-delay: 1s; animation-duration: 14s;}
.particle:nth-child(5){left: 50%; animation-delay: 3s; animation-duration: 16s;}

@keyframes particleFloat{
    0%{transform: translateY(100vh) scale(0); opacity: 0;}
    10%{opacity: 0.9;}
    90%{opacity: 0.9;}
    100%{transform: translateY(-100vh) scale(1); opacity: 0;}
}

/* ANIMATIONS ON SCROLL */
.fade-in{
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease-out;
}

.fade-in.visible{
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left{
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.6s ease-out;
}

.fade-in-left.visible{
    opacity: 1;
    transform: translateX(0);
}

.slide-in-up{
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s ease-out;
}

.slide-in-up.visible{
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left{
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.6s ease-out;
}

.slide-in-right{
    opacity: 0;
    transform: translateX(50px);
    transition: 0.6s ease-out;
}

.bounce-in{
    opacity: 0;
    transform: scale(0.5);
    transition: 0.6s ease-out;
}

.bounce-in.visible{
    opacity: 1;
    transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 1024px){
    .rules-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .navbar{
        padding: 15px 20px;
    }
    
    /* HERO MOBILE - Text first, then image below button */
    .hero{
        height: auto;
        min-height: 100vh;
        background: linear-gradient(
            135deg, 
            rgba(15, 15, 20, 0.95) 0%, 
            rgba(30, 25, 15, 0.9) 50%,
            rgba(245, 197, 66, 0.3) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.8) 100%
        );
        /* Removed background image - will show below button instead */
        background-color: #0f0f0f;
        padding: 120px 20px 100px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .hero-content{
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-content h1{
        font-size: clamp(24px, 8vw, 40px);
        letter-spacing: 4px;
    }
    
    .hero-content h2{
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .countdown{
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
    }
    
    .time-box{
        padding: 10px 8px;
        min-width: 60px;
    }
    
    .time-box h3{
        font-size: 18px;
    }
    
    .time-box p{
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .rules-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .rule-card{
        padding: 20px 15px;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .rule-icon{
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .rule-card h4{
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .rule-card p{
        font-size: 11px;
        line-height: 1.4;
    }
    
    .nav-links{
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        width: 220px;
        max-width: 70%;
        height: auto;
        max-height: calc(100vh - 120px);
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(245, 197, 66, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5),
                    0 0 20px rgba(245, 197, 66, 0.1);
        flex-direction: column;
        padding: 20px 15px;
        gap: 8px;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        border-radius: 0 0 0 15px;
    }
    
    .nav-links.active{
        transform: translateX(0);
    }
    
    .menu-toggle{
        display: block;
    }
    
    /* SCHEDULE SECTION MOBILE */
    .timeline{
        padding: 0 20px;
    }
    
    .timeline::before{
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even){
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-dot{
        left: 20px;
    }
    
    .timeline-content{
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }
    
    .timeline-content h3{
        font-size: 14px;
    }
    
    .timeline-content p{
        font-size: 12px;
    }
    
    .form-row{
        grid-template-columns: 1fr;
    }
    
    .prizes{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .prize-box{
        width: 200px;
        padding: 20px 15px;
    }
    
    .prize-box.champion{
        transform: scale(1);
        width: 220px;
        padding: 25px 20px;
    }
    
    .prize-box.champion:hover{
        transform: translateY(-10px);
    }
    
    .prize-icon{
        font-size: 35px;
        margin-bottom: 10px;
    }
    
    .prize-box h3{
        font-size: 16px;
    }
    
    .prize-amount{
        font-size: 30px !important;
        margin: 10px 0;
    }
    
    .crown{
        font-size: 28px;
        top: -20px;
    }
    
    .prize-box p{
        font-size: 12px;
    }
    
    /* ABOUT SECTION MOBILE */
    .about-section{
        padding: 80px 5% 30px;
    }
    
    .section-header{
        margin-bottom: 30px;
    }
    
    /* RULES SECTION MOBILE */
    .rules-section {
        padding: 60px 5% 40px;
    }
    
    .rules-section .section-header {
        margin-bottom: 30px;
    }
    
    /* PRIZES SECTION MOBILE */
    .prizes-section {
        padding: 50px 5% 50px;
    }
    
    .prizes-section .section-header {
        margin-bottom: 60px;
    }
    
    .prizes-section .section-header h2 {
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .about-section p{
        font-size: 14px;
        line-height: 1.5;
        padding: 0 5px;
        margin: 120px auto 30px !important;
    }
    
    .about-features{
        gap: 10px;
        margin-top: -150px;
    }
    
    .feature-box{
        width: 100%;
        max-width: 250px;
        padding: 12px;
    }
    
    .feature-box i{
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .feature-box h4{
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .feature-box p{
        font-size: 11px;
    }
}

/* FLOAT ANIMATION */
.float-animation{
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard{
    0%, 100%{transform: translateY(0);}
    50%{transform: translateY(-15px);}
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatImage{
    0%, 100%{
        transform: translateY(0) scale(1);
    }
    50%{
        transform: translateY(-15px) scale(1.05);
    }
}

/* Ken Burns animation for mobile background */
@keyframes kenBurnsMobile{
    0%{
        background-position: center center;
        background-size: 100%;
    }
    25%{
        background-position: center -5%;
        background-size: 110%;
    }
    50%{
        background-position: center 10%;
        background-size: 105%;
    }
    75%{
        background-position: 5% center;
        background-size: 115%;
    }
    100%{
        background-position: center center;
        background-size: 100%;
    }
}

@media (max-width: 768px){
    /* Add dark overlay on mobile so text is readable */
    .hero::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%
        ), url('Pubg_mblview.png') center/cover no-repeat;
        z-index: 0;
        animation: kenBurnsMobile 15s ease-in-out infinite alternate;
    
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    /* MOBILE HERO ENTRANCE ANIMATIONS */
    .hero-content h1 {
        animation: slideInFromLeft 0.8s ease-out both, glowText 2s ease-in-out infinite 0.8s;
    }
    
    .hero-content h2 {
        animation: slideInFromLeft 0.8s ease-out 0.2s both;
    }
    
    .hero-content p {
        animation: slideInFromLeft 0.8s ease-out 0.4s both;
    }
    
    .countdown {
        animation: slideInFromLeft 0.8s ease-out 0.6s both;
    }
    
    .btn {
        animation: slideInFromLeft 0.8s ease-out 0.8s both;
    }
}

/* BUTTON STYLES - Works on both Desktop and Mobile */
.register-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(45deg, #f5c542, #ffdb4d);
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.5),
                0 4px 15px rgba(0, 0, 0, 0.3);
}

.register-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.8),
                0 8px 25px rgba(0, 0, 0, 0.4);
}

.register-button .text_button {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000 !important;
}

/* REGISTER BUTTON STYLE - Blue gradient with user icon */
.register-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2e8eff, #1a6ed8) !important;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(46, 142, 255, 0.4);
}

.register-button:hover,
.register-button:focus {
    background: linear-gradient(135deg, #4a9fff, #2e8eff) !important;
    box-shadow: 0 6px 25px rgba(46, 142, 255, 0.6);
    transform: translateY(-2px);
}

.register-button-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
}

.register-button-inner svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.register-button-inner p {
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MUSIC TOGGLE BUTTON */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(245, 197, 66, 0.6);
}

.music-toggle i {
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
}

.music-toggle.playing i {
    animation: musicNote 1s ease-in-out infinite;
}

.music-toggle.muted i {
    opacity: 0.5;
}

@keyframes musicNote {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile responsive for music toggle */
@media (max-width: 768px) {
    .music-toggle {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .music-toggle i {
        font-size: 18px;
    }
}

/* SUCCESS MESSAGE STYLES */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary);
    border-radius: 20px;
    max-width: 500px;
    margin: 30px auto;
    animation: fadeInUp 0.5s ease-out;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h2 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-message p {
    color: #888;
    font-size: 16px;
}

/* PAYMENT MODAL STYLES */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.payment-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.payment-modal-content {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(245, 197, 66, 0.3);
    animation: scaleIn 0.3s ease-out;
}

.payment-modal-header {
    background: linear-gradient(45deg, var(--primary), #ffdb4d);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-modal-header h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-modal-close {
    font-size: 28px;
    color: #000;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.payment-modal-close:hover {
    transform: scale(1.2);
    color: #333;
}

.payment-modal-body {
    padding: 30px 20px;
    text-align: center;
}

.payment-amount-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.payment-label {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.5);
}

.qr-code-container {
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.qr-code-image {
    width: 180px;
    height: 180px;
    display: block;
}

.payment-instructions {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
}

.status-icon {
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

.payment-status span {
    color: #888;
    font-size: 14px;
}

.payment-manual-option {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.payment-manual-option p {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bank-detail-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-label {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

.detail-value {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.copy-btn {
    padding: 5px 12px;
    background: rgba(245, 197, 66, 0.2);
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: var(--primary);
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover {
    background: var(--primary);
    color: #000;
}

.payment-modal-footer {
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.payment-confirm-btn {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-confirm-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.payment-confirm-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.payment-cancel-btn {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.payment-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Responsive for Payment Modal */
@media (max-width: 480px) {
    .payment-modal-content {
        max-width: 100%;
    }
    
    .payment-amount {
        font-size: 36px;
    }
    
    .qr-code-image {
        width: 150px;
        height: 150px;
    }
    
    .payment-modal-footer {
        flex-direction: column;
    }
    
    .payment-confirm-btn,
    .payment-cancel-btn {
        width: 100%;
    }
}
