/*
Theme Name: Novastreamth-FB
Author: NovaStream
Description: Custom WordPress theme for NovaStream TV landing page.
Version: 1.0
*/
:root {
    /* Color Palette */
    --bg-dark: #0A0A0C;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --accent-red: #00E5FF;
    --accent-orange: #6366F1;
    --accent-gradient: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #D97706 100%);
    --whatsapp-green: #25D366;
    
    /* WhatsApp UI Colors */
    --wa-header: #075e54;
    --wa-bg: #e5ddd5;
    --wa-bubble-in: #ffffff;
    --wa-bubble-out: #dcf8c6;
    --wa-text: #303030;
    --wa-meta: #999999;
    --wa-tick: #34B7F1;
    
    /* Typography */
    --font-heading: 'Anton', sans-serif;
    --font-subheading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 6rem;
    
    /* Effects */
    --glass-blur: blur(16px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.1;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-red);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.center {
    text-align: center;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-gradient {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
    background: linear-gradient(135deg, #33EEFF 0%, #818CF8 100%);
}

.btn-primary {
    background: white;
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    width: 100%;
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-icon {
    color: var(--accent-red);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.8;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.star-icon {
    color: #FBBF24;
    font-size: 1.25rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
}

.cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    color: var(--accent-red);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.highlight-text {
    color: white;
    font-weight: 600;
}

.cta-trigger-mobile {
    display: none;
}

/* Trial Form Card */
.hero-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.wa-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-icon {
    width: 48px;
    height: 48px;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.card-header h3 {
    font-family: var(--font-subheading);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

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

.scarcity-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 2rem;
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scarcity-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(0, 229, 255, 0.2);
    z-index: 1;
}

.scarcity-text {
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
    font-weight: 500;
}

.scarcity-text strong {
    color: var(--accent-red);
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

.country-dropdown {
    position: relative;
    border-right: 1px solid var(--border-color);
}

.country-select {
    appearance: none;
    background: transparent;
    color: white;
    border: none;
    padding: 1rem 0.5rem 1rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    width: 90px;
}

.country-select option {
    background: var(--bg-dark);
    color: white;
}

#phone-number {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    width: 100%;
}

#phone-number::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.error-msg {
    color: var(--accent-red);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: none;
}

.trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 1rem;
    vertical-align: middle;
}

.dot {
    opacity: 0.5;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

/* Any Device Section */
.device-section {
    padding: var(--section-spacing) 0;
}

.device-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.device-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.device-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.device-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.device-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list-icon {
    color: var(--accent-red);
}

.device-mockup {
    position: relative;
    height: 400px;
}

/* Pure CSS Device Mockups */
.mockup-tv {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 80%;
    background: #111;
    border: 12px solid #222;
    border-bottom-width: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.mockup-tv-stand {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #333;
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.bg-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0A0A0C, #2a0808);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-play {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.mockup-play span {
    font-size: 32px;
    color: white;
}

.mockup-phone {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 65%;
    background: #000;
    border: 6px solid #333;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-radius: 20px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.6);
    overflow: hidden;
}

.bg-mockup-phone {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366F1, #00E5FF);
    opacity: 0.9;
}

/* Sports Section */
.sports-section {
    padding: var(--section-spacing) 0;
    background: rgba(255, 255, 255, 0.01);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sport-card {
    position: relative;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.sport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.2);
}

.sport-icon-bg {
    position: absolute;
    top: -10%;
    right: -10%;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.1);
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.5s ease, color 0.5s ease;
}

.sport-card:hover .sport-icon-bg {
    transform: rotate(0deg) scale(1.1);
    color: rgba(255, 255, 255, 0.2);
}

.sport-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
}

.sport-content h3 {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.sport-content p {
    color: #ccc;
    font-size: 0.875rem;
}

/* Background Gradients for Sports */
.bg-football { background: linear-gradient(135deg, #10b981, #047857); }
.bg-combat { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.bg-racing { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-us { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-cricket { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-tennis { background: linear-gradient(135deg, #14b8a6, #0f766e); }


/* Real Reviews Section - CSS WhatsApp UI */
.reviews-section {
    padding: var(--section-spacing) 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.reviews-eyebrow {
    color: #FBBF24;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.reviews-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.rating-block-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 500;
}

.marquee-wrapper {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 0;
}

.row-1 {
    animation: scroll-left 40s linear infinite;
}

.row-2 {
    animation: scroll-right 40s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Half width assuming exact duplicates */
}

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

/* WhatsApp Mockup Cards */
.chat-card {
    width: 300px;
    height: 380px;
    background: var(--wa-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.chat-status-bar {
    background: #054d44;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
}

.status-icons {
    display: flex;
    gap: 2px;
    align-items: center;
}

.status-icons span {
    font-size: 14px;
}

.chat-header {
    background: var(--wa-header);
    color: white;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 2;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
}

.user-number {
    font-size: 0.95rem;
    font-weight: 600;
}

.redacted {
    background: black;
    color: black;
    padding: 0 2px;
    border-radius: 2px;
}

.chat-actions {
    display: flex;
    gap: 0.75rem;
}

.chat-actions span {
    font-size: 20px;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    /* Subtle background doodle pattern using radial gradient */
    background-image: radial-gradient(circle at 10px 10px, rgba(0,0,0,0.05) 2px, transparent 0);
    background-size: 40px 40px;
}

.bubble {
    max-width: 85%;
    padding: 0.4rem 0.6rem 0.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.3;
    position: relative;
    color: var(--wa-text);
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.bubble-in {
    background: var(--wa-bubble-in);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.bubble-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: var(--wa-bubble-in);
    border-left: 0;
}

.bubble-out {
    background: var(--wa-bubble-out);
    align-self: flex-end;
    border-top-right-radius: 0;
}

.bubble-out::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: var(--wa-bubble-out);
    border-right: 0;
}

.bubble p {
    margin-bottom: 0.2rem;
}

.timestamp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--wa-meta);
    float: right;
    margin-top: 4px;
    margin-left: 8px;
}

.ticks {
    font-size: 0.75rem;
    letter-spacing: -2px;
}

.ticks.read {
    color: var(--wa-tick);
}

.highlight {
    background-color: rgba(255, 235, 59, 0.4);
    padding: 0 2px;
    border-radius: 2px;
}

/* Map Section */
.map-section {
    padding: var(--section-spacing) 0;
}

.map-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.svg-dot-map {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}

.server-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.pulse-ring-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    animation: ping-map 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes ping-map {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    75%, 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Approximate city positions on the dotted map */
.dot-london    { top: 22%; left: 45%; }
.dot-madrid    { top: 28%; left: 44%; }
.dot-newyork   { top: 30%; left: 28%; }
.dot-toronto   { top: 28%; left: 26%; }
.dot-saopaulo  { top: 70%; left: 33%; }
.dot-dubai     { top: 40%; left: 62%; }
.dot-tokyo     { top: 33%; left: 85%; }
.dot-sydney    { top: 78%; left: 85%; }

.map-arcs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.arc-line {
    animation: dash-flow 3s linear infinite;
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -10;
    }
}

/* Why Us Section */
.why-us-section {
    padding: var(--section-spacing) 0;
    background: rgba(255, 255, 255, 0.01);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.feature-icon span {
    font-size: 32px;
}

.feature-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) 0;
}

.faq-container {
    max-width: 800px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.accordion-header .icon {
    transition: background 0.3s ease;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 229, 255, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: max-content;
    background: #0f1423; /* Darker navy */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ccc;
    transition: background 0.2s, color 0.2s;
}

.lang-option:hover {
    background: rgba(0, 229, 255, 0.15);
    color: white;
}

/* Scrollbar for language dropdown */
.lang-dropdown::-webkit-scrollbar {
    width: 6px;
}
.lang-dropdown::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
}
.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}
.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.4);
}

.accordion-item.active .icon {
    transform: rotate(180deg);
    color: var(--accent-red);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    background: rgba(0,0,0,0.5);
}

.footer-cta {
    margin-bottom: 4rem;
    max-width: 600px;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    z-index: 99;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: rgba(30, 30, 35, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--whatsapp-green);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: slideInLeft 0.3s ease-out forwards;
    transform: translateX(-150%);
}

.toast.hiding {
    animation: slideOutLeft 0.3s ease-in forwards;
}

@keyframes slideInLeft {
    from { transform: translateX(-150%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-150%); opacity: 0; }
}

.toast-icon {
    color: var(--whatsapp-green);
}

.toast-content p {
    font-size: 0.875rem;
    color: white;
}

.toast-content span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .device-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-trigger-mobile {
        display: inline-flex;
    }
    
    .nav-links {
        display: none;
    }

    .sports-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }

    .sticky-mobile-bar {
        display: block;
    }
    
    body {
        padding-bottom: 5rem; /* space for sticky bar */
    }

    .toast-container {
        bottom: 80px; /* Above sticky bar */
    }

    /* Stack marquees on mobile */
    .marquee-wrapper {
        gap: 1rem;
    }

    .marquee-track {
        flex-direction: column;
        width: 100%;
        align-items: center;
        animation: none !important; /* Stop auto-scroll on mobile to allow natural scrolling */
        gap: 1rem;
    }

    .chat-card {
        width: 100%;
        max-width: 350px;
    }
}
