/* ============================================
   MODERN DESIGN SYSTEM - SHUBHAM999
   Premium Gaming Platform with Glassmorphism
   ============================================ */

/* CSS Variables for Design Tokens */
:root {
    /* Brand Colors - Vibrant & Modern */
    --primary: hsl(348, 100%, 61%);
    --primary-dark: hsl(348, 100%, 51%);
    --primary-light: hsl(348, 100%, 71%);
    --secondary: hsl(242, 77%, 67%);
    --accent: hsl(45, 100%, 51%);
    --success: hsl(142, 71%, 45%);

    /* Dark Theme Palette */
    --bg-primary: hsl(240, 21%, 7%);
    --bg-secondary: hsl(233, 24%, 12%);
    --bg-card: hsl(235, 21%, 16%);
    --bg-elevated: hsl(238, 18%, 20%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Text Colors */
    --text-primary: hsl(0, 0%, 98%);
    --text-secondary: hsl(240, 5%, 75%);
    --text-muted: hsl(240, 5%, 55%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(348, 100%, 61%) 0%, hsl(348, 100%, 51%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(242, 77%, 67%) 0%, hsl(262, 77%, 57%) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(45, 100%, 51%) 0%, hsl(45, 100%, 61%) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 59, 81, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);

    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(255, 59, 81, 0.4);
    --shadow-glow-strong: 0 0 60px rgba(255, 59, 81, 0.6);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: white;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--primary-light);
    opacity: 0.9;
}

/* ============================================
   NAVIGATION - Glassmorphism
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(15, 15, 30, 0.7);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-4) var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    height: 3.5rem;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 59, 81, 0.3));
    transition: transform var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(255, 59, 81, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-base);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    background: var(--glass-bg);
}

.nav-link:hover::before {
    width: 80%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-2);
}

.menu-bar {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   HERO SECTION - Full Screen Impact
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 59, 81, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 30, 0.8) 0%,
            rgba(26, 26, 46, 0.7) 50%,
            rgba(15, 15, 30, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-8);
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-strong);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-support {
    margin-top: var(--space-6);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

/* ============================================
   STATS SECTION - Animated
   ============================================ */

.stats-section {
    background: var(--bg-primary);
    padding: var(--space-16) var(--space-6);
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section {
    padding: var(--space-16) var(--space-6);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
}

.section-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   GAME RATES - Modern Card Grid
   ============================================ */

.game-rates-section {
    background: var(--bg-secondary);
}

.game-category {
    margin-bottom: var(--space-12);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-8);
    text-align: center;
    color: var(--text-primary);
}

.game-rates-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.game-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 0 20px rgba(255, 59, 81, 0.4));
    transition: all var(--transition-base);
}

.game-card:hover .game-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 59, 81, 0.6));
}

.game-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.game-ratio {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* ============================================
   MARKETS SECTION - Live Market Grid
   ============================================ */

.markets-section {
    background: var(--bg-primary);
}

.markets-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.market-card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.market-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.market-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 81, 0.05), transparent);
    transition: right 0.6s;
}

.market-card:hover::before {
    width: 8px;
    box-shadow: 0 0 20px var(--primary);
}

.market-card:hover::after {
    right: 100%;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.market-header {
    margin-bottom: var(--space-4);
}

.market-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.market-time {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.market-time i {
    color: var(--primary);
}

.market-code {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin: var(--space-6) 0;
    text-align: center;
}

.play-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.play-btn:hover::before {
    width: 400px;
    height: 400px;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.play-btn i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--bg-secondary);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-12);
    align-items: center;
}

.about-content {
    background: var(--bg-card);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--space-6);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   FOOTER - Modern & Informative
   ============================================ */

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-12) var(--space-6);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-10);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    width: 150px;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 0 10px rgba(255, 59, 81, 0.3));
}

.footer-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all var(--transition-base);
    padding: var(--space-2) 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
/* duplicate language-support removed - using definition at line 433 */
    letter-spacing: 1px;
}

/* ============================================
   STATS SECTION - Animated
   ============================================ */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        background: rgba(15, 15, 30, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-8);
        box-shadow: var(--shadow-xl);
        border-left: 1px solid var(--glass-border);
        transition: right var(--transition-slow);
        height: calc(100vh - 70px);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero {
        min-height: 80vh;
    }

    .game-rates-grid,
    .markets-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .navbar-container {
        padding: var(--space-3) var(--space-4);
    }

    .logo-img {
        height: 2.5rem;
    }

    .section {
        padding: var(--space-12) var(--space-4);
    }
}

/* ============================================
   LIVE INDICATOR - Pulsating Animation
   ============================================ */

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 59, 81, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 59, 81, 0.3);
    margin-right: 0.75rem;
    animation: pulse-border 2s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

.live-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px var(--primary);
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 20px var(--primary);
    }
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: rgba(255, 59, 81, 0.3);
        background: rgba(255, 59, 81, 0.1);
    }

    50% {
        border-color: rgba(255, 59, 81, 0.5);
        background: rgba(255, 59, 81, 0.15);
    }
}
/* ============================================
   AUTO-SCROLLING IMAGE CAROUSEL
   ============================================ */

.carousel-section {
    overflow: hidden;
    background: var(--bg-secondary);
    padding: var(--space-8) 0;
}

.carousel-track {
    display: flex;
    width: calc(280px * 6);
    animation: carouselScroll 15s linear infinite;
}

.carousel-slide {
    flex-shrink: 0;
    width: 280px;
    padding: 0 var(--space-4);
}

.carousel-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 3));
    }
}

.carousel-section:hover .carousel-track {
    animation-play-state: paused;
}

/* ============================================
   FEATURES ROW - Static Images
   ============================================ */

.features-row {
    background: var(--bg-secondary);
    padding: var(--space-8) var(--space-6);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.feature-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}
