/* ============================================
   LOTTO TICKET CA - COMPLETELY REDESIGNED
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---=== 1. Ultra Premium Color Palette ===--- */
:root {
    /* Primary Colors - Deep Royal Purple & Gold */
    --primary: #6C5CE7;
    --primary-dark: #5A4FCF;
    --primary-light: #8B7EE8;
    --primary-gradient: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --primary-glow: 0 0 30px rgba(108, 92, 231, 0.4);
    
    /* Accent Colors - Premium Gold */
    --accent: #FDB44B;
    --accent-dark: #E8A030;
    --accent-light: #FFD93D;
    --accent-gradient: linear-gradient(135deg, #FDB44B 0%, #FFD93D 100%);
    --accent-glow: 0 0 25px rgba(253, 180, 75, 0.5);
    
    /* Secondary Accents */
    --accent-secondary: #00D2D3;
    --accent-tertiary: #FF6B9D;
    
    /* Neutral Colors - Rich & Sophisticated */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A1A2E;
    --text-light: #6C757D;
    --text-muted: #8E9AAF;
    
    /* Background Colors - Deep & Luxurious */
    --bg-primary: #0F0F23;
    --bg-secondary: #1A1A2E;
    --bg-tertiary: #16213E;
    --bg-muted: #F5F6FA;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-dark: rgba(26, 26, 46, 0.8);
    
    /* Border & Shadow - Premium Depth */
    --border-color: rgba(108, 92, 231, 0.2);
    --border-accent: rgba(253, 180, 75, 0.3);
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 10px 40px rgba(108, 92, 231, 0.3);
    --shadow-gold: 0 10px 40px rgba(253, 180, 75, 0.4);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Typography - Elegant & Refined */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* ---=== 2. Global Reset ===--- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background: linear-gradient(180deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
    background-attachment: fixed;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 180, 75, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    flex-grow: 1;
    position: relative;
    z-index: 1;
    background: transparent;
}

/* ---=== 3. Premium Typography ===--- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

h1 { 
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    background: linear-gradient(135deg, #FFFFFF 0%, #FDB44B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

h2 { 
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 0.75rem;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 0.5rem;
}

h4 { 
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(253, 180, 75, 0.5);
}

ul, ol {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---=== 4. Utility Classes ===--- */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
    position: relative;
    background: transparent;
}

.section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
    font-family: var(--font-display);
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    box-shadow: var(--accent-glow);
}

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

.d-none {
    display: none !important;
}

.hidden {
    display: none !important;
}

/* ---=== 5. Premium Glass Header ===--- */
.main-header {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-light);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 20px rgba(253, 180, 75, 0.4);
}

.main-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--transition-base);
    border-radius: var(--radius-sm);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--accent-gradient);
    transition: transform var(--transition-base);
    box-shadow: var(--accent-glow);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    text-shadow: 0 0 10px rgba(253, 180, 75, 0.5);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.auth-buttons {
    display: flex;
    gap: var(--spacing-xs);
}

.hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: all var(--transition-base);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold), var(--shadow-sm);
}

/* ---=== 6. Premium Buttons with Glow Effects ===--- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-accent), var(--shadow-md);
    transform: translateY(0);
    font-family: var(--font-family);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: var(--accent-gradient);
    -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 var(--transition-base);
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-accent), var(--shadow-xl), 0 0 30px rgba(108, 92, 231, 0.5);
}

.btn:active {
    transform: translateY(-2px) scale(1);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-accent), var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5A4FCF 0%, #8B7EE8 100%);
    box-shadow: var(--shadow-accent), var(--shadow-xl), 0 0 40px rgba(108, 92, 231, 0.6);
}

.btn-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.btn-accent:hover {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    border-color: transparent;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold), var(--shadow-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Cookie/Modal Buttons */
.btn.primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn.ghost {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn.gray {
    background: var(--bg-muted);
    color: var(--text-dark);
    border-color: var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn.link {
    background: transparent;
    border: none;
    color: var(--accent);
    text-decoration: underline;
    border-radius: 0;
    padding: 0.5rem;
    font-size: 0.875rem;
}

/* ---=== 7. Premium Glass Cards ===--- */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
}

/* Ensure all text in cards is readable */
.card * {
    color: inherit;
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: var(--white) !important;
}

.card p, .card span, .card div, .card li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.card small {
    color: rgba(255, 255, 255, 0.85) !important;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 180, 75, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.card:hover {
    box-shadow: var(--shadow-xl), 0 0 40px rgba(108, 92, 231, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(253, 180, 75, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* ---=== 8. Grid Layouts ===--- */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }
}

/* ---=== 9. Ultra Premium Hero Section ===--- */
.hero {
    position: relative;
    padding: 3rem 0 4rem;
    background: transparent;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(253, 180, 75, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--spacing-lg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content * {
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(253, 180, 75, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 180, 75, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(253, 180, 75, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--accent);
    filter: drop-shadow(0 0 5px rgba(253, 180, 75, 0.5));
}

.hero-badge span {
    display: inline-block;
}

.hero h1 {
    margin: 0 0 0.75rem 0;
    padding: 0;
    font-weight: 900;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.25rem 0;
    padding: 0;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 0;
    padding: 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin: 0;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.benefit-item i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    display: inline-block;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.hero-trust {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    align-items: center;
    justify-content: flex-start;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 0;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.trust-badge-item i {
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(162, 155, 254, 0.1) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    padding: var(--spacing-md);
    color: var(--white);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(108, 92, 231, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 180, 75, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-date {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-card-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.card-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--white) !important;
    line-height: 1.2;
}

.card-jackpot {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.card-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card .btn {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.hero-card .btn:hover {
    background: linear-gradient(135deg, #E8A030 0%, #FDB44B 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-gold), var(--shadow-xl), 0 0 40px rgba(253, 180, 75, 0.6);
}

/* ---=== 10. Simple Trust Icons ===--- */
.trust-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
}

.trust-icons .icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-dark);
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    font-size: 0.875rem;
}

.trust-icons .icon-item:hover {
    border-color: var(--primary);
    background: #F0F9FF;
}

.trust-icons i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* ---=== Draws Showcase - Premium Layout ===--- */
.draws-showcase {
    background: transparent;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.draws-intro {
    margin-bottom: var(--spacing-md);
}

.draws-intro {
    text-align: left;
}

.draws-intro p {
    font-size: 0.9375rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-md) 0;
}

.draws-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 1024px) {
    .draws-layout {
        grid-template-columns: 2fr 1fr;
        gap: var(--spacing-lg);
    }
}

.draw-card-featured {
    background: rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(108, 92, 231, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.draw-card-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

@media (min-width: 768px) {
    .draw-card-featured {
        grid-template-columns: 200px 1fr;
    }
}

.draw-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.draw-logo-large {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.draw-content h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.draw-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.draw-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: 0;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.detail-item i {
    color: var(--accent);
    width: 24px;
    filter: drop-shadow(0 0 5px rgba(253, 180, 75, 0.5));
}

.draw-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.draws-grid-compact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.draw-card-compact {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--spacing-md);
    align-items: start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.draw-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.draw-card-compact:hover::before {
    opacity: 1;
}

.draw-card-compact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(253, 180, 75, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(108, 92, 231, 0.2);
}

.draw-logo-small {
    max-width: 90px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    align-self: center;
}

.draw-card-compact > div {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.draw-card-compact h4 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.draw-card-compact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.draw-meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: var(--spacing-xs) 0;
}

.draw-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.draw-meta i {
    color: var(--accent) !important;
    width: 16px;
}

.draw-card-buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---=== Features Section - Premium Layout ===--- */
.features-section {
    background: transparent;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 1024px) {
    .features-layout {
        grid-template-columns: 2fr 1fr;
        gap: var(--spacing-lg);
    }
}

.features-main h2 {
    text-align: left;
    margin-bottom: var(--spacing-sm);
}

.features-main {
    text-align: left;
}

.features-main p {
    font-size: 0.9375rem;
    max-width: 500px;
    margin-bottom: var(--spacing-md);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: 12px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.feature-icon-small {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 14px;
    flex-shrink: 0;
    font-size: 1.375rem;
    box-shadow: var(--shadow-accent), var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon-small {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-accent), var(--shadow-lg), 0 0 30px rgba(108, 92, 231, 0.5);
}

.feature-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-item h4 {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.3;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.features-sidebar {
    display: flex;
    flex-direction: column;
}

.trust-badge {
    position: sticky;
    top: 100px;
}

.trust-badge h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: var(--spacing-xs) 0;
}

.trust-item i {
    color: var(--accent) !important;
    width: 24px;
    flex-shrink: 0;
}

/* ---=== Process Section - Premium Layout ===--- */
.process-section {
    background: transparent;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-accent), var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all var(--transition-base);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(15px);
}

.process-step:hover .step-number::before {
    opacity: 0.6;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-accent), var(--shadow-xl), 0 0 40px rgba(108, 92, 231, 0.6);
}

.step-content h3 {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    max-width: 200px;
}

.process-arrow {
    display: none;
    color: var(--accent);
    font-size: 1.5rem;
    align-self: center;
    filter: drop-shadow(0 0 10px rgba(253, 180, 75, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

.draw-card {
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.draw-card .logo-placeholder {
    height: 100px;
    width: auto;
    margin: 0 auto var(--spacing-sm);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.draw-card h3 {
    color: var(--white) !important;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.draw-card p {
    flex-grow: 1;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
}

.draw-card ul {
    text-align: left;
    margin: var(--spacing-sm) 0;
    padding-left: 0;
    list-style: none;
}

.draw-card ul li {
    padding-left: 0;
}

.draw-card ul li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
}

.draw-card ul i {
    color: var(--accent);
    font-size: 0.875rem;
}

.draw-card-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: auto;
    padding-top: var(--spacing-md);
}

/* ---=== 12. Why Us Cards ===--- */
.why-us-card {
    text-align: left;
    height: 100%;
}

.why-us-card i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.why-us-card h4 {
    color: var(--white) !important;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
}

/* ---=== 13. Results Grid ===--- */
/* Old results grid - keeping for compatibility but not using in new design */
.results-grid {
    display: none;
}

.result-item .numbers {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

/* ---=== Results Showcase ===--- */
.results-showcase {
    background: transparent;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.results-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.results-header h2 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.results-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.results-display {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

@media (min-width: 768px) {
    .results-display {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

.result-card-large {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.result-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.result-card-large:hover::before {
    transform: scaleX(1);
}

.result-card-large:hover {
    box-shadow: var(--shadow-xl), 0 0 40px rgba(108, 92, 231, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(253, 180, 75, 0.4);
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-light);
}

.result-card-header > div:first-child {
    flex: 0 0 auto;
}

.result-card-header > div:last-child {
    flex: 1;
    text-align: right;
}

@media (max-width: 640px) {
    .result-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .result-card-header > div:last-child {
        text-align: left;
        width: 100%;
    }
}

.result-card-header > div:first-child {
    flex: 0 0 auto;
}

.result-card-header > div:last-child {
    flex: 1;
    text-align: right;
}

@media (max-width: 640px) {
    .result-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .result-card-header > div:last-child {
        text-align: left;
        width: 100%;
    }
}

.result-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--white);
}

.result-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
}

@media (max-width: 640px) {
    .result-date {
        text-align: left;
        width: 100%;
    }
}

.result-numbers-large {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.number-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-accent), var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
}

.number-ball::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(10px);
}

.number-ball:hover::before {
    opacity: 0.5;
}

.number-ball.bonus {
    background: var(--accent-gradient);
    width: 40px;
    height: 40px;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-gold), var(--shadow-md);
}

.number-ball.bonus::before {
    background: var(--accent-gradient);
}

.result-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.bonus-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.6875rem;
}

.bonus-label {
    font-weight: 600;
}

.result-prize {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.125rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-xs);
    border-top: 1px solid var(--border-light);
    line-height: 1.3;
}

/* ---=== 14. Forms ===--- */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 1.125rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--border-light);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    transition: all var(--transition-base);
    border-radius: 12px;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-gold), 0 0 20px rgba(253, 180, 75, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-control[aria-invalid="true"] {
    border-color: #DC2626;
}

.error-message {
    color: #FF6B6B !important;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: var(--spacing-xs);
}

/* ---=== 15. Buy Page ===--- */
.draw-selector {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.draw-selector .btn {
    min-width: 120px;
    flex: 1;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border-color: var(--border-light);
    transition: all var(--transition-base);
}

.draw-selector .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--white);
}

.draw-selector .btn.active {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent), var(--shadow-md);
    font-weight: 700;
}

.ticket-builder {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

@media (min-width: 992px) {
    .ticket-builder {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-lg);
    }
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    justify-items: center;
    padding: var(--spacing-sm) 0;
}

.number-btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-light);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 14px;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.number-btn:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.2);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-accent), var(--shadow-md);
}

.number-btn.selected {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent), var(--shadow-lg), 0 0 20px rgba(108, 92, 231, 0.5);
    transform: scale(1.15) rotate(-5deg);
    font-weight: 900;
    border-width: 3px;
}

.number-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.ticket-actions {
    margin-bottom: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
}

.ticket-actions .btn {
    flex: 1;
    min-width: 140px;
}

#cart-summary .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-light);
    color: rgba(255, 255, 255, 0.95) !important;
}

#cart-summary .cart-item > div:first-child {
    flex: 1;
    min-width: 0;
}

#cart-summary .cart-item > div:last-child {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

#cart-summary .cart-item strong,
#cart-summary .cart-item small,
#cart-summary .cart-item span {
    color: rgba(255, 255, 255, 0.95) !important;
    display: block;
    line-height: 1.4;
}

#cart-summary .cart-item small {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 0.25rem;
}

#cart-summary .cart-item:last-child {
    border-bottom: none;
}

#cart-summary .remove-item {
    background: none;
    border: none;
    color: #FF6B6B !important;
    cursor: pointer;
    font-size: 1.5rem;
    padding: var(--spacing-xs);
    transition: all var(--transition-base);
}

#cart-summary .remove-item:hover {
    color: #FF8787 !important;
    transform: scale(1.2);
}

#cart-total {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--accent);
}

#cart-total p,
#cart-total span,
#cart-total strong {
    color: rgba(255, 255, 255, 0.95) !important;
}

#cart-empty-msg {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ---=== 16. Contact Page ===--- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-info-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.contact-info-block h3 {
    margin-top: 0;
    color: var(--white) !important;
}

.contact-info-block p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.contact-info-block li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.contact-info-block strong {
    color: var(--white) !important;
}

.contact-info-block a {
    color: var(--accent) !important;
}

.contact-info-block ul {
    list-style: none;
    padding: 0;
}

.contact-info-block li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-info-block li i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

/* ---=== 17. About Page ===--- */
.about-header {
    text-align: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-light);
    margin-bottom: var(--spacing-lg);
}

.about-header h1,
.about-header p {
    color: var(--white) !important;
}

.team-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.team-content h2,
.team-content p {
    color: var(--white) !important;
}

