/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-purple: #8635fe;
    --primary-red: #FF0000;
    --primary-gold: #FFD700;
    --accent-green: #00FF00;
    --whatsapp-green: #25D366;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #666666;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #000000 0%, #1a0033 50%, #000000 100%);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==================== PARTICLES BACKGROUND ==================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-up 8s infinite ease-in;
    opacity: 0.6;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5px 20px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(134, 53, 254, 0.3);
    border-bottom: 2px solid rgba(134, 53, 254, 0.5);
}

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

.navbar-logo {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(134, 53, 254, 0.6));
    margin-top: 5px;
}

/* ==================== STICKY TOP BAR ==================== */
.sticky-top-bar {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    background: rgba(134, 53, 254, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 16px;
    z-index: 999;
    transition: top 0.3s ease;
    box-shadow: 0 4px 20px rgba(134, 53, 254, 0.4);
}

.sticky-top-bar.visible {
    top: 0;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 428px;
    margin: 0 auto;
}

.sticky-logo {
    height: 50px;
    width: auto;
}

.btn-get-id {
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-get-id:active {
    transform: scale(0.95);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 20px 20px;
    background: radial-gradient(circle at top, var(--primary-purple) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #1a0033 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 100%;
}

/* Hero Carousel Styles */
.hero-carousel-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(134, 53, 254, 0.6);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-gold);
    border-color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-gold);
}

.dot:hover {
    background: var(--white);
}

.hero-tagline {
    margin-bottom: 20px;
}

.hero-tagline h1 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-gold), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(134, 53, 254, 0.8));
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(134, 53, 254, 0.8));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(134, 53, 254, 1));
    }
}

.kpl-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 14px;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
    margin-top: 15px;
    /* Add margin to separate from primary button */
}

.btn-red:active {
    transform: scale(0.95);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
    }
}

.live-counter {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.cricket-ball {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #CC0000 0%, #990000 100%);
    border-radius: 50%;
    bottom: 20%;
    right: 10%;
    animation: bounce-ball 3s infinite;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.5);
}

.cricket-ball::before,
.cricket-ball::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    top: 50%;
    left: 0;
}

.cricket-ball::after {
    transform: rotate(30deg);
}

@keyframes bounce-ball {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* ==================== FEATURES CAROUSEL ==================== */
.features-section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 30px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.feature-card {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(134, 53, 254, 0.4);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
}

.gold-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-top: 10px;
}

.games-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 24px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-purple), #6a1bb8);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(134, 53, 254, 0.4);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.btn-secondary:active {
    transform: scale(0.95);
}

/* ==================== TOURNAMENT SECTION ==================== */
.tournament-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #1a0033 0%, #330000 100%);
    position: relative;
    z-index: 1;
}

.countdown-container {
    text-align: center;
    margin-bottom: 40px;
}

.kpl-badge {
    margin-bottom: 20px;
}

.kpl-badge img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

.countdown-banner {
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--black);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.countdown-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
}

.fever-text {
    font-size: 18px;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
    border: 2px solid var(--white);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 80px;
    border: 2px solid var(--primary-gold);
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-gold);
}

.timer-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-top: 5px;
}

.players-montage {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== GAMES SECTION ==================== */
.games-section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-grid {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-image {
    width: 100%;
    height: auto;
    display: block;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    font-size: 32px;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==================== KPL SCHEDULE SECTION ==================== */
.kpl-schedule-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #1a0033 0%, #000000 100%);
    position: relative;
    z-index: 1;
}

.schedule-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(134, 53, 254, 0.3);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.schedule-card:active {
    transform: scale(0.98);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(134, 53, 254, 0.4);
}

.schedule-card.highlight {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.schedule-card.final {
    border: 3px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 0, 0, 0.1));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.schedule-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-date::before {
    content: '📅';
    font-size: 16px;
}

.schedule-match {
    margin-bottom: 20px;
}

.team {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.time {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.time::before {
    content: '⏰ ';
}

.venue {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}

.venue::before {
    content: '📍 ';
}

.bet-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), #6a1bb8);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(134, 53, 254, 0.4);
    transition: all 0.3s ease;
}

.bet-now-btn:active {
    transform: scale(0.95);
}

.bet-now-btn.gold {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8);
    }
}

.schedule-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
}

.schedule-cta p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.5;
}


/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    position: relative;
    z-index: 1;
}

.services-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scrollbar-width: none;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.service-box {
    min-width: 200px;
    background: var(--black);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-gold);
}

/* ==================== KPL SECTION ==================== */
.kpl-section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.kpl-content {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.kpl-promo-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== HELP SECTION ==================== */
.help-section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.help-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.help-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.help-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

.btn-help {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.urgency-triggers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trigger-item {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--primary-red);
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.highlight {
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: 900;
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.proof-stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

/* ==================== FINAL CTA ==================== */
.final-cta-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 30px;
}

.btn-final {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    margin-bottom: 20px;
}

.instant-id-badge {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-green);
    animation: blink 1.5s infinite;
}

/* ==================== FOOTER ==================== */
.footer-section {
    padding: 40px 20px;
    background: var(--black);
    border-top: 2px solid var(--primary-purple);
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.website-link,
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.website-link:hover,
.whatsapp-link:hover {
    color: var(--primary-purple);
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--gray);
}

/* ==================== FLOATING WHATSAPP ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}

.floating-whatsapp:active {
    transform: scale(0.9);
}

.floating-whatsapp i {
    font-size: 32px;
    color: var(--white);
}

.online-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 320px) {
    .hero-title {
        font-size: 28px;
    }

    .countdown-number {
        font-size: 60px;
    }

    .timer-box {
        min-width: 70px;
        padding: 12px 15px;
    }

    .timer-value {
        font-size: 28px;
    }
}

@media (min-width: 429px) {

    .hero-section,
    .features-section,
    .tournament-section,
    .games-section,
    .services-section,
    .kpl-section,
    .help-section,
    .social-proof-section,
    .final-cta-section,
    .footer-section {
        max-width: 428px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==================== SAFE AREA (NOTCHED DEVICES) ==================== */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .floating-whatsapp {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
    }
}