/* ===============================
   RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===============================
   NAVBAR
================================= */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f4f6;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
}

/* ===============================
   MAIN CONONTAL)
=================================TAINER (HORIZ */
.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow-x: scroll;
    overflow-y: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.container::-webkit-scrollbar {
    display: none;
}

/* ===============================
   SLIDES
================================= */
.slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
}

/* ===============================
   SLIDE 1 - HERO
================================= */
.slide1 {
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    padding-top: 10px;
}

.hero-section {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    flex: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: calc(100vh - 120px);
    padding: 10px;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideInFromLeft 1.2s ease-out forwards;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-content {
    flex: 1;
    padding-left: 15px;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFromRight 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 25px;
}

.hero-heading {
    font-size: 72px;
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-gradient-text {
    font-size: 72px;
    font-weight: 800;
    color: #e10600;
    line-height: 1.1;
    margin-bottom: 30px;
    white-space: nowrap;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #555555;
    max-width: 600px;
}

/* ===============================
   SLIDE 2 - FESTIVAL
================================= */
#slide2-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide2 {
    background: #000814;
    position: relative;
    overflow: hidden;
}

.slide2-container {
    position: relative;
    z-index: 2;
        height: 100%;
        display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 40px;
}

.slide2-title {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 8px;
    opacity: 0;
    transform: scale(0.6);
    animation: zoomIn 1s forwards;
    color: #ffffff;
}

.slide2-title .title-line1 {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.slide2-title .title-line2 {
    display: block;
    text-align: center;
}

.slide2-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #ccc;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeIn 1.2s forwards 0.7s;
}

.slide2-register-btn {
    padding: 12px 32px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 40px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1s forwards 1.3s, pulseGlow 2s infinite 2.3s;
    transition: all 0.3s ease;
}

.slide2-register-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
}

.slide2-awards-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    width: min(1100px, 95%);
    box-shadow: 0 0 40px rgba(255, 81, 0, 0.536);
    transform: translateY(60px);
    opacity: 0;
    animation: slideUp 1s forwards 1.8s;
}

.slide2-awards-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffd700;
}

.slide2-awards-list {
    list-style: none;
}

.slide2-awards-list li {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeItem 0.6s forwards;
    color: #ffffff;
}

.slide2-awards-list li:nth-child(1) { animation-delay: 0.3s; }
.slide2-awards-list li:nth-child(2) { animation-delay: 0.6s; }
.slide2-awards-list li:nth-child(3) { animation-delay: 0.9s; }

/* Animations */
@keyframes zoomIn { to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeItem { to { opacity: 1; transform: translateX(0); } }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); } 70% { box-shadow: 0 0 20px 15px rgba(255, 0, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); } }

/* ===============================
   SLIDE 3 - WHO CAN PARTICIPATE
================================= */
.slide3 {
    background: #f9fafb;
    padding: 80px 40px 40px;
    overflow-y: auto;
}

.slide3-section {
    max-width: 1200px;
    margin: 0 auto;
}

.slide3-heading {
    text-align: center;
    margin-bottom: 40px;
}

.slide3-heading h1 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.slide3-heading span {
    color: #e10600;
}

.slide3-heading .title-line1 {
    display: block;
    text-align: center;
    color: #e10600;
    margin-bottom: 5px;
}

.slide3-heading .title-line2 {
    display: block;
    color: #e10600;
    text-align: center;
}

.slide3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.slide3-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.slide3-card:hover {
    transform: translateY(-6px);
}

.slide3-card h3 {
    margin-bottom: 15px;
    color: #111;
}

.slide3-card ul {
    padding-left: 20px;
}

.slide3-card li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

.slide3-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ===============================
   SLIDE 3A - BLACK BACKGROUND