@media (min-width: 768px) {
    .team-block {
        grid-template-columns: 1fr 1fr;
    }
}

.team-photos {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.team-photos > div {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-accordion details {
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-md) 0;
}

.faq-accordion summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    color: var(--white) !important;
    font-size: 1.125rem;
}

.faq-accordion summary::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform var(--transition-base);
    color: var(--accent) !important;
}

.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.faq-accordion div {
    padding-top: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95) !important;
}

.faq-accordion div p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ---=== 18. Auth Pages ===--- */
.auth-container {
    max-width: 500px;
    width: 100%;
    margin: var(--spacing-xl) auto;
}

.auth-container .card {
    padding: var(--spacing-lg);
}

.auth-container h1,
.auth-container h2,
.auth-container p,
.auth-container label {
    color: var(--white) !important;
}

/* ---=== 19. Modals ===--- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    align-items: center;
    justify-content: center;
}

.modal.is-visible {
    display: flex;
}

.modal-content {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    margin: auto;
    padding: var(--spacing-lg);
    max-width: 90%;
    width: 600px;
    position: relative;
    animation: fadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(108, 92, 231, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Ensure all text in modals is readable */
.modal-content * {
    color: inherit;
}

.modal-content h1, .modal-content h2, .modal-content h3, .modal-content h4 {
    color: var(--white) !important;
}

