/*
 * ========================================
 * UK Gambling Website - Dark Modern Theme V3
 * ========================================
 * Sleek, contemporary design with purple/cyan accents on dark background
 * Premium dark theme with cutting-edge casino industry styling
 * Responsive design: Mobile-first approach with desktop breakpoint at 768px
 */

/* 1. CSS Custom Properties (CSS Variables) for Dark Modern Theme V3 */
:root {
    /* EDIT: New modern dark color scheme */
    --bg-primary: #0f0f1a;           /* Deep dark blue background */
    --bg-secondary: #1a1a2e;         /* Rich dark purple for cards/sections */
    --bg-accent: #16213e;            /* Deep blue accent background */
    --accent-primary: #e94560;       /* Vibrant coral red for primary actions */
    --accent-secondary: #0f3460;     /* Deep blue for highlights */
    --accent-tertiary: #7209b7;      /* Purple for special elements */
    --accent-cyan: #00d9ff;          /* Bright cyan for accents */
    --accent-green: #00ff88;         /* Neon green for checkmarks */
    --accent-red: #ff3366;           /* Bright red for important notices */
    --text-primary: #f8f9fa;         /* Bright white text for main content */
    --text-secondary: #a8a8b3;       /* Cool grey for subtitles */
    --text-muted: #6c757d;           /* Muted grey for disclaimers */
    --border-color: #343a46;         /* Dark border color */
    --border-accent: #00d9ff;        /* Cyan border for featured items */
    --shadow-light: rgba(14, 165, 233, 0.15); /* Cyan-tinted shadows */
    --shadow-medium: rgba(14, 165, 233, 0.25);
    --shadow-dark: rgba(14, 165, 233, 0.35);
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-accent: 'Orbitron', monospace;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0a0a15 50%, var(--bg-primary) 100%);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-attachment: fixed;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* 3. Utility Classes for Responsive Content Switching */
.hide-on-desktop { 
    display: block; 
}

.hide-on-mobile { 
    display: none; 
}

/* Container for consistent spacing */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4. Modern Typography Styles (Mobile-First) */
h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--accent-cyan);
    font-family: var(--font-secondary);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-secondary);
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

/* Link styling */
a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
    text-shadow: 0 0 8px currentColor;
}

a:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

/* 5. Futuristic Header Styles */
.site-header {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #7209b7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(114, 9, 183, 0.1) 0%, transparent 50%);
    animation: headerGlow 8s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.site-header .container {
    position: relative;
    z-index: 2;
}

.site-header h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    font-family: var(--font-accent);
}

.site-header .subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 6. Futuristic Compliance Bar */
.compliance-bar {
    background: linear-gradient(90deg, var(--bg-accent) 0%, var(--accent-secondary) 100%);
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid var(--border-accent);
    position: relative;
}

.compliance-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-primary), var(--accent-tertiary));
    animation: borderFlow 3s linear infinite;
}

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

.compliance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
}

.age-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    transition: all 0.3s ease;
}

.age-badge:hover {
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.6);
    transform: scale(1.05);
}

.disclaimer-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.disclaimer-text strong {
    color: var(--accent-red);
    font-weight: 700;
    text-shadow: 0 0 8px currentColor;
}

.disclaimer-text a {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* 7. Neon Star Rating Component */
.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: var(--spacing-sm) 0;
    font-size: 20px;
}

.star-rating i {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(233, 69, 96, 0.6));
    transition: all 0.3s ease;
}

.star-rating:hover i {
    filter: drop-shadow(0 0 12px rgba(233, 69, 96, 0.8));
    transform: scale(1.1);
}

.star-rating .rating-text {
    margin-left: var(--spacing-sm);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

/* 8. Futuristic CTA Button Styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(233, 69, 96, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    font-family: var(--font-accent);
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(233, 69, 96, 0.6),
        0 0 30px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* 9. Cyber Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0a0a15 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 217, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: visible;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.hero-content:hover {
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.casino-logo-large {
    max-height: 100px;
    margin: var(--spacing-md) 0;
    filter: 
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) 
        brightness(1.2) 
        contrast(1.1);
    transition: all 0.4s ease;
}

.casino-logo-large:hover {
    transform: scale(1.1) rotate(2deg);
    filter: 
        drop-shadow(0 12px 24px rgba(0, 217, 255, 0.3)) 
        brightness(1.3) 
        contrast(1.2);
}

.offer-text {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--spacing-lg) 0;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    font-family: var(--font-accent);
    line-height: 1.2;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.review-highlights {
    margin: var(--spacing-lg) 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.8), rgba(22, 33, 62, 0.4));
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-green);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(5px);
}

.review-highlights ul {
    list-style: none;
    padding: 0;
}

.review-highlights li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-highlights li:hover {
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.review-highlights li:last-child {
    margin-bottom: 0;
}

.review-highlights li i {
    color: var(--accent-green);
    font-size: 16px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), transparent 70%);
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
    line-height: 1.5;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.6), rgba(22, 33, 62, 0.3));
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(3px);
}

/* 10. Cyber Mobile Offers List */
.offers-list {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0a0a15 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--accent-cyan);
    position: relative;
    font-family: var(--font-accent);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan), var(--accent-tertiary));
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { box-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(233, 69, 96, 0.5); }
}

