/* ===========================================
   NV CASINO - MAIN STYLESHEET
   Dark Theme Design System
   =========================================== */

/* ===========================================
   CSS CUSTOM PROPERTIES (Variables)
   Centralized design tokens for consistency
   =========================================== */
:root {
    /* ---- Color Palette ---- */
    /* Primary dark backgrounds */
    --color-bg-primary: #0a0a0f;          /* Deepest background */
    --color-bg-secondary: #12121a;         /* Card/section backgrounds */
    --color-bg-tertiary: #1a1a25;          /* Elevated elements */
    --color-bg-hover: #252535;             /* Hover states */
    
    /* Accent colors - Gold/Amber theme for casino feel */
    --color-accent-primary: #d4af37;       /* Gold - primary accent */
    --color-accent-secondary: #ffd700;     /* Bright gold - highlights */
    --color-accent-tertiary: #b8860b;      /* Dark gold - pressed states */
    
    /* Text colors */
    --color-text-primary: #ffffff;         /* Primary text */
    --color-text-secondary: #b0b0c0;       /* Secondary/muted text */
    --color-text-tertiary: #6b6b80;        /* Disabled/hint text */
    
    /* Semantic colors */
    --color-success: #22c55e;              /* Success states */
    --color-warning: #f59e0b;              /* Warning states */
    --color-error: #ef4444;                /* Error states */
    
    /* Gradient definitions */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
    --gradient-card: linear-gradient(145deg, #1a1a25 0%, #12121a 100%);
    
    /* ---- Typography ---- */
    --font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;               /* 12px */
    --font-size-sm: 0.875rem;              /* 14px */
    --font-size-base: 1rem;                /* 16px */
    --font-size-lg: 1.125rem;              /* 18px */
    --font-size-xl: 1.25rem;               /* 20px */
    --font-size-2xl: 1.5rem;               /* 24px */
    --font-size-3xl: 1.875rem;             /* 30px */
    --font-size-4xl: 2.25rem;              /* 36px */
    --font-size-5xl: 3rem;                 /* 48px */
    
    /* Font weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* ---- Spacing ---- */
    --spacing-xs: 0.25rem;                 /* 4px */
    --spacing-sm: 0.5rem;                  /* 8px */
    --spacing-md: 1rem;                    /* 16px */
    --spacing-lg: 1.5rem;                  /* 24px */
    --spacing-xl: 2rem;                    /* 32px */
    --spacing-2xl: 3rem;                   /* 48px */
    --spacing-3xl: 4rem;                   /* 64px */
    
    /* ---- Border Radius ---- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* ---- Shadows ---- */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* ---- Transitions ---- */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* ---- Z-Index Scale ---- */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-overlay: 500;
    
    /* ---- Container ---- */
    --container-max: 1200px;
    --container-padding: var(--spacing-md);
}

/* ===========================================
   CSS RESET & BASE STYLES
   Normalize browser defaults
   =========================================== */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default margin */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl, dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
    list-style: none;
}

/* Set core root defaults */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Anchor elements */
a {
    color: var(--color-accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-secondary);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 2px;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default button styles */
button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

/* ===========================================
   UTILITY CLASSES
   Reusable helper classes
   =========================================== */

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container - centered content wrapper */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================================
   SCREEN LOCK OVERLAY
   Displays on mobile landscape orientation
   =========================================== */
.screen-lock {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-primary);
    z-index: var(--z-overlay);
    justify-content: center;
    align-items: center;
}

.screen-lock__content {
    text-align: center;
    padding: var(--spacing-xl);
}

.screen-lock__icon {
    width: 80px;
    height: 80px;
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-lg);
    animation: rotate-phone 2s ease-in-out infinite;
}

.screen-lock__text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

/* Animation for phone rotation icon */
@keyframes rotate-phone {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Show screen lock on mobile landscape */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .screen-lock {
        display: flex;
    }
}

/* ===========================================
   BUTTON COMPONENTS
   Reusable button styles
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

/* Primary button - Gold gradient */
.btn--primary {
    background: var(--gradient-gold);
    color: var(--color-bg-primary);
    border-color: var(--color-accent-primary);
}

.btn--primary:hover {
    background: var(--color-accent-secondary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
    color: var(--color-bg-primary);
}

/* Accent button - Solid gold */
.btn--accent {
    background: var(--color-accent-primary);
    color: var(--color-bg-primary);
}

.btn--accent:hover {
    background: var(--color-accent-secondary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
    color: var(--color-bg-primary);
}

/* Large button variant */
.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

/* ===========================================
   HEADER COMPONENT
   Main navigation header
   =========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo styling */
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo img {
    height: 40px;
    width: auto;
}

/* Mobile menu toggle button */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
}

.header__menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-accent-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* Animated hamburger when open */
.header__menu-toggle[aria-expanded="true"] .header__menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-bar:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation list */
.header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.header__nav-link {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) 0;
    position: relative;
}