.modal-content p, .modal-content span, .modal-content div, .modal-content li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.modal-content ul li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.modal-content strong {
    color: var(--white) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border-radius: 12px;
}

.modal-close:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-gold), var(--shadow-md);
    border-color: transparent;
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    border-radius: var(--radius-md);
    border: 2px solid var(--accent);
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

/* ---=== 20. Premium Footer ===--- */
.site-footer {
    background: rgba(15, 15, 35, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    color: rgba(255, 255, 255, 0.95) !important;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--border-light);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

/* Override inline styles for better readability */
.site-footer > div {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: var(--spacing-md) var(--spacing-lg) !important;
    text-align: center !important;
    font-size: 0.875rem !important;
    line-height: 1.7 !important;
    font-family: var(--font-family) !important;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: var(--spacing-sm) !important;
}

.site-footer strong {
    color: var(--white) !important;
    font-weight: 700 !important;
}

.site-footer a {
    color: var(--accent) !important;
    text-decoration: underline !important;
    transition: all var(--transition-base) !important;
}

.site-footer a:hover {
    color: var(--accent-light) !important;
    text-shadow: 0 0 10px rgba(253, 180, 75, 0.5) !important;
}

.site-footer em {
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: italic !important;
}

/* Override specific inline color styles in footer */
.site-footer p[style*="color: red"],
.site-footer p[style*="color:red"] {
    color: var(--accent) !important;
    font-weight: 700 !important;
}

.site-footer a[style*="color:#aaa"],
.site-footer a[style*="color:#AAA"],
.site-footer a[style*="color:#666"],
.site-footer a[style*="color:#666"] {
    color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer a[style*="color:#e84e4e"],
.site-footer a[style*="color:#E84E4E"] {
    color: var(--accent) !important;
}

.site-footer p[style*="color:#666"],
.site-footer p[style*="color:#666"] {
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-footer p[style*="font-size:12px"] {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.footer-imgs img {
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.footer-imgs img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

/* ---=== 21. Cookie & Age Gate ===--- */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.card h2,
.card h3 {
    margin: 0 0 var(--spacing-xs);
    font-weight: 800;
    color: var(--white) !important;
}

.card p {
    margin: var(--spacing-xs) 0 var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95) !important;
}

.stack {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--border-light);
}

.row strong {
    color: var(--white) !important;
}

.row:first-of-type {
    border-top: none;
}

.desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: var(--spacing-xs);
}

.badge {
    font-weight: 700;
    font-size: 0.75rem;
    background: rgba(253, 180, 75, 0.2);
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    padding: 0.25rem 0.5rem;
    display: inline-block;
    margin-left: var(--spacing-xs);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: rgba(26, 26, 46, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    color: rgba(255, 255, 255, 0.95) !important;
}

.cookie-inner {
    margin: 0 auto;
    max-width: 1280px;
    padding: var(--spacing-md);
    display: grid;
    gap: var(--spacing-sm);
    grid-template-columns: 1fr auto;
    align-items: center;
}

.cookie-text {
    font-weight: 500;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.cookie-text strong {
    color: var(--white) !important;
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.reopen {
    position: fixed;
    right: var(--spacing-md);
    bottom: var(--spacing-md);
    z-index: 9997;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.reopen:hover {
    box-shadow: var(--shadow-accent);
    transform: translateY(-3px);
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bg-muted);
    transition: var(--transition-base);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    top: 4px;
    background: var(--white);
    transition: var(--transition-base);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.switch input:checked + .slider {
    background: var(--primary);
    border-color: var(--primary);
}

.switch input:checked + .slider:before {
    transform: translateX(22px);
}

.lock {
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.age-list {
    margin: var(--spacing-xs) 0 var(--spacing-md);
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9375rem;
}

.age-list li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.age-actions {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

/* ---=== 22. Responsive Design ===--- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        box-shadow: var(--shadow-xl);
        padding: var(--spacing-md);
        border-top: 1px solid var(--border-light);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: var(--spacing-sm);
        text-align: center;
        width: 100%;
    }

    .main-nav a::before {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(108, 92, 231, 0.2);
        color: var(--accent);
        border-color: var(--accent);
    }

    .hamburger {
        display: block;
    }

    .auth-buttons {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

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

    .section {
        padding: var(--spacing-lg) 0;
    }

    .number-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    }

    .cookie-inner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}

/* ---=== 23. Focus States ===--- */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

.btn:focus-visible,
.reopen:focus-visible,
.card :is(input, button, a):focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ---=== 24. CRO Enhancements ===--- */

/* Countdown Timer */
.countdown-container {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(108, 92, 231, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
}

.countdown-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-label i {
    color: var(--accent);
}

.countdown-timer {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm);
    border-radius: 12px;
    min-width: 60px;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(108, 92, 231, 0.3);
}

.countdown-value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label-text {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.countdown-label-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.countdown-expired {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.urgency-banner span {
    flex: 1;
    min-width: 200px;
}

.urgency-banner i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.urgency-banner span {
    flex: 1;
    font-weight: 500;
}

.urgency-dismiss {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.urgency-dismiss:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Recent Activity */
.recent-activity {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    min-height: 48px;
}

.recent-activity:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(253, 180, 75, 0.3);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(108, 92, 231, 0.2);
}

.recent-activity.fade-in {
    animation: fadeIn 0.4s ease-out;
}

.recent-activity i {
    color: var(--accent);
    font-size: 1.75rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(253, 180, 75, 0.5));
}

.activity-text {
    flex: 1;
}

.activity-text strong {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Progress Indicator */
.checkout-progress-container {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    gap: var(--spacing-xs);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-muted);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    transition: all var(--transition-base);
    margin-bottom: var(--spacing-xs);
}

.progress-step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.progress-bar-wrapper {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    position: relative;
    margin-top: var(--spacing-sm);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
    width: 0%;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

/* Order Summary Enhancements */
.order-summary-card {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.order-summary-card h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-light);
}

.order-totals {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.total-row span {
    color: rgba(255, 255, 255, 0.95) !important;
}

.total-row:last-child {
    margin-bottom: 0;
}

.total-final {
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--accent);
    margin-top: var(--spacing-sm);
    font-size: 1.125rem;
}

.total-final strong {
    color: var(--white) !important;
}

.order-guarantee {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(253, 180, 75, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: var(--spacing-md);
    text-align: center;
    justify-content: center;
    border: 1px solid rgba(253, 180, 75, 0.3);
}

.order-guarantee i {
    color: var(--accent) !important;
}

.order-guarantee span {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Premium Pulse Animation */
.pulse-animation {
    animation: premiumPulse 3s ease-in-out infinite;
}

@keyframes premiumPulse {
    0%, 100% {
        box-shadow: var(--shadow-accent), var(--shadow-lg), 0 0 0 0 rgba(108, 92, 231, 0.4), 0 0 0 0 rgba(253, 180, 75, 0.4);
    }
    50% {
        box-shadow: var(--shadow-accent), var(--shadow-lg), 0 0 0 15px rgba(108, 92, 231, 0), 0 0 0 20px rgba(253, 180, 75, 0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Badge Animations */
.trust-badge-item {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.trust-badge-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Personalized Recommendations */
.personalized-recommendations {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.recommendation-card {
    background: rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    text-align: center;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(108, 92, 231, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 180, 75, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.recommendation-card i {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    display: block;
    filter: drop-shadow(0 0 20px rgba(253, 180, 75, 0.5));
    position: relative;
    z-index: 1;
}

.recommendation-card h4 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.recommendation-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Hero Card Urgency */
.card-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(253, 180, 75, 0.2);
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white) !important;
    border: 1px solid rgba(253, 180, 75, 0.3);
}

.card-urgency i {
    color: var(--accent);
}

/* Number Ball Animations */
.number-ball {
    transition: all var(--transition-base);
}

.number-ball:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

/* Responsive Adjustments for CRO Elements */
@media (max-width: 768px) {
    .countdown-item {
        min-width: 60px;
        padding: var(--spacing-xs);
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .progress-steps {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .progress-step {
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-sm);
    }

    .step-label {
        text-align: left;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
    }

    .recent-activity {
        flex-direction: column;
        text-align: center;
    }
}

