/* ============================================
   VOX CASINO - DARK THEME STYLESHEET
   ============================================ */

/* === RESET & BASE STYLES === */
/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root variables for dark theme colors */
:root {
    /* Dark Theme Color Palette */
    --bg-primary: #0a0e1a;        /* Main background - deep dark blue */
    --bg-secondary: #141b2d;      /* Secondary background - slightly lighter */
    --bg-tertiary: #1e2838;      /* Tertiary background - cards/sections */
    --text-primary: #ffffff;     /* Primary text - white */
    --text-secondary: #b8c5d6;   /* Secondary text - light gray-blue */
    --text-muted: #7a8aa3;       /* Muted text - medium gray */
    --accent-primary: #ff6b35;   /* Primary accent - vibrant orange */
    --accent-secondary: #4a90e2; /* Secondary accent - blue */
    --accent-hover: #ff8c5a;     /* Hover state - lighter orange */
    --border-color: #2a3441;     /* Border color - dark gray */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* Base body styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Mobile screen lock - prevents horizontal scrolling */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER COMPONENT === */
.header {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 50px;
    width: auto;
    height: auto;
}

/* Navigation styles */
.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
}

/* Primary button in nav */
.nav-link.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-primary);
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
}

.nav-link.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* === BREADCRUMBS COMPONENT === */
.breadcrumbs {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumbs-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-list a:hover {
    color: var(--accent-primary);
}

.breadcrumbs-list li[aria-current="page"] {
    color: var(--text-primary);
}

/* === HERO BANNER COMPONENT === */
.hero-banner {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

/* Desktop banner display */
.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CTA Overlay - Semi-transparent block */
.banner-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 26, 0.7); /* Semi-transparent dark overlay */
    padding: 2rem;
}

.cta-content {
    background: rgba(30, 40, 56, 0.85); /* Semi-transparent block */
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-primary);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* === POPULAR SLOTS SECTION === */
.popular-slots {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Slots Grid - 6 columns on desktop */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.slot-card {
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.slot-link {
    display: block;
    width: 100%;
    height: 100%;
}

.slot-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* === CONTENT SECTION === */
.content-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.content-text {
    margin-bottom: 3rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* === TABLE COMPONENT === */
.table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
}

.table-caption {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: left;
}

.casino-table thead {
    background-color: var(--bg-secondary);
}

.casino-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.casino-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.casino-table tbody tr:hover {
    background-color: var(--bg-secondary);
    transition: var(--transition);
}

.casino-table tbody tr:last-child td {
    border-bottom: none;
}

/* === FOOTER COMPONENT === */
.footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

/* Payment logos grid */
.payment-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.payment-logo {
    background-color: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.payment-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-primary);
}

.payment-icon {
    max-width: 100px;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: brightness(0.9);
    transition: var(--transition);
}

.payment-logo:hover .payment-icon {
    filter: brightness(1.1);
}

/* Footer navigation */
.footer-nav {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-primary);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === RESPONSIVE DESIGN === */

/* Tablet styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .cta-content {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Hide desktop banner, show mobile */
    .banner-desktop {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    /* Mobile CTA adjustments - centered */
    .banner-cta-overlay {
        padding: 1rem;
    }

    .cta-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Mobile navigation */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile slots grid - 2 columns */
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Mobile content adjustments */
    .section-title,
    .content-title {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    /* Mobile table - responsive table design */
    .table-wrapper {
        padding: 0;
        margin: 1rem 0;
    }

    .casino-table {
        display: block;
        width: 100%;
    }

    .casino-table thead {
        display: none; /* Hide header on mobile */
    }

    .casino-table tbody,
    .casino-table tr,
    .casino-table td {
        display: block;
        width: 100%;
    }

    .casino-table tr {
        margin-bottom: 1rem;
        background-color: var(--bg-tertiary);
        border-radius: 8px;
        padding: 1rem;
        box-shadow: var(--shadow-sm);
    }

    .casino-table td {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .casino-table td:last-child {
        border-bottom: none;
    }

    /* Add data-label as pseudo-element before content */
    .casino-table td[data-label]::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--text-primary);
        display: inline-block;
        min-width: 140px;
    }

    /* Footer adjustments */
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }
}

/* Small mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .cta-description {
        font-size: 0.875rem;
    }

    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* === ACCESSIBILITY === */
/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Skip to main content link (hidden but accessible) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* === PERFORMANCE OPTIMIZATIONS === */
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