.offer-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 217, 255, 0.05);
    overflow: visible;
    backdrop-filter: blur(5px);
}

.offer-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 217, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featured-card {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.9) 0%, 
        rgba(15, 52, 96, 0.6) 50%, 
        rgba(26, 26, 46, 0.9) 100%);
    position: relative;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 217, 255, 0.2);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan), var(--accent-tertiary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    animation: cardGlow 3s linear infinite;
}

@keyframes cardGlow {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.casino-logo-card {
    max-height: 70px;
    margin-bottom: var(--spacing-md);
    filter: 
        drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) 
        brightness(1.1) 
        contrast(1.1);
    transition: all 0.4s ease;
}

.casino-logo-card:hover {
    transform: scale(1.15) rotate(1deg);
    filter: 
        drop-shadow(0 10px 20px rgba(0, 217, 255, 0.3)) 
        brightness(1.2) 
        contrast(1.2);
}

.offer-details {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: var(--spacing-md) 0;
    font-family: var(--font-secondary);
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}

/* 11. Cyber Corner Triangle Ribbons */
.corner-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent var(--accent-primary) transparent transparent;
    z-index: 15;
    filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.6));
    transition: all 0.3s ease;
}

.corner-ribbon::after {
    content: attr(data-text);
    position: absolute;
    top: 12px;
    right: -60px;
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    width: 50px;
    text-align: center;
    font-family: var(--font-accent);
}

.corner-ribbon:hover {
    filter: drop-shadow(0 0 15px rgba(233, 69, 96, 0.8));
    transform: scale(1.05);
}

/* Different ribbon colors for variety */
.featured-card .corner-ribbon {
    border-color: transparent var(--accent-cyan) transparent transparent;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

.offer-card:nth-child(3) .corner-ribbon {
    border-color: transparent var(--accent-tertiary) transparent transparent;
    filter: drop-shadow(0 0 10px rgba(114, 9, 183, 0.6));
}

.offer-card:nth-child(4) .corner-ribbon {
    border-color: transparent var(--accent-green) transparent transparent;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

/* 12. Enhanced Clickable Card Overlay Styles */
.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    pointer-events: auto;
    display: block;
    transition: background 0.3s ease;
}

.card-link:hover {
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.08) 0%, 
        rgba(233, 69, 96, 0.05) 100%);
    text-decoration: none;
}

.card-link:focus {
    outline: 3px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Ensure content stays above overlay */
.offer-card > *:not(.card-link):not(.corner-ribbon) {
    position: relative;
    z-index: 8;
    pointer-events: none;
}

.hero-content > *:not(.card-link):not(.corner-ribbon) {
    position: relative;
    z-index: 8;
    pointer-events: none;
}

/* Re-enable clicks on interactive elements */
.cta-button,
.logo-link {
    pointer-events: auto;
    position: relative;
    z-index: 12;
}

/* Logo Link Styles */
.logo-link {
    display: inline-block;
    transition: all 0.4s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.logo-link:hover {
    transform: scale(1.08) rotate(2deg);
    text-decoration: none;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
}

.logo-link:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

/* 13. Cyber Responsible Gaming Section */
.responsible-gaming {
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        rgba(15, 52, 96, 0.4) 50%, 
        var(--bg-secondary) 100%);
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-xl);
    border-top: 3px solid var(--accent-cyan);
    position: relative;
    backdrop-filter: blur(5px);
}

.responsible-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan));
    animation: sectionGlow 4s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.6); }
    100% { box-shadow: 0 0 30px rgba(233, 69, 96, 0.6); }
}

