/* DESIGN SYSTEM & VARIABLES */
:root {
    --bg-color: #030712; /* Nuit profonde */
    --neon-cyan: #00f3ff;
    --neon-purple: #b026ff;
    --neon-green: #00ff88;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

body {
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* NOISE & AMBIENT LIGHTS */
.noise-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}

.main-light {
    top: -10%; left: -10%;
    width: 60vw; height: 60vw;
    background: rgba(0, 243, 255, 0.12);
}

.secondary-light {
    top: 30%; right: -10%;
    width: 50vw; height: 50vw;
    background: rgba(176, 38, 255, 0.12);
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

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

/* HEADER & LOGO */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    z-index: 100;
    display: flex;
    align-items: center;
}

.main-logo {
    max-height: 150px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    position: relative;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.badge-neon {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    letter-spacing: 1px;
}

.glitch-text {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.primary-glow {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
}

.primary-glow:hover {
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
    transform: translateY(-3px) scale(1.02);
}

.secondary-glass {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* HERO VISUAL (TV / SCREEN) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    z-index: 1;
}

.tv-mockup {
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 80px rgba(0, 243, 255, 0.15);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
}

.tv-screen {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.tv-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02); 
}

.tv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
}

.play-btn-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    padding-left: 5px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn-glow:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 255, 255, 0.25);
}

/* MARQUEE BANDEAU (Le style Journal TV) */
.marquee-wrapper {
    background: var(--neon-cyan);
    padding: 15px 0;
    transform: skewY(-2deg) translateY(-20px);
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.4);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    padding-right: 2rem;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    white-space: nowrap;
    letter-spacing: 2px;
}

.marquee-content span {
    margin-right: 2rem;
}

.marquee-content .dot {
    opacity: 0.5;
    font-size: 1.2rem;
}

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

/* COMPETITIONS SECTION */
.competitions-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.neon-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.league-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.league-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.league-card:hover img {
    transform: scale(1.1);
}

.league-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.league-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.3rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.league-overlay p {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.league-card:hover .league-overlay h3 {
    transform: translateY(0);
}

.league-card:hover .league-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* SHOWCASE SECTION (BENTO GRID SPORTS & VOD) */
.showcase-section {
    padding: 2rem 5% 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.3);
    z-index: 5;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
}

.bento-content.centered {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: none;
    width: 100%;
    padding: 2rem;
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.bento-item p {
    color: #e5e7eb;
    font-size: 1.05rem;
    line-height: 1.5;
}

.icon-zap {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 25px var(--neon-purple));
}

.bento-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(176,38,255,0.25), rgba(0,243,255,0.25));
    z-index: 1;
}

.large-item {
    grid-column: span 2;
    grid-row: span 2;
}

/* SPOTLIGHT EFFECT */
.spotlight-card {
    position: relative;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: radial-gradient(
        500px circle at var(--mouse-x) var(--mouse-y), 
        rgba(0, 243, 255, 0.4),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.spotlight-card:hover::before {
    opacity: 1;
}


/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    margin-top: 3rem;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.step-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #fff;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* APPAREILS COMPATIBLES */
.devices-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(255,255,255,0.01), rgba(0,243,255,0.03), rgba(255,255,255,0.01));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.device-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.device-item:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: translateX(10px);
}

.device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.neon-icon svg {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.6));
    transition: all 0.3s ease;
}

.device-item:hover .neon-icon svg {
    color: var(--neon-purple);
    filter: drop-shadow(0 0 15px rgba(176, 38, 255, 0.8));
    transform: scale(1.1);
}


/* PRICING SECTION */
.pricing-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    align-items: stretch;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 320px;
    max-width: 380px;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pricing-card .duration {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.price-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.price-container .currency {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.price-container .price {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.pricing-card .desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list .check {
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

/* ULTRA CARD (Premium) */
.ultra-card {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 60px rgba(176, 38, 255, 0.15);
}

.ultra-card:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 20px 60px rgba(176, 38, 255, 0.25);
}

.neon-border-animated {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 10;
    pointer-events: none;
}

.best-value {
    position: absolute;
    top: -15px; 
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.9), rgba(0, 243, 255, 0.5));
    color: white;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.6), 
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(176, 38, 255, 0.5);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    z-index: 10;
    white-space: nowrap;
}

.badge-cyan {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.9), rgba(176, 38, 255, 0.3));
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.6), 
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 243, 255, 0.5);
    color: #fff;
}

.ultra-card .duration {
    color: var(--neon-purple);
}

/* WHATSAPP BTNS */
.whatsapp-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white;
    width: 100%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(90deg, #128C7E, #25D366);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.glow-btn {
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.5);
    background: linear-gradient(90deg, var(--neon-purple), #7928ca);
}

.glow-btn:hover {
    background: linear-gradient(90deg, #7928ca, var(--neon-purple));
    box-shadow: 0 0 35px rgba(176, 38, 255, 0.8);
}

/* FAQ SECTION */
.faq-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: none;
    margin: 0;
    color: #fff;
}

.faq-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: 300;
    transition: transform 0.4s ease, color 0.4s ease;
    line-height: 0.5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--neon-purple);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

/* MEGA FOOTER */
.mega-footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 5% 2rem;
    margin-top: 4rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
}

.brand-col p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.6;
    max-width: 320px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.secure-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.pay-badge {
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.wa-icon {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 8rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .tv-mockup {
        transform: rotateY(-5deg) rotateX(5deg);
        margin-top: 3rem;
        animation: floatMobile 6s ease-in-out infinite;
    }
    @keyframes floatMobile {
        0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0px); }
        50% { transform: rotateY(-5deg) rotateX(5deg) translateY(-15px); }
    }
    .ultra-card {
        transform: scale(1);
        animation: ultraPulseMobile 3s infinite ease-in-out;
    }
    @keyframes ultraPulseMobile {
        0%, 100% { box-shadow: 0 0 30px rgba(176, 38, 255, 0.15); }
        50% { box-shadow: 0 0 50px rgba(176, 38, 255, 0.5); }
    }
    .ultra-card:hover {
        transform: translateY(-10px);
    }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .large-item {
        grid-column: span 1;
        grid-row: span 1;
        height: 400px;
    }
    .bento-item { height: 320px; }
    
    .marquee-wrapper {
        transform: skewY(-2deg) translateY(0);
        margin-top: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .main-logo {
        max-height: 100px;
    }
    
    .glitch-text {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .leagues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .league-card {
        height: 160px;
    }
    
    .league-overlay {
        padding: 0.8rem;
    }
    
    .league-overlay h3 {
        font-size: 1rem;
    }
    
    .league-overlay p {
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.6rem;
    }
    
    .price-container .price {
        font-size: 3.2rem;
    }
    
    .price-container .currency {
        font-size: 1.4rem;
    }
    
    .pricing-card .desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .features-list {
        margin-bottom: 1.5rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
        gap: 10px;
        margin-bottom: 0.8rem;
    }
    

    .payment-methods {
        justify-content: center;
    }
    
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    .wa-icon {
        width: 30px;
        height: 30px;
    }
    
    /* Devices Grid Mobile 2 columns */
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .device-item {
        padding: 0.8rem;
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .device-icon {
        margin-right: 0;
        font-size: 1.8rem;
    }
}

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 400px;
    background: var(--bg-color);
    padding: 2.5rem;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--neon-cyan);
}

#modal-pack-title {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-cyan);
}

#pack-quantity {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    outline: none;
}

.modern-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    appearance: none;
}

.modern-select option {
    background: var(--bg-color);
    color: #fff;
}

.modern-select:focus {
    border-color: var(--neon-cyan);
}

.full-width-btn {
    width: 100%;
    margin-top: 1rem;
}