================================= */
.slide3a {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.slide3a-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.slide3a-content h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide3a-content p {
    font-size: clamp(16px, 2vw, 24px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

/* ===============================
   SLIDE 4 - EVENTS
================================= */
.slide4 {
    background: #f8f8f8;
    padding: 80px 20px 20px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
}

.events-container {
    max-width: 1400px;
    margin: auto;
}

.events-container h1 {
    text-align: center;
    margin-bottom: 10px;
}

.events-subtitle {
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.card-content {
    padding: 12px;
    text-align: center;
}

.register-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #0066ff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 12px;
}

.register-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

/* Events Section */
.events-section {
    margin-bottom: 30px;
}

.events-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    margin-top: 20px;
    text-align: left;
    padding-left: 10px;
    border-left: 4px solid #e10600;
}

/* =========================================
   EVENT CARDS - SMALLER SIZE
   Track, Team, and Field Events Cards
   Location: Slide 4 - Events Section
   ========================================= */

/* Track Events Carousel - PC View */
.track-events-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.track-carousel-track {
    display: flex;
    gap: 80px;
    transition: transform 0.5s ease-in-out;
}

/* Track Event Card - Smaller Size */
.track-event-card {
    flex: 0 0 calc(20% - 64px);
    min-width: 150px;
    max-width: calc(20% - 64px);
    width: calc(20% - 64px);
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.track-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(225, 6, 0, 0.2);
    border-color: #e10600;
}

/* Team Events Carousel - PC View */
.team-events-carousel,
.field-events-carousel,
.indoor-events-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.team-carousel-track,
.field-carousel-track,
.indoor-carousel-track {
    display: flex;
    gap: 80px;
    transition: transform 0.5s ease-in-out;
}

/* Team and Field Event Card - Smaller Size */
.team-event-card,
.field-event-card,
.indoor-event-card {
    flex: 0 0 calc(20% - 64px);
    min-width: 150px;
    max-width: calc(20% - 64px);
    width: calc(20% - 64px);
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-event-card:hover,
.field-event-card:hover,
.indoor-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(225, 6, 0, 0.2);
    border-color: #e10600;
}

/* PC View - Auto-scrolling animation */
@media (min-width: 769px) {
    .track-carousel-track {
        animation: trackCarouselScroll 30s linear infinite;
    }
    
    .team-carousel-track {
        animation: teamCarouselScroll 15s linear infinite;
    }
    
    .field-carousel-track {
        animation: fieldCarouselScroll 15s linear infinite;
    }
    
    .indoor-carousel-track {
        animation: indoorCarouselScroll 15s linear infinite;
    }
    
    @keyframes trackCarouselScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
    
    @keyframes teamCarouselScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    @keyframes fieldCarouselScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    @keyframes indoorCarouselScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Hide carousel indicators on PC */
    .track-carousel-indicators,
    .team-carousel-indicators,
    .field-carousel-indicators,
    .indoor-carousel-indicators {
        display: none;
    }
}

/* Carousel Indicators */
.track-carousel-indicators,
.team-carousel-indicators,
.field-carousel-indicators,
.indoor-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.track-carousel-dot,
.team-carousel-dot,
.field-carousel-dot,
.indoor-carousel-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-carousel-dot.active,
.team-carousel-dot.active,
.field-carousel-dot.active,
.indoor-carousel-dot.active {
    background: #e10600;
    transform: scale(1.2);
}

/* ===============================
   HAMBURGER MENU
================================= */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .hamburger.mobile-only {
        display: flex;
    }
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===============================
   ANIMATIONS
================================= */
@keyframes slideInFromLeft { 0% { opacity: 0; transform: translateX(-100%); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slideInFromRight { 0% { opacity: 0; transform: translateX(100%); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes slideInFromTop { 0% { opacity: 0; transform: translateY(-30px); } 100% { opacity: 1; transform: translateY(0); } }

.hero-label { animation: fadeInUp 0.8s ease-out forwards; animation-delay: 0.8s; opacity: 0; }
.hero-heading { animation: fadeInUp 0.8s ease-out forwards; animation-delay: 1.0s; opacity: 0; }
.hero-gradient-text { animation: fadeInUp 0.8s ease-out forwards; animation-delay: 1.2s; opacity: 0; }
.hero-description { animation: fadeInUp 0.8s ease-out forwards; animation-delay: 1.4s; opacity: 0; }
.slide3-heading { opacity: 0; transform: translateY(-30px); animation: slideInFromTop 0.8s ease-out forwards; }
.slide3-card { opacity: 0; transform: translateY(50px); }
.slide3-card:nth-child(1) { animation: fadeInUp 0.6s ease-out forwards; animation-delay: 0.5s; }
.slide3-card:nth-child(2) { animation: fadeInUp 0.6s ease-out forwards; animation-delay: 0.8s; }
.slide3-card:nth-child(3) { animation: fadeInUp 0.6s ease-out forwards; animation-delay: 1.1s; }
.events-container h1 { opacity: 0; transform: translateY(-30px); animation: slideInFromTop 0.8s ease-out forwards; }
.events-subtitle { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s ease-out forwards; animation-delay: 0.3s; }
.event-card { opacity: 0; transform: translateY(60px); }
.event-card:nth-child(1) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 0.5s; }
.event-card:nth-child(2) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 0.6s; }
.event-card:nth-child(3) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 0.7s; }
.event-card:nth-child(4) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 0.8s; }
.event-card:nth-child(5) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 0.9s; }
.event-card:nth-child(6) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.0s; }
.event-card:nth-child(7) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.1s; }
.event-card:nth-child(8) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.2s; }
.event-card:nth-child(9) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.3s; }
.event-card:nth-child(10) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.4s; }
.event-card:nth-child(11) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.5s; }
.event-card:nth-child(12) { animation: fadeInUp 0.5s ease-out forwards; animation-delay: 1.6s; }

/* =====================================================
   MOBILE RESPONSIVE STYLES (max-width: 768px)
   ===================================================== */
@media (max-width: 768px) {
    .container {
        display: block;
        height: 100vh;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        overscroll-behavior: contain;
    }
    
    .slide {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        overflow-x: hidden;
    }
    
    #navbar {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    
    .nav-links a {
        font-size: 16px;
    }
    
    .slide1 {
        padding-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        min-height: auto;
        padding-top: 0;
    }
    
    .hero-logo {
        width: 100%;
        min-height: auto;
        padding: 0;
        margin-bottom: 15px;
        margin-top: 60px;
    }
    
    .hero-logo img {
        max-width: 180px;
        height: auto;
    }
    
    .hero-content {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .hero-label {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }
    
    .hero-heading {
        font-size: 20px;
        line-height: 1.1;
        margin-bottom: 2px;
    }
    
    .hero-gradient-text {
        font-size: 16px;
        line-height: 1.1;
        margin-bottom: 5px;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .slide2-container {
        padding: 80px 15px 30px;
        min-height: 100vh;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        overflow-y: auto;
    }
    
    .slide2-title {
        font-size: clamp(18px, 4vw, 28px);
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .slide2-subtitle {
        font-size: clamp(11px, 2.5vw, 14px);
        margin-bottom: 15px;
    }
    
    .slide2-register-btn {
        padding: 12px 24px;
        font-size: clamp(12px, 3vw, 15px);
        margin-bottom: 20px;
    }
    
    .slide2-awards-box {
        padding: 15px;
        border-radius: 12px;
        width: 95%;
        max-width: 400px;
    }
    
    .slide2-awards-title {
        font-size: clamp(14px, 3.5vw, 18px);
        margin-bottom: 12px;
    }
    
    .slide2-awards-list {
        padding-left: 0;
        list-style: none;
    }
    
    .slide2-awards-list li {
        font-size: clamp(10px, 2.5vw, 13px);
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .slide3 {
        padding: 60px 10px 30px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        min-height: auto;
        height: auto;
    }
    
    .slide3-section {
        width: 100%;
        max-width: 100%;
        max-height: none;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }
    
    .slide3-heading {
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .slide3-heading h1 {
        font-size: 18px;
        line-height: 1.4;
        font-weight: 700;
    }
    
    .slide3-heading .title-line1,
    .slide3-heading .title-line2 {
        font-size: 14px;
        display: block;
        text-align: center;
    }
    
    .slide3-grid {
        display: flex;
        gap: 0;
    }
    
    .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0 45px;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }
    
    .slide3-card {
        min-width: 85%;
        max-width: 85%;
        margin: 0 7.5%;
        padding: 20px 18px;
        box-sizing: border-box;
        border-radius: 16px;
    }
    
    .carousel-arrow {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        font-weight: bold;
        color: #1a1a1a;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-arrow:hover {
        background: #e10600;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .carousel-arrow-left {
        left: 5px;
    }
    
    .carousel-arrow-right {
        right: 5px;
    }
    
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }
    
    .carousel-dot.active {
        background: #e10600;
        transform: scale(1.3);
        width: 12px;
        height: 12px;
    }

    /* Hide carousel arrows on PC view only */
@media (min-width: 769px) {\n        .slide3 .carousel-container .carousel-arrow,\n        .carousel-arrow.carousel-arrow-left,\n        .carousel-arrow.carousel-arrow-right {\n            display: none !important;\n        }\n    }
    
    .slide3-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
        font-weight: 600;
        color: #111;
    }
    
    .slide3-card li {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.5;
        color: #555;
    }
    
    .slide3-card ul {
        padding-left: 18px;
    }
    
    .slide3-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .slide4 {
        padding: 50px 10px 20px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .events-container {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .events-container h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .events-subtitle {
        font-size: 12px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .card-image img {
        height: 100px;
    }
    
    .card-content {
        padding: 10px;
    }
    
    .card-content h3 {
        font-size: 12px;
    }
    
    .card-content p {
        font-size: 10px;
    }
    
    .register-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .events-category-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    /* Note: Track/Team/Field/Indoor carousel indicators are shown via separate mobile carousel styles */
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 24px;
    }
    
    .hero-gradient-text {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 12px;
    }
    
    .hero-logo img {
        max-width: 220px;
    }
    
    .hero-logo {
        margin-top: 70px;
    }
    
    .slide2-title {
        font-size: 18px;
    }
    
    .slide3-heading h1 {
        font-size: 18px;
    }
    
    .events-container h1 {
        font-size: 18px;
    }
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */
.contact-page {
    background: #0f0f0f;
    min-height: 100vh;
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #2a2a2a;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-info-desc {
    color: #888;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ccc;
    font-size: 14px;
}

.contact-form .required {
    color: #ff3333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    color: white;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff3333;
    background: #0f0f0f;
    box-shadow: 0 0 0 4px rgba(255, 51, 51, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form select option {
    background: #1a1a1a;
    color: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-section {
    padding-left: 20px;
    border-left: 1px solid #2a2a2a;
}

.contact-info-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    background: #151515;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #1a1a1a;
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: white;
    font-size: 20px;
}

.contact-info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.social-media-section {
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

.social-media-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
}

.contact-map {
    padding: 0 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.map-container iframe {
    display: block;
}

.contact-footer {
    background: #0a0a0a;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 10px;
}

.footer-content p {
    color: #666;
    font-size: 14px;
}

.nav-links a.active {
    color: #ff0000;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .contact-info-section {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #2a2a2a;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        background: #0f0f0f;
        min-height: 100vh;
        padding-top: 60px;
        overflow-x: hidden;
    }

    .contact-hero {
        padding: 50px 20px 40px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 14px;
        padding: 0 10px;
    }

    .contact-wrapper {
        padding: 25px 15px;
        gap: 30px;
        border-radius: 15px;
        margin: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 20px;
        text-align: center;
    }

    .contact-info-desc {
        font-size: 13px;
        text-align: center;
    }

    .contact-info-grid {
        gap: 12px;
    }

    .contact-info-card {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon i {
        font-size: 16px;
    }

    .contact-info-content h3 {
        font-size: 14px;
    }

    .contact-info-content p {
        font-size: 12px;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 16px;
    }

    .contact-map {
        padding: 0 10px 30px;
    }

    .map-container {
        border-radius: 12px;
    }

    .map-container iframe {
        height: 250px;
    }

    .contact-footer {
        padding: 20px 15px;
    }

    .footer-logo {
        font-size: 16px;
    }

    .footer-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 24px;
    }

    .contact-container {
        padding: 30px 10px;
    }

    .contact-wrapper {
        padding: 20px 12px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .submit-btn,
    .reset-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* =====================================================
   REGISTRATION PAGE STYLES
   ===================================================== */
.registration-page {
    background: #111;
    min-height: 100vh;
    overflow-y: auto;
}

.registration-container {
    padding: 120px 20px 60px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.registration-card {
    background: linear-gradient(145deg, #1f1f1f, #151515);
    padding: 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 750px;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    margin-bottom: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff4d4d, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #888;
    font-size: 16px;
}

.registration-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.team-member-section {
    grid-column: 1 / -1;
}

.form-buttons {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ccc;
    font-size: 14px;
}

.form-group .required {
    color: #ff3333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    color: white;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3333;
    background: #0f0f0f;
    box-shadow: 0 0 0 4px rgba(255, 51, 51, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.team-member-section {
    background: #151515;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.team-section-header {
    margin-bottom: 20px;
}

.team-section-header h3 {
    font-size: 20px;
    color: #ff4d4d;
    margin-bottom: 5px;
}

.team-section-header p {
    color: #777;
    font-size: 14px;
}

.team-members-table-wrapper {
    overflow-x: auto;
}

.team-members-table {
    width: 100%;
    border-collapse: collapse;
}

.team-members-table th {
    text-align: left;
    padding: 12px;
    color: #aaa;
    font-weight: 500;
    font-size: 13px;
    border-bottom: 1px solid #2a2a2a;
}

.team-members-table td {
    padding: 10px;
}

.team-input {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-input:focus {
    outline: none;
    border-color: #ff3333;
    box-shadow: 0 0 0 4px rgba(255, 51, 51, 0.1);
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.submit-btn {
    flex: 1;
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    border: none;
    padding: 16px 30px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.4);
}

.reset-btn {
    flex: 1;
    background: transparent;
    border: 2px solid #ff4d4d;
    color: #ff4d4d;
    padding: 16px 30px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reset-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    transform: translateY(-2px);
}

.success-message {
    display: none;
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00cc66, #00aa55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
}

.success-message h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.success-message p {
    color: #888;
    font-size: 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Registration Responsive */
@media (max-width: 768px) {
    .registration-page {
        background: #111;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .registration-container {
        padding: 80px 10px 40px;
        display: flex;
        justify-content: center;
        width: 100%;
        overflow-x: hidden;
    }

    .registration-card {
        padding: 25px 15px;
        margin: 10px;
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .form-header {
        margin-bottom: 25px;
    }

    .form-header h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .form-header p {
        font-size: 14px;
    }

    /* Form Layout - Single Column */
    .registration-form {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
        width: 100%;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #ff3333;
        box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.15);
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 35px;
        background-size: 12px;
    }

    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }

    /* Team Member Section */
    .team-member-section {
        grid-column: 1;
        padding: 15px;
        margin: 20px 0;
        border-radius: 12px;
    }

    .team-section-header {
        margin-bottom: 15px;
    }

    .team-section-header h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .team-section-header p {
        font-size: 12px;
        line-height: 1.4;
    }

    .team-members-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -5px;
        padding: 0 5px;
    }

    .team-members-table {
        width: 100%;
        min-width: 500px;
        border-collapse: collapse;
        font-size: 12px;
    }

    .team-members-table th {
        padding: 10px 8px;
        font-size: 11px;
        white-space: nowrap;
    }

    .team-members-table td {
        padding: 8px;
    }

    .team-input {
        width: 100%;
        padding: 10px;
        font-size: 13px;
        border-radius: 6px;
        min-width: 100px;
    }

    /* Form Buttons */
    .form-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .submit-btn,
    .reset-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 8px;
    }

    .submit-btn {
        order: 1;
    }

    .reset-btn {
        order: 2;
    }

    /* Slide3 Section Mobile */
    .slide3 {
        padding: 60px 0 30px;
    }

    .slide3-section {
        padding: 0 10px;
    }

    .slide3-heading {
        margin-bottom: 15px;
    }

    .slide3-heading h1 {
        font-size: 16px;
        line-height: 1.4;
    }

    .slide3-heading .title-line1,
    .slide3-heading .title-line2 {
        font-size: 14px;
    }

    /* Navbar Mobile */
    #navbar {
        padding: 10px 12px;
    }

    .logo {
        font-size: 14px;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hamburger {
        display: flex;
        gap: 4px;
    }

    .hamburger .bar {
        width: 20px;
        height: 2px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 250px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(30px);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 15px;
        color: #1a1a1a;
    }

    /* Success Message */
    .success-message {
        padding: 40px 15px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .success-message h2 {
        font-size: 22px;
    }

    .success-message p {
        font-size: 14px;
    }

    /* Fee Modal Mobile */
    .fee-modal-content {
        width: 95%;
        max-width: 400px;
        margin: 10px;
    }

    .fee-modal-header {
        padding: 15px 20px;
    }

    .fee-modal-header h2 {
        font-size: 18px;
    }

    .fee-modal-body {
        padding: 20px;
    }

    .fee-sport-name {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .fee-amount {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .fee-amount span {
        font-size: 18px;
    }

    .fee-details {
        padding: 12px;
    }

    .fee-details p {
        font-size: 13px;
    }

    .fee-note {
        font-size: 12px;
    }

    .fee-modal-footer {
        padding: 0 20px 20px;
    }

    .fee-modal-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* WhatsApp Modal Mobile */
    .whatsapp-modal-content {
        width: 95%;
        max-width: 400px;
        margin: 10px;
    }

    .whatsapp-modal-header {
        padding: 15px 20px;
    }

    .whatsapp-modal-header h2 {
        font-size: 18px;
    }

    .whatsapp-modal-body {
        padding: 20px;
    }

    .whatsapp-modal-body p {
        font-size: 14px;
    }

    .whatsapp-icon i {
        font-size: 50px;
    }

    .whatsapp-modal-footer {
        padding: 0 20px 20px;
    }

    .whatsapp-modal-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Payment Modal Mobile */
    .payment-modal-content {
        width: 95%;
        max-width: 450px;
        margin: 10px;
    }

    .payment-modal-header {
        padding: 12px 20px;
    }

    .payment-modal-header h2 {
        font-size: 18px;
    }

    .payment-modal-body {
        padding: 15px 20px;
    }

    .payment-amount-display {
        padding: 12px;
        flex-direction: column;
        gap: 5px;
    }

    .payment-label {
        font-size: 14px;
    }

    .payment-amount {
        font-size: 28px;
    }

    .qr-code-image {
        width: 120px;
        height: 120px;
    }

    .payment-instructions {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .payment-status {
        padding: 12px;
    }

    .payment-status span {
        font-size: 13px;
    }

    .bank-details {
        padding: 12px;
    }

    .bank-detail-row {
        flex-direction: column;
        gap: 8px;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 13px;
        word-break: break-all;
    }

    .copy-btn {
        padding: 6px 14px;
        font-size: 11px;
    }

    .payment-modal-footer {
        padding: 0 20px 20px;
    }

    .payment-confirm-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .payment-cancel-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .registration-container {
        padding: 70px 5px 30px;
    }

    .registration-card {
        padding: 20px 12px;
        margin: 5px;
        border-radius: 12px;
    }

    .form-header h1 {
        font-size: 18px;
    }

    .form-header p {
        font-size: 13px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .team-member-section {
        padding: 12px;
        margin: 15px 0;
    }

    .team-section-header h3 {
        font-size: 14px;
    }

    .team-section-header p {
        font-size: 11px;
    }

    .team-members-table {
        min-width: 450px;
    }

    .form-buttons {
        margin-top: 20px;
    }

    .submit-btn,
    .reset-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .logo {
        font-size: 12px;
        max-width: 120px;
    }

    .hamburger .bar {
        width: 18px;
    }

    .slide3-heading h1 {
        font-size: 14px;
    }

    .slide3-heading .title-line1,
    .slide3-heading .title-line2 {
        font-size: 12px;
    }

    .fee-modal-content,
    .whatsapp-modal-content,
    .payment-modal-content {
        width: 92%;
        margin: 8px;
    }

    .fee-amount {
        font-size: 32px;
    }

    .fee-amount span {
        font-size: 16px;
    }

    .success-message {
        padding: 30px 10px;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .success-message h2 {
        font-size: 20px;
    }
}

/* =====================================================
   REGISTRATION FEE MODAL
   ===================================================== */
.fee-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.fee-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fee-modal-content {
    background: linear-gradient(145deg, #1f1f1f, #151515);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fee-modal-header {
    background: linear-gradient(135deg, #00cc66, #00aa55);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fee-modal-header h2 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.fee-modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.fee-modal-close:hover {
    transform: scale(1.2);
}

.fee-modal-body {
    padding: 30px 25px;
    text-align: center;
}

.fee-sport-name {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fee-amount {
    font-size: 48px;
    font-weight: 800;
    color: #00cc66;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 204, 102, 0.3);
}

.fee-amount span {
    font-size: 24px;
    color: #aaa;
}

.fee-details {
    background: #0a0a0a;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.fee-details p {
    margin: 8px 0;
    color: #ccc;
    font-size: 14px;
}

.fee-details strong {
    color: #fff;
}

.fee-note {
    color: #666;
    font-size: 13px;
    font-style: italic;
}

.fee-modal-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.fee-modal-btn {
    background: linear-gradient(135deg, #00cc66, #00aa55);
    border: none;
    padding: 14px 40px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.fee-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 204, 102, 0.4);
}

/* =====================================================
   WHATSAPP COMMUNITY MODAL
   ===================================================== */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.whatsapp-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal-content {
    background: linear-gradient(145deg, #1f1f1f, #151515);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-modal-header h2 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.whatsapp-modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.whatsapp-modal-close:hover {
    transform: scale(1.2);
}

.whatsapp-modal-body {
    padding: 30px 25px;
    text-align: center;
}

.whatsapp-modal-body p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.whatsapp-icon {
    margin-bottom: 20px;
}

.whatsapp-icon i {
    font-size: 60px;
    color: #25d366;
}

.whatsapp-modal-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.whatsapp-modal-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    padding: 14px 40px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 10px;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-modal-skip {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.whatsapp-modal-skip:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}


/* Payment Modal */
.payment-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); }
.payment-modal.show { display: flex; align-items: center; justify-content: center; }
.payment-modal-content { background: linear-gradient(145deg, #1f1f1f, #151515); border-radius: 20px; width: 90%; max-width: 600px; max-height: 90vh; border: 1px solid #2a2a2a; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); animation: slideIn 0.3s ease; overflow-y: auto; }
.payment-modal-header { background: linear-gradient(135deg, #ff4d4d, #cc0000); padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; }
.payment-modal-header h2 { color: white; font-size: 22px; font-weight: 600; margin: 0; }
.payment-modal-close { color: white; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; }
.payment-modal-body { padding: 0px 25px; text-align: center;max-height: calc(90vh - 60px); }
.payment-amount-display { display: flex; justify-content: space-between; align-items: center; background: #0a0a0a; border-radius: 10px; padding: 15px; margin-bottom: 20px; }
.payment-label { color: #aaa; font-size: 16px; }
.payment-amount { font-size: 32px; font-weight: 800; color: #ff4d4d; }
.qr-code-container { margin-bottom: 20px; }
.qr-code-image { width: 150px; height: 150px; border-radius: 10px; }
.payment-instructions { color: #888; font-size: 14px; margin-bottom: 20px; }
.payment-status { display: flex; align-items: center; justify-content: center; gap: 10px; background: #0a0a0a; border-radius: 10px; padding: 15px; margin-bottom: 20px; }
.status-icon { font-size: 20px; }
.payment-status span { color: #aaa; font-size: 14px; }
.payment-manual-option { text-align: center; }
.payment-manual-option p { color: #888; font-size: 14px; margin-bottom: 10px; }
.bank-details { background: #0a0a0a; border-radius: 10px; padding: 15px; }
.bank-detail-row { display: flex; align-items: center; justify-content: space-between; }
.detail-label { color: #aaa; font-size: 10px; }
.detail-value { color: #fff; font-size: 10px; font-weight: 400; }
.copy-btn { background: #ff4d4d; color: white; border: none; padding: 5px 12px; border-radius: 5px; font-size: 12px; cursor: pointer; }
.payment-modal-footer { padding: 0 25px 25px; text-align: center; display: flex; flex-direction: column; gap: 10px; }
.payment-confirm-btn { background: linear-gradient(135deg, #00cc66, #00aa55); border: none; padding: 10px 40px; color: white; cursor: pointer; border-radius: 10px; font-size: 16px; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; width: 100%; }
.payment-confirm-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 204, 102, 0.4); }
.payment-confirm-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.payment-cancel-btn { background: transparent; border: 2px solid #ff4d4d; color: #ff4d4d; padding: 12px 30px; cursor: pointer; border-radius: 10px; font-size: 14px; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; width: 100%; }
.payment-cancel-btn:hover { background: rgba(255, 77, 77, 0.1); transform: translateY(-2px); }

/* ===============================
   SLIDE 3A - BGMI CHAMPIONSHIP
================================= */
.slide3a {
    background: #0a0a0a;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.slide3a .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 30px 80px;
    box-sizing: border-box;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(245,197,66,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255,107,0,0.06) 0%, transparent 50%),
        linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    overflow: hidden;
}

.slide3a .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.slide3a .hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 200px;
    width: 100%;
    height: 100%;
}

.slide3a .hero-left img {
    width: none;
    height: none;
    max-width: none;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(245,197,66,0.3));
}

/* PC Image - shown by default */
.slide3a .hero-left .pc-img {
    display: block;
}

/* Mobile Image - hidden by default */
.slide3a .hero-left .mobile-img {
    display: none;
}

/* Mobile responsive - show mobile image, hide PC image */
@media (max-width: 768px) {
    .slide3a .hero-left .pc-img {
        display: none;
    }
    .slide3a .hero-left .mobile-img {
        display: none;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.slide3a .hero-right {
    flex: 1;
    max-width: 50%;
    padding: 200px;
    position: relative;
    z-index: 1;
}

.slide3a .hero-right h1 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: white;
}

.slide3a .hero-right h1 span {
    color: rgb(248, 182, 28);
    text-shadow: 0 0 20px rgba(247, 213, 64, 0.4);
}

@keyframes gradient-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.slide3a .subtitle {
    margin-top: 20px;
    color: #00f0ff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0,240,255,0.5);
}

.slide3a .prize {
    margin-top: 10px;
    color: #f5c542;
    font-size: 20px;
    font-weight: 600;
}


.slide3a .prize-cards {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}

.slide3a .card {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    width: 200px;
    min-height: 150px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.slide3a .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f5c542, transparent);
}

.slide3a .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.slide3a .card:hover {
    transform: translateY(-10px) skewX(-3deg);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.5),
        0 0 30px rgba(245,197,66,0.2);
    border-color: #f5c542;
}

.slide3a .card:hover::after {
    left: 100%;
}

.slide3a .card.gold { border-color: #ffd700; }
.slide3a .card.silver { border-color: #c0c0c0; }
.slide3a .card.bronze { border-color: #cd7f32; }

.slide3a .card.gold::before { background: linear-gradient(90deg, transparent, #ffd700, transparent); }
.slide3a .card.silver::before { background: linear-gradient(90deg, transparent, #c0c0c0, transparent); }
.slide3a .card.bronze::before { background: linear-gradient(90deg, transparent, #cd7f32, transparent); }

.slide3a .card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 10px;
    color: white;
}

.slide3a .card p {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.slide3a .card span {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

.slide3a .button {
    --black-700: hsla(0 0% 12% / 1);
    --border_radius: 9999px;
    --transtion: 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform-origin: center;
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));
    transition: transform var(--transtion);
    margin-top: 40px;
    margin-left: 15px;
}

.slide3a .button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--black-700);
    border-radius: var(--border_radius);
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%);
    transition: all var(--transtion);
    z-index: 0;
}

.slide3a .button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
}

.slide3a .button:is(:hover, :focus-visible) {
    --active: 1;
}

.slide3a .button:active {
    transform: scale(1);
}

.slide3a .button .dots_border {
    --size_border: calc(100% + 2px);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;
    border-radius: var(--border_radius);
    z-index: -10;
}

.slide3a .button .dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2rem;
    background-color: white;
    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.slide3a .button .text_button {
    position: relative;
    z-index: 10;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

.slide3a .corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(245,197,66,0.4);
    pointer-events: none;
}

.slide3a .corner.tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.slide3a .corner.tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.slide3a .corner.bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.slide3a .corner.br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

@media (max-width: 1024px) {
    .slide3a .hero { padding: 0 50px; }
    .slide3a .hero-left img { width: 320px; }
    .slide3a .hero-right h1 { font-size: 55px; }
    .slide3a .card { width: 130px; padding: 15px; }
}

@media (max-width: 768px) {
    .slide3a .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 60px 20px 40px;
        text-align: center;
        justify-content: flex-start;
    }
    .slide3a .hero-left { 
        margin-bottom: 20px;
        padding-top: 0;
    }
    .slide3a .hero-left img { width: 280px; }
    .slide3a .hero-right { 
        max-width: 100%;
        padding: 0;
        margin-top: 10px;
    }
    .slide3a .hero-right h1 { font-size: 42px; }
    .slide3a .subtitle { font-size: 16px; }
    .slide3a .prize { font-size: 14px; }
    .slide3a .prize-cards { justify-content: center; gap: 15px; }
    .slide3a .card { width: 100px; padding: 12px; }
    .slide3a .card h3 { font-size: 14px; }
    .slide3a .card p { font-size: 16px; }
    .slide3a .card span { font-size: 10px; }
    .slide3a .corner { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .slide3a .hero { padding: 60px 15px; }
    .slide3a .hero-left img { width: 220px; }
    .slide3a .hero-right h1 { font-size: 32px; }
    .slide3a .subtitle { font-size: 14px; }
    .slide3a .prize { font-size: 12px; }
    .slide3a .prize-cards { gap: 10px; }
    .slide3a .card { width: 90px; padding: 10px; }
    .slide3a .card h3 { font-size: 12px; margin-bottom: 5px; }
    .slide3a .card p { font-size: 14px; }
    .slide3a .card span { font-size: 9px; }
}

@media (max-width: 320px) {
    .slide3a .hero-right h1 { font-size: 28px; }
    .slide3a .prize-cards { flex-direction: column; align-items: center; }
    .slide3a .card { width: 100%; max-width: 180px; }
}