/* Underline animation on hover */
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width var(--transition-base);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link:hover {
    color: var(--color-accent-primary);
}

/* Header CTA button */
.header__cta {
    flex-shrink: 0;
}

/* Mobile header styles */
@media (max-width: 768px) {
    .header__menu-toggle {
        display: flex;
    }
    
    .header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-bg-secondary);
        padding: var(--spacing-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .header__nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .header__nav-link {
        font-size: var(--font-size-lg);
    }
    
    .header__cta {
        display: none;
    }
}

/* ===========================================
   HERO BANNER SECTION
   Full-width banner with CTA overlay
   =========================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.hero__picture {
    display: block;
    width: 100%;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CTA overlay container - positioned on right for desktop */
.hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--spacing-xl);
    width: 50%;
}

/* Semi-transparent CTA block */
.hero__cta-block {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    max-width: 500px;
    text-align: left;
}

.hero__title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* Mobile hero styles - centered CTA */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    
    .hero__overlay {
        position: relative;
        width: 100%;
        justify-content: center;
        padding: var(--spacing-lg);
        background: linear-gradient(to bottom, transparent, var(--color-bg-primary));
        margin-top: -100px;
    }
    
    .hero__cta-block {
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .hero__title {
        font-size: var(--font-size-xl);
    }
    
    .hero__subtitle {
        font-size: var(--font-size-base);
    }
}

/* ===========================================
   BREADCRUMBS NAVIGATION
   SEO-friendly navigation path
   =========================================== */
.breadcrumbs {
    background: var(--color-bg-secondary);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: var(--font-size-sm);
}

/* Separator between breadcrumb items */
.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    margin-left: var(--spacing-sm);
    color: var(--color-text-tertiary);
}

.breadcrumbs__link {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
    color: var(--color-accent-primary);
}

.breadcrumbs__current {
    color: var(--color-accent-primary);
    font-weight: var(--font-weight-medium);
}

/* ===========================================
   SLOTS SECTION
   Popular games grid display
   =========================================== */
.slots {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-dark);
}

/* Section titles */
.section-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
}

/* Slots grid - 6 items per row on desktop */
.slots__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

/* Individual slot card */
.slot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-secondary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.slot-card__link {
    display: block;
    position: relative;
}

.slot-card__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.slot-card:hover .slot-card__image {
    transform: scale(1.05);
}

/* Play overlay on hover */
.slot-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.slot-card:hover .slot-card__overlay {
    opacity: 1;
}

.slot-card__play {
    background: var(--gradient-gold);
    color: var(--color-bg-primary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
}

/* CTA button container */
.slots__cta {
    text-align: center;
}

/* Responsive slots grid */
@media (max-width: 1024px) {
    .slots__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .slots {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .slots__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .slots__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   CONTENT ARTICLE SECTION
   Main content area with rich text
   =========================================== */
.content {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-primary);
}

.content__section {
    margin-bottom: var(--spacing-3xl);
}

.content__section:last-child {
    margin-bottom: 0;
}

/* Lead paragraph - larger intro text */
.content__lead {
    font-size: var(--font-size-xl);
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
}

/* Section headings */
.content__heading {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.content__subheading {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

/* Paragraph styling */
.content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
}

/* Lists */
.content__list {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.content__list li {
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
    padding-left: var(--spacing-md);
}

/* Bullet points for unordered lists */
.content__list:not(.content__list--numbered) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--color-accent-primary);
    border-radius: 50%;
}

/* Numbered list styling */
.content__list--numbered {
    counter-reset: list-counter;
}

.content__list--numbered li {
    counter-increment: list-counter;
}

.content__list--numbered li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    color: var(--color-accent-primary);
    font-weight: var(--font-weight-bold);
    background: none;
    width: auto;
    height: auto;
}

/* Content CTA styling */
.content__cta {
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.content__cta--large {
    padding: var(--spacing-xl);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===========================================
   CTA BANNER COMPONENT
   Full-width promotional banners with overlay
   =========================================== */
.cta-banner {
    margin: var(--spacing-2xl) 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.cta-banner__link {
    display: block;
    position: relative;
}

.cta-banner__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.cta-banner:hover .cta-banner__image {
    transform: scale(1.03);
}

/* CTA overlay with text and button */
.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--spacing-2xl);
    gap: var(--spacing-md);
}

.cta-banner__text {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    max-width: 60%;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile CTA banner styles */
@media (max-width: 768px) {
    .cta-banner {
        margin: var(--spacing-xl) 0;
    }
    
    .cta-banner__overlay {
        background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 60%, transparent 100%);
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .cta-banner__text {
        font-size: var(--font-size-lg);
        max-width: 100%;
    }
}

/* ===========================================
   TABLE COMPONENT
   Responsive data tables
   =========================================== */
.table-wrapper {
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.content__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-secondary);
}

.content__table th,
.content__table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content__table thead {
    background: var(--color-bg-tertiary);
}

.content__table th {
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent-primary);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.content__table td {
    color: var(--color-text-secondary);
}

.content__table tbody tr:hover {
    background: var(--color-bg-hover);
}

/* Badge component for table */
.badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge--success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-success);
}

