/* Canada Offer 2026 - Premium Aurora Design System */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Custom color variables - Aurora Theme */
:root {
    /* Primary Aurora Colors */
    --aurora-cyan: #00f5d4;
    --aurora-mint: #00e4a6;
    --aurora-lime: #9ef01a;
    --aurora-yellow: #f9f871;
    --aurora-pink: #ff6b9d;
    --aurora-purple: #9b5de5;
    --aurora-blue: #00bbf9;
    
    /* Dark theme colors */
    --dark-900: #0a0a0f;
    --dark-800: #12121a;
    --dark-700: #1a1a26;
    --dark-600: #232333;
    --dark-500: #2d2d42;
    
    /* Accent colors */
    --accent-primary: #00f5d4;
    --accent-secondary: #9b5de5;
    --accent-warning: #ff6b9d;
    
    /* Glow effects - subtle */
    --glow-cyan: rgba(0, 245, 212, 0.15);
    --glow-purple: rgba(155, 93, 229, 0.15);
    --glow-pink: rgba(255, 107, 157, 0.15);
    --glow-lime: rgba(158, 240, 26, 0.15);
    
    /* Gradients */
    --gradient-aurora: linear-gradient(135deg, #00f5d4 0%, #9b5de5 50%, #ff6b9d 100%);
    --gradient-ocean: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #00f5d4 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffc8dd 100%);
    --gradient-cosmic: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-neon: linear-gradient(90deg, #00f5d4, #9b5de5, #ff6b9d, #00f5d4);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hard: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-cyan: 0 0 20px rgba(0, 245, 212, 0.1);
    --shadow-glow-purple: 0 0 20px rgba(155, 93, 229, 0.1);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    color: #e4e4e7;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 245, 212, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(155, 93, 229, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(255, 107, 157, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: #a1a1aa;
    line-height: 1.8;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
}

/* =========================================
   HEADER STYLES
   ========================================= */
header {
    background: rgba(10, 10, 15, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav a {
    position: relative;
    color: #a1a1aa !important;
    font-weight: 500;
    transition: var(--transition-normal);
}

header nav a:hover {
    color: var(--aurora-cyan) !important;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

header nav a:hover::after {
    width: 100%;
}

/* Logo styling */
header h1 {
    font-size: 1.5rem !important;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   BUTTONS
   ========================================= */
button, .btn {
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

/* Primary Button - Aurora Glow */
.bg-lime-400, 
.bg-lime-500,
button[class*="bg-lime"] {
    background: var(--gradient-aurora) !important;
    background-size: 200% 200% !important;
    animation: gradientMove 3s ease infinite;
    color: var(--dark-900) !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--glow-cyan);
    position: relative;
    overflow: hidden;
}

.bg-lime-400:hover,
.bg-lime-500:hover,
button[class*="bg-lime"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--glow-cyan);
}

.bg-lime-400::before,
button[class*="bg-lime"]::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: var(--transition-slow);
}

.bg-lime-400:hover::before,
button[class*="bg-lime"]:hover::before {
    left: 100%;
}

/* Secondary Button */
.bg-blue-600,
.bg-blue-700 {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.bg-blue-600:hover,
.bg-blue-700:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}

/* Danger Button */
.bg-red-500,
.bg-red-600 {
    background: linear-gradient(135deg, #ff6b9d 0%, #f72585 100%) !important;
    box-shadow: 0 4px 12px var(--glow-pink);
}

.bg-red-500:hover,
.bg-red-600:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--glow-pink);
}

/* Ghost Button */
.bg-gray-200,
.bg-gray-300 {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e4e4e7 !important;
}

.bg-gray-200:hover,
.bg-gray-300:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--aurora-cyan) !important;
}

/* =========================================
   CARDS & CONTAINERS
   ========================================= */
.bg-white {
    background: rgba(26, 26, 38, 0.8) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-medium);
}

.bg-gray-50 {
    background: var(--dark-900) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

/* Premium Card Style */
.card-premium {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.9) 0%, rgba(18, 18, 26, 0.95) 100%);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-aurora);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: var(--transition-normal);
}

.card-premium:hover::before {
    opacity: 0.8;
}

/* Hover lift effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 245, 212, 0.2);
}

/* =========================================
   HERO SECTION
   ========================================= */
.animated-gradient {
    background: linear-gradient(135deg, var(--dark-900) 0%, #0f1729 50%, #1a0a2e 100%) !important;
    position: relative;
    overflow: hidden;
}

.animated-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(0, 245, 212, 0.2), transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 50%, rgba(155, 93, 229, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 107, 157, 0.15), transparent 50%);
    animation: auroraMove 15s ease-in-out infinite;
}

@keyframes auroraMove {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.1) rotate(2deg);
    }
    66% {
        opacity: 0.9;
        transform: scale(0.95) rotate(-2deg);
    }
}

/* Hero decorative elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatDecoration 8s ease-in-out infinite;
}

@keyframes floatDecoration {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-10px, 20px); }
    75% { transform: translate(30px, 10px); }
}

/* =========================================
   FORM ELEMENTS
   ========================================= */
input, textarea, select {
    background: rgba(26, 26, 38, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e4e4e7 !important;
    border-radius: var(--radius-md) !important;
    padding: 0.875rem 1rem !important;
    transition: var(--transition-normal);
    font-family: var(--font-primary);
}

input:focus, textarea:focus, select:focus {
    outline: none !important;
    border-color: var(--aurora-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.2), 0 0 20px rgba(0, 245, 212, 0.1) !important;
}

input::placeholder, textarea::placeholder {
    color: #71717a;
}

label {
    color: #d4d4d8 !important;
    font-weight: 500;
}

/* Checkbox styling */
input[type="checkbox"] {
    appearance: none;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    cursor: pointer;
    position: relative;
    padding: 0 !important;
}

input[type="checkbox"]:checked {
    background: var(--gradient-aurora) !important;
    border-color: transparent !important;
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-900);
    font-weight: bold;
    font-size: 12px;
}

/* =========================================
   NUMBER BUTTONS (Lottery Selection)
   ========================================= */
.number-btn {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-md) !important;
    background: rgba(26, 26, 38, 0.6) !important;
    color: #a1a1aa !important;
    font-weight: 600;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.number-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-aurora);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-normal);
    opacity: 0;
}

.number-btn:hover {
    border-color: var(--aurora-cyan) !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--glow-cyan);
}

.number-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.number-btn.selected {
    background: var(--gradient-aurora) !important;
    border-color: transparent !important;
    color: var(--dark-900) !important;
    box-shadow: 0 0 10px var(--glow-cyan);
}

@keyframes selectedPulse {
    0%, 100% { box-shadow: 0 0 10px var(--glow-cyan); }
    50% { box-shadow: 0 0 15px var(--glow-purple); }
}

.number-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
}

/* =========================================
   LOTTERY GAME CARDS
   ========================================= */
.bg-gradient-to-br.from-blue-500,
.bg-gradient-to-br.from-purple-500,
.bg-gradient-to-br.from-red-500 {
    position: relative;
    overflow: hidden;
}

.bg-gradient-to-br.from-blue-500.to-blue-700 {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #00f5d4 100%) !important;
}

.bg-gradient-to-br.from-purple-500.to-pink-600 {
    background: linear-gradient(135deg, #7209b7 0%, #9b5de5 50%, #ff6b9d 100%) !important;
}

.bg-gradient-to-br.from-red-500.to-red-700 {
    background: linear-gradient(135deg, #ff6b9d 0%, #f72585 50%, #b5179e 100%) !important;
}

/* Game card inner glow */
.bg-gradient-to-br::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 50%);
    pointer-events: none;
}

/* Info boxes inside cards */
.bg-blue-50, .bg-purple-50, .bg-red-50 {
    background: rgba(0, 245, 212, 0.1) !important;
    border: 1px solid rgba(0, 245, 212, 0.2) !important;
    border-radius: var(--radius-md) !important;
}

.bg-purple-50 {
    background: rgba(155, 93, 229, 0.1) !important;
    border-color: rgba(155, 93, 229, 0.2) !important;
}

.bg-red-50 {
    background: rgba(255, 107, 157, 0.1) !important;
    border-color: rgba(255, 107, 157, 0.2) !important;
}

/* =========================================
   CART SIDEBAR
   ========================================= */
.cart-item {
    background: rgba(0, 245, 212, 0.05) !important;
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-left: 4px solid var(--aurora-cyan);
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.cart-item:hover {
    background: rgba(0, 245, 212, 0.1) !important;
    transform: translateX(4px);
}

/* =========================================
   NOTIFICATION STYLES
   ========================================= */
.notification {
    min-width: 320px;
    max-width: 420px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: notificationSlide 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

@keyframes notificationSlide {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.notification.success {
    background: linear-gradient(135deg, rgba(0, 228, 166, 0.9), rgba(0, 245, 212, 0.9));
    color: var(--dark-900);
    box-shadow: 0 10px 40px rgba(0, 245, 212, 0.3);
}

.notification.error {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.9), rgba(255, 107, 157, 0.9));
    color: white;
    box-shadow: 0 8px 20px var(--glow-pink);
}

.notification.info {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9), rgba(0, 180, 216, 0.9));
    color: white;
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.3);
}

.notification.warning {
    background: linear-gradient(135deg, rgba(249, 248, 113, 0.9), rgba(255, 200, 87, 0.9));
    color: var(--dark-900);
    box-shadow: 0 10px 40px rgba(249, 248, 113, 0.3);
}

/* =========================================
   MODAL STYLES
   ========================================= */
.bg-black.bg-opacity-50,
.bg-black.bg-opacity-80 {
    background: rgba(10, 10, 15, 0.85) !important;
    backdrop-filter: blur(10px);
}

/* Modal card */
#loginModal > div,
#registerModal > div,
#ageVerificationModal > div {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.98), rgba(18, 18, 26, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: modalAppear 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gradient-aurora);
}

footer a {
    color: #71717a !important;
    transition: var(--transition-normal);
}

footer a:hover {
    color: var(--aurora-cyan) !important;
}

footer h4, footer h5 {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   TEXT COLORS
   ========================================= */
.text-gray-900 {
    color: #ffffff !important;
}

.text-gray-800 {
    color: #e4e4e7 !important;
}

.text-gray-700 {
    color: #d4d4d8 !important;
}

.text-gray-600 {
    color: #a1a1aa !important;
}

.text-gray-500 {
    color: #71717a !important;
}

.text-gray-400 {
    color: #52525b !important;
}

.text-lime-500, .text-lime-600, .text-lime-400 {
    color: var(--aurora-cyan) !important;
}

.text-blue-600, .text-blue-700 {
    color: var(--aurora-blue) !important;
}

.text-blue-100, .text-blue-200 {
    color: rgba(0, 187, 249, 0.7) !important;
}

/* =========================================
   BACKGROUNDS
   ========================================= */
.bg-blue-50, .bg-lime-50, .bg-green-50 {
    background: rgba(0, 245, 212, 0.05) !important;
}

.bg-lime-100, .bg-lime-200 {
    background: rgba(0, 245, 212, 0.1) !important;
}

.bg-blue-100, .bg-blue-200 {
    background: rgba(0, 187, 249, 0.1) !important;
}

.bg-purple-100, .bg-purple-200 {
    background: rgba(155, 93, 229, 0.1) !important;
}

.bg-red-100, .bg-red-200 {
    background: rgba(255, 107, 157, 0.1) !important;
}

/* =========================================
   BORDERS
   ========================================= */
.border-lime-400, .border-lime-500 {
    border-color: var(--aurora-cyan) !important;
}

.border-blue-500, .border-blue-600 {
    border-color: var(--aurora-blue) !important;
}

.border-purple-500 {
    border-color: var(--aurora-purple) !important;
}

.border-red-500 {
    border-color: var(--aurora-pink) !important;
}

.border-gray-200, .border-gray-300, .border-gray-800 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* =========================================
   SPECIAL EFFECTS
   ========================================= */

/* Gradient text */
.gradient-text {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glowing text */
.text-glow {
    text-shadow: 0 0 10px var(--glow-cyan);
}

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

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 245, 212, 0.3) !important;
}