.responsible-gaming h3 {
    text-align: center;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-md);
    font-size: 28px;
    font-family: var(--font-accent);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.responsible-gaming p {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.help-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.help-links a {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 
        0 8px 20px rgba(15, 52, 96, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-accent);
}

.help-links a:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(233, 69, 96, 0.4),
        0 0 20px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* 14. Cyber Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(15, 15, 26, 0.9) 100%);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    box-shadow: 
        0 -10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
}

.compliance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    padding: var(--spacing-md) 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.6), rgba(22, 33, 62, 0.3));
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
}

.compliance-logos img {
    height: 50px;
    filter: grayscale(100%) brightness(0.8) contrast(1.2);
    transition: all 0.4s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.compliance-logos img:hover {
    filter: grayscale(0%) brightness(1.2) contrast(1.3);
    transform: scale(1.15) rotate(2deg);
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    padding: var(--spacing-md) 0;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    text-decoration: none;
    text-shadow: 0 0 8px currentColor;
    transform: translateY(-2px);
}

.footer-disclaimer,
.copyright {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-sm) auto;
}

.copyright {
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-sm);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* 15. Desktop Media Query (768px and above) */
@media (min-width: 768px) {
    
    /* Switch responsive utility classes */
    .hide-on-desktop { 
        display: none; 
    }
    
    .hide-on-mobile { 
        display: block; 
    }
    
    /* Adjust container padding for desktop */
    .container {
        padding: 0 30px;
    }
    
    /* Desktop typography scaling */
    h1 {
        font-size: 52px;
    }
    
    h2 {
        font-size: 38px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    /* Desktop header */
    .site-header {
        padding: var(--spacing-xl) 0;
    }
    
    .site-header .subtitle {
        font-size: 20px;
    }
    
    /* Desktop compliance bar */
    .compliance-content {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-lg);
    }
    
    .age-badge {
        width: 70px;
        height: 70px;
    }
    
    .disclaimer-text {
        font-size: 16px;
    }
    
    /* Desktop CTA buttons */
    .cta-button {
        font-size: 18px;
        padding: 20px 40px;
    }
    
    /* Desktop hero section refinements */
    .hero-content {
        padding: var(--spacing-xl);
        max-width: 900px;
        margin: 0 auto;
    }
    
    .casino-logo-large {
        max-height: 140px;
    }
    
    .offer-text {
        font-size: 44px;
    }
    
    /* Desktop star ratings */
    .star-rating {
        font-size: 24px;
        justify-content: center;
    }
    
    /* Desktop corner ribbons */
    .corner-ribbon {
        border-width: 0 100px 100px 0;
    }
    
    .corner-ribbon::after {
        top: 15px;
        right: -75px;
        font-size: 12px;
        width: 60px;
    }
    
    /* Desktop footer adjustments */
    .compliance-logos {
        gap: 60px;
    }
    
    .compliance-logos img {
        height: 60px;
    }
    
    .footer-links {
        gap: var(--spacing-xl);
    }
    
    .footer-links a {
        font-size: 16px;
    }
    
    .footer-disclaimer,
    .copyright {
        font-size: 15px;
    }
}

/* 16. Large Desktop Media Query (1200px and above) */
@media (min-width: 1200px) {
    
    .container {
        padding: 0;
    }
    
    .hero-content {
        padding: 80px;
    }
    
    .offer-text {
        font-size: 50px;
    }
    
    .review-highlights {
        max-width: 600px;
        padding: var(--spacing-lg);
    }
    
    .review-highlights li {
        font-size: 18px;
    }
}

/* 17. Cyber Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px currentColor;
    }
    50% {
        text-shadow: 0 0 20px currentColor;
    }
}

/* Apply cyber animations to cards */
.offer-card,
.hero-content {
    animation: slideInUp 0.8s ease-out;
}

.site-header {
    animation: fadeIn 1s ease-out;
}

/* 18. Print Styles */
@media print {
    .cta-button,
    .compliance-bar,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-content,
    .offer-card {
        border: 1px solid black;
        box-shadow: none;
    }
}

/* 19. High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --bg-primary: #000000;
        --bg-secondary: #1a1a1a;
        --text-primary: #FFFFFF;
        --border-color: #666666;
        --accent-primary: #ff0066;
        --accent-cyan: #00ffff;
    }
}

/* 20. Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .corner-ribbon:hover {
        transform: none;
    }
    
    .casino-logo-large:hover,
    .casino-logo-card:hover {
        transform: scale(1.05);
    }
}