/* Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* --- WHATSAPP FLOATING BUTTON (Compact & Premium) --- */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

/* --- REFINED PRELOADER (BPL INSPIRED) --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease-in-out;
}

.loader-content {
    text-align: center;
}

.spinner-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.spinner {
    width: 100px;
    height: 100px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ed1c24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-line {
    width: 150px;
    height: 3px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 10px;
}

.loader-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ed1c24;
    animation: loader-line-anim 1.2s forwards linear;
}

@keyframes loader-line-anim {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Page Content Transition */
#content-section {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#content-section.fade-in {
    opacity: 1;
}

/* --- ENTRANCE ANIMATIONS --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#content-section.fade-in .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.animate-pop {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#content-section.fade-in .animate-pop {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.2s !important; }
.delay-2 { transition-delay: 0.4s !important; }
.delay-3 { transition-delay: 0.6s !important; }

/* --- PREMIUM HEADER --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.03);
}

.nav-logo { height: 50px; margin-right: 15px; }
.brand-name { font-size: 1.5rem; font-weight: 900; color: #000; text-transform: uppercase; }

/* --- NAVIGATION LINKS --- */
.sidebar-logo {
    display: none !important;
}

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 35px; }
.nav-links li a {
    color: #444; text-decoration: none; font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1px; position: relative; padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: #ed1c24; transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links li a:hover { color: #ed1c24; }
.nav-links li a:hover::after { width: 100%; }

/* Special style for Register in Header */
.nav-links li a[href="register.html"] {
    background-color: #ed1c24;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.2);
}
.nav-links li a[href="register.html"]::after { display: none; }
.nav-links li a[href="register.html"]:hover { background-color: #000; transform: translateY(-2px); }

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover; background-position: center; min-height: 80vh;
    display: flex; justify-content: center; align-items: center; text-align: center; padding: 40px 20px;
}

.hero-logo { height: 150px; margin-bottom: 20px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.hero h1 { font-size: 3.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; color: #555; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* --- PREMIUM COUNTDOWN TIMER DESIGN --- */
.countdown-container {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.03);
    padding: 30px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.countdown-container h3 {
    font-size: 0.9rem;
    color: #ed1c24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 900;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-block {
    background: #fff;
    min-width: 90px;
    padding: 15px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.time-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.03);
}

.time-block span {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}

.time-block p {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* Hero CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Animated Register Button (BPL Style) */
.register-btn-animated {
    background: linear-gradient(90deg, #ed1c24 70%, #ff4d4d 100%);
    color: #fff;
    text-decoration: none;
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
    transition: all 0.3s ease;
}

.reg-arrow {
    font-size: 1.5rem;
    animation: arrow-loop 1s infinite;
}

@keyframes arrow-loop {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.register-btn-animated:hover {
    transform: translateY(-5px) scale(1.02);
    background: #000;
}

/* Login Outline Button */
.login-btn-outline {
    background: transparent;
    color: #333;
    text-decoration: none;
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #ed1c24;
    transition: all 0.3s ease;
}

.login-btn-outline:hover {
    background: #ed1c24;
    color: #fff;
    transform: translateY(-5px);
}

/* --- TICKER (NEWS BAR) --- */
.ticker-wrap {
    width: 100%;
    background: #ed1c24;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #000;
}

.ticker {
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.ticker span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 100%;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- STATISTICS --- */
.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.stat-box h2 { font-size: 3rem; color: #ed1c24; font-weight: 900; }
.stat-box p { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }

/* --- PRIZES & AWARDS --- */
.prizes-section { padding: 100px 20px; text-align: center; background: #fff; }
.section-title h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.section-title p { color: #666; margin-bottom: 50px; }

.prize-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.prize-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.prize-card:hover { transform: translateY(-10px); }
.prize-card.winner { border-top: 5px solid #ffd700; background: linear-gradient(to bottom, #fff9e6, #fff); }
.prize-card.runner { border-top: 5px solid #c0c0c0; }
.prize-card.indiv { border-top: 5px solid #ed1c24; }

.prize-title { font-weight: 900; text-transform: uppercase; color: #333; margin-bottom: 15px; font-size: 1.2rem; }
.prize-amt { font-size: 2.5rem; font-weight: 900; color: #ed1c24; margin-bottom: 10px; }

/* --- VENUE & INFO CARDS --- */
.venue-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover; background-position: center; color: #fff; text-align: center;
}

.venue-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 50px; border-radius: 20px; max-width: 800px; margin: 0 auto; }
.venue-info h3 { font-size: 2rem; color: #ed1c24; margin-bottom: 20px; }

/* --- PREMIUM INFO CARDS --- */
.info-section { display: flex; justify-content: space-around; padding: 100px 20px; max-width: 1300px; margin: 0 auto; flex-wrap: wrap; background-color: #fcfcfc; }
.info-card {
    background: #fff; background-image: radial-gradient(circle at top right, rgba(237, 28, 36, 0.03), transparent 70%);
    padding: 50px 35px; border-radius: 24px; width: 31%; margin-bottom: 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid #f0f0f0;
    position: relative; overflow: hidden; z-index: 1;
}
.info-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background-color: #ed1c24; transition: height 0.4s ease; }
.info-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); border-color: rgba(237, 28, 36, 0.15); }
.info-card:hover::before { height: 100%; }
.info-card h3 { color: #111; margin-bottom: 18px; font-size: 1.45rem; font-weight: 900; text-transform: uppercase; }
.info-card p { color: #555; font-size: 1rem; line-height: 1.8; }

/* --- SCROLLING SECTIONS (Teams & Sponsors) --- */
.scrolling-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.scrolling-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #111;
}

.scroll-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.scroll-content {
    display: flex;
    gap: 40px;
    animation: scroll-left 25s linear infinite;
}

.scroll-item {
    flex: 0 0 auto;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.scroll-item:hover {
    transform: translateY(-5px);
    border-color: #ed1c24;
    box-shadow: 0 12px 30px rgba(237, 28, 36, 0.1);
}

.scroll-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.scroll-item span {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #222;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsors-scroll {
    background-color: #f9f9f9;
}

.sponsor-card {
    width: 220px;
}

.sponsor-card img {
    width: 150px;
    height: 70px;
    margin-bottom: 0;
}

/* --- PREMIUM BROCHURE STACK & MODAL --- */
.brochure-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.brochure-stack-container {
    max-width: 400px;
    margin: 40px auto;
    cursor: pointer;
    perspective: 1000px;
}

.brochure-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.4;
    transition: transform 0.5s ease;
}

.main-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 5;
    border: 1px solid #eee;
}

.stack-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    transition: transform 0.5s ease;
}

.layer-1 { transform: rotate(3deg) translate(10px, 5px); z-index: 4; }
.layer-2 { transform: rotate(6deg) translate(20px, 10px); z-index: 3; }

.brochure-stack-container:hover .main-thumb { transform: translateY(-10px); }
.brochure-stack-container:hover .layer-1 { transform: rotate(5deg) translate(15px, 8px); }
.brochure-stack-container:hover .layer-2 { transform: rotate(10deg) translate(30px, 15px); }

.view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237, 28, 36, 0.7);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.view-overlay span {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
    padding: 10px 25px;
}

.brochure-stack-container:hover .view-overlay { opacity: 1; }

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}

.slide-container {
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 100001;
    transition: color 0.3s;
}

.close-modal:hover { color: #ed1c24; }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    margin-top: -30px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(255, 255, 255, 0.1);
}

.next { right: -60px; border-radius: 3px 0 0 3px; }
.prev { left: -60px; }

.prev:hover, .next:hover { background-color: #ed1c24; }

.slide-counter {
    color: #fff;
    font-size: 1rem;
    margin-top: 20px;
    font-weight: 700;
    background: rgba(237, 28, 36, 0.8);
    padding: 5px 20px;
    border-radius: 50px;
}

/* --- MISSION SECTION --- */
.mission-section {
    padding: 100px 20px;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    text-align: left;
}

.mission-list {
    list-style: none;
    margin-bottom: 30px;
}

.mission-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ed1c24;
    font-weight: 900;
    font-size: 1.2rem;
}

.mission-list li strong {
    color: #111;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.mission-footer {
    border-top: 1px solid #eee;
    padding-top: 25px;
    font-style: italic;
    color: #ed1c24;
    font-weight: 700;
    text-align: center;
}

/* --- RULES SECTION --- */
.rules-section {
    padding: 80px 20px;
    background: #fffbe7;
    text-align: center;
}

.rules-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 90, 10, 0.05);
    border: 1px solid #ffeeba;
    text-align: left;
}

.rules-container h3 {
    color: #8a5a0a;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid #ffeeba;
    padding-bottom: 10px;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 12px 0;
    border-bottom: 1px solid #fcf2d4;
    color: #8a5a0a;
    font-weight: 500;
}

.rules-list li:last-child {
    border-bottom: none;
}

/* --- LEAGUE STRUCTURE (TABLES) --- */
.structure-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.cards-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.cards-table th, .cards-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
}

.cards-table th {
    background: #fdfdfd;
    color: #ed1c24;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    width: 35%;
}

.cards-table tr:last-child td, .cards-table tr:last-child th {
    border-bottom: none;
}

.cards-table td {
    color: #444;
    font-weight: 500;
}

/* --- FOOTER --- */
footer { background-color: #000; color: #fff; text-align: center; padding: 30px 0; font-size: 0.9rem; }

/* --- MOBILE STYLES --- */
#nav-check { display: none !important; }
.nav-btn { display: none; flex-direction: column; justify-content: space-around; width: 28px; height: 18px; cursor: pointer; z-index: 2000; }
.nav-btn span { width: 28px; height: 3px; background-color: #333; border-radius: 10px; transition: all 0.3s linear; }

@media (max-width: 768px) {
    .nav-btn { display: flex; }
    .nav-links {
        position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
        background-color: #ffffff; flex-direction: column; align-items: flex-start;
        padding: 0; z-index: 1060; display: flex;
        transition: left 0.4s ease-in-out; visibility: hidden;
    }
    .sidebar-logo {
        display: flex !important; align-items: center; padding: 30px 25px; width: 100%; border-bottom: 1px solid #f0f0f0; margin-bottom: 20px;
    }
    .sidebar-logo img { height: 50px; width: auto; margin-right: 15px; }
    .sidebar-logo span { font-weight: bold; color: #ed1c24; font-size: 1.3rem; }

    .nav-links li { margin: 0; width: 100%; padding: 15px 25px; }
    .nav-links li a { font-size: 1.1rem; width: 100%; color: #333; }
    .nav-links li a[href="register.html"] { display: inline-block; width: auto; }

    #nav-check:checked ~ .nav-links { left: 0; visibility: visible; box-shadow: 10px 0 30px rgba(0,0,0,0.1); }
    #nav-check:checked ~ .nav-btn span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    #nav-check:checked ~ .nav-btn span:nth-child(2) { opacity: 0; }
    #nav-check:checked ~ .nav-btn span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .hero { min-height: 35vh; padding: 15px 10px; }
    .hero-logo { height: 60px; margin-bottom: 5px; }
    .hero h1 { font-size: 1.4rem; margin-bottom: 5px; }
    .hero p { font-size: 0.8rem; margin-bottom: 10px; }

    .countdown-container { padding: 10px; margin-bottom: 12px; border-radius: 12px; }
    .time-block { min-width: 50px; padding: 4px 2px; border-radius: 8px; }
    .time-block span { font-size: 1.2rem; }
    .time-block p { font-size: 0.5rem; }

    .register-btn-animated { padding: 8px 18px; font-size: 0.85rem; }
    .login-btn-outline { padding: 8px 18px; font-size: 0.85rem; }
    .cta-buttons { gap: 8px; }

    .prize-card, .info-card { width: 100%; }
    .stats-section { flex-direction: column; gap: 30px; }

    /* WhatsApp Mobile */
    .whatsapp-float {
        width: 40px; height: 40px; bottom: 15px; right: 15px;
    }
    .whatsapp-float img { width: 22px; height: 22px; }

    /* Modal & Brochure Mobile */
    .brochure-stack-container {
        max-width: 280px; /* Reduced for mobile screens */
    }
    .view-overlay {
        opacity: 1; /* Always visible on mobile for better UX */
        background: rgba(237, 28, 36, 0.4);
    }
    .view-overlay span {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .modal-content {
        width: 95%;
        height: 80vh;
    }
    .slide-container {
        height: 70%;
    }
    .next, .prev {
        padding: 12px;
        font-size: 20px;
        background: rgba(0, 0, 0, 0.5);
        bottom: 20px;
        top: auto; /* Move buttons to bottom on mobile for easier thumb access */
        margin-top: 0;
    }
    .next { right: 20px; }
    .prev { left: 20px; }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
    .slide-counter {
        margin-top: 60px; /* Adjust for bottom arrows */
    }

    .mission-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .mission-list li {
        font-size: 1rem;
    }
    .mission-list li strong {
        font-size: 1.1rem;
    }

    .cards-table th {
        width: 45%;
        padding: 15px;
        font-size: 0.8rem;
    }
    .cards-table td {
        padding: 15px;
        font-size: 0.85rem;
    }
}