/* Mobile table adaptation - card style */
@media (max-width: 768px) {
    .table-wrapper {
        border: none;
        overflow: visible;
    }
    
    .content__table {
        border: none;
        background: transparent;
    }
    
    .content__table thead {
        display: none;
    }
    
    .content__table tbody {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .content__table tr {
        display: flex;
        flex-direction: column;
        background: var(--color-bg-secondary);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(212, 175, 55, 0.2);
        overflow: hidden;
    }
    
    .content__table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .content__table td:last-child {
        border-bottom: none;
    }
    
    /* Show data labels on mobile */
    .content__table td::before {
        content: attr(data-label);
        font-weight: var(--font-weight-semibold);
        color: var(--color-accent-primary);
        font-size: var(--font-size-sm);
    }
}

/* ===========================================
   FAQ SECTION
   Accordion-style FAQ items
   =========================================== */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq__item {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq__item:hover,
.faq__item[open] {
    border-color: var(--color-accent-primary);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition-fast);
}

.faq__question:hover {
    background: var(--color-bg-hover);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin: 0;
    padding-right: var(--spacing-md);
}

/* FAQ toggle icon */
.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--transition-base);
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent-primary);
    border-radius: 2px;
}

.faq__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq__icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform var(--transition-base);
}

/* Rotate icon when open */
.faq__item[open] .faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq__answer p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===========================================
   FOOTER COMPONENT
   Site footer with payment logos and links
   =========================================== */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

/* Payment methods section */
.footer__payments {
    margin-bottom: var(--spacing-2xl);
}

.footer__heading {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Payment icons grid */
.footer__payments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
}

.footer__payment-icon {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    filter: grayscale(30%);
}

.footer__payment-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Footer navigation */
.footer__nav {
    margin-bottom: var(--spacing-xl);
}

.footer__nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer__link {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-accent-primary);
}

/* Legal text */
.footer__legal {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.footer__legal p {
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
    margin-bottom: var(--spacing-sm);
}

/* Age restriction badge */
.footer__age {
    text-align: center;
}

.footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-error);
    color: var(--color-text-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
}

/* Mobile footer styles */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }
    
    .footer__payments-grid {
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .footer__payment-icon {
        height: 24px;
    }
    
    .footer__nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
}

/* ===========================================
   ANIMATIONS
   Subtle animations for enhanced UX
   =========================================== */

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to main sections */
.slots,
.content__section,
.faq__item {
    animation: fadeIn 0.5s ease-out;
}

/* Staggered animation for slot cards */
.slot-card {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.slot-card:nth-child(1) { animation-delay: 0.1s; }
.slot-card:nth-child(2) { animation-delay: 0.15s; }
.slot-card:nth-child(3) { animation-delay: 0.2s; }
.slot-card:nth-child(4) { animation-delay: 0.25s; }
.slot-card:nth-child(5) { animation-delay: 0.3s; }
.slot-card:nth-child(6) { animation-delay: 0.35s; }
.slot-card:nth-child(7) { animation-delay: 0.4s; }
.slot-card:nth-child(8) { animation-delay: 0.45s; }
.slot-card:nth-child(9) { animation-delay: 0.5s; }
.slot-card:nth-child(10) { animation-delay: 0.55s; }
.slot-card:nth-child(11) { animation-delay: 0.6s; }
.slot-card:nth-child(12) { animation-delay: 0.65s; }

/* ===========================================
   PRINT STYLES
   Optimized styles for printing
   =========================================== */
@media print {
    .header,
    .hero,
    .slots,
    .footer,
    .screen-lock,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .content {
        padding: 0;
    }
    
    .content__heading {
        color: black;
        border-color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