/* Neon border */
.neon-border {
    border: 1px solid var(--aurora-cyan) !important;
    box-shadow: 0 0 8px var(--glow-cyan);
}

/* Number badge */
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-aurora) !important;
    color: var(--dark-900) !important;
    font-weight: bold;
    font-family: var(--font-mono);
    box-shadow: 0 0 10px var(--glow-cyan);
}

/* Section divider */
.section-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aurora-cyan), var(--aurora-purple), var(--aurora-pink), transparent);
    margin: 3rem 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--aurora-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-cyan);
}

/* Brush stroke effect */
.brush-stroke {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.5rem;
}

.brush-stroke::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    height: 100%;
    transform: translateY(-50%) rotate(-1deg);
    background: linear-gradient(90deg, rgba(0, 245, 212, 0.2), rgba(155, 93, 229, 0.2));
    z-index: -1;
    border-radius: 4px;
}

/* Electric line */
.electric-line {
    position: relative;
    display: inline-block;
}

.electric-line::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: electricFlow 2s linear infinite;
    border-radius: var(--radius-full);
}

@keyframes electricFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Underline effect */
.underline-effect {
    position: relative;
    display: inline-block;
}

.underline-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-aurora);
    transition: var(--transition-normal);
}

.underline-effect:hover::after {
    width: 100%;
}

/* Shimmer button effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Striped background */
.striped-bg {
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 10px,
        transparent 10px,
        transparent 20px
    ) !important;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.4;
        box-shadow: 0 0 10px var(--glow-cyan);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 15px var(--glow-purple);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

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

.animate-rotate-slow {
    animation: rotate-slow 30s linear infinite;
}

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

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

/* Staggered animation delays */
.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-500 { animation-delay: 500ms; }

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--aurora-cyan), var(--aurora-purple));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--aurora-purple), var(--aurora-pink));
}

/* =========================================
   LOADING SPINNER
   ========================================= */
.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--aurora-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================
   FOCUS STATES
   ========================================= */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--aurora-cyan);
    outline-offset: 2px;
}

/* =========================================
   COOKIE POPUP
   ========================================= */
#cookiePopup {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.98), rgba(10, 10, 15, 0.98)) !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 245, 212, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .no-print,
    header,
    footer,
    .cookie-popup,
    #ageVerificationModal,
    #notificationContainer {
        display: none !important;
    }
}

/* =========================================
   SHADOW UTILITIES
   ========================================= */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

.shadow-md {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

/* Glow shadows */
.shadow-glow-cyan {
    box-shadow: 0 0 15px var(--glow-cyan);
}

.shadow-glow-purple {
    box-shadow: 0 0 15px var(--glow-purple);
}

.shadow-glow-pink {
    box-shadow: 0 0 15px var(--glow-pink);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.bg-gray-50.rounded-lg.p-6 {
    background: rgba(26, 26, 38, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-normal);
}

.bg-gray-50.rounded-lg.p-6:hover {
    border-color: rgba(0, 245, 212, 0.3);
    transform: translateX(8px);
}

/* =========================================
   PAGE HEADER BANNER
   ========================================= */
section.bg-gradient-to-br.from-blue-600.to-blue-800 {
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-900) 100%) !important;
    position: relative;
    overflow: hidden;
}

section.bg-gradient-to-br.from-blue-600.to-blue-800::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 100% at 0% 0%, rgba(0, 245, 212, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 80% at 100% 100%, rgba(155, 93, 229, 0.15), transparent 50%);
    pointer-events: none;
}

/* =========================================
   ICON COLORS
   ========================================= */
.text-lime-600 svg, .text-lime-500 svg {
    color: var(--aurora-cyan);
}

.text-blue-600 svg {
    color: var(--aurora-blue);
}

.text-purple-600 svg {
    color: var(--aurora-purple);
}

.text-red-600 svg {
    color: var(--aurora-pink);
}

/* =========================================
   ALERT/INFO BOXES
   ========================================= */
.border-l-4.border-lime-400,
.border-l-4.border-blue-600,
.border-l-4.border-blue-500 {
    background: rgba(0, 245, 212, 0.05) !important;
    border-left: 4px solid var(--aurora-cyan) !important;
    border-radius: var(--radius-md) !important;
}

.border-l-4.border-red-500 {
    background: rgba(255, 107, 157, 0.05) !important;
    border-left: 4px solid var(--aurora-pink) !important;
}

.border-l-4.border-purple-500 {
    background: rgba(155, 93, 229, 0.05) !important;
    border-left: 4px solid var(--aurora-purple) !important;
}

/* =========================================
   RESPONSIBLE GAMING PAGE
   ========================================= */
.border-2.border-blue-200,
.border-2.border-green-200,
.border-2.border-purple-200 {
    border-color: rgba(0, 245, 212, 0.2) !important;
    background: rgba(0, 245, 212, 0.03) !important;
}

.border-2.border-lime-400 {
    border-color: var(--aurora-cyan) !important;
    background: rgba(0, 245, 212, 0.05) !important;
}

.border-2.border-red-200 {
    border-color: rgba(255, 107, 157, 0.2) !important;
    background: rgba(255, 107, 157, 0.03) !important;
}

/* =========================================
   DASHBOARD PAGE
   ========================================= */
.bg-gradient-to-br.from-lime-400.to-lime-500 {
    background: var(--gradient-aurora) !important;
    color: var(--dark-900) !important;
}

.bg-gradient-to-br.from-blue-500.to-blue-600 {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #00f5d4 100%) !important;
}

/* White/20 background overlay */
.bg-white\/20 {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* =========================================
   DECORATIVE BACKGROUND ELEMENTS
   ========================================= */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.bg-decoration-lime {
    background: var(--aurora-cyan);
}

.bg-decoration-blue {
    background: var(--aurora-purple);
}

/* Decorative shapes */
.deco-shape.deco-circle {
    border-radius: 50%;
    border: 3px solid var(--aurora-cyan);
    opacity: 0.15;
}

.deco-shape.deco-square {
    border: 3px solid var(--aurora-purple);
    transform: rotate(45deg);
    opacity: 0.15;
}

/* =========================================
   FEATURE ICONS CONTAINER
   ========================================= */
.bg-gradient-to-br.from-lime-100.to-lime-200,
.bg-gradient-to-br.from-blue-100.to-blue-200,
.bg-gradient-to-br.from-purple-100.to-purple-200,
.bg-gradient-to-br.from-red-100.to-red-200 {
    background: rgba(0, 245, 212, 0.1) !important;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.from-blue-100.to-blue-200 {
    background: rgba(0, 187, 249, 0.1) !important;
    border-color: rgba(0, 187, 249, 0.2) !important;
}

.from-purple-100.to-purple-200 {
    background: rgba(155, 93, 229, 0.1) !important;
    border-color: rgba(155, 93, 229, 0.2) !important;
}

.from-red-100.to-red-200 {
    background: rgba(255, 107, 157, 0.1) !important;
    border-color: rgba(255, 107, 157, 0.2) !important;
}

/* Groups hover state */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow-cyan);
}

.group:hover .group-hover\:text-lime-600,
.group:hover .group-hover\:text-blue-600,
.group:hover .group-hover\:text-purple-600,
.group:hover .group-hover\:text-red-600 {
    color: var(--aurora-cyan) !important;
}

/* Contact page icon backgrounds */
.bg-lime-100, .bg-blue-100, .bg-purple-100 {
    background: rgba(0, 245, 212, 0.1) !important;
}

.bg-blue-100 {
    background: rgba(0, 187, 249, 0.1) !important;
}

.bg-purple-100 {
    background: rgba(155, 93, 229, 0.1) !important;
}

/* Yellow backgrounds for info boxes */
.bg-yellow-50 {
    background: rgba(249, 248, 113, 0.1) !important;
}

.bg-pink-50 {
    background: rgba(255, 107, 157, 0.1) !important;
}

.bg-green-50 {
    background: rgba(0, 228, 166, 0.1) !important;
}

/* Shared component helpers */
.resource-links .resource-link {
    min-width: 250px;
}

.resource-logo {
    height: 36px;
    width: auto;
    border-radius: 8px;
    background: #fff;
    padding: 6px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
    .resource-links .resource-link {
        width: 100%;
        justify-content: space-between;
    }
}
