/* ========================================
   NV Casino - Dark Theme Stylesheet
   ========================================
   
   This stylesheet implements a modern dark theme
   optimized for casino/gaming websites with:
   - Full responsiveness (mobile-first approach)
   - Accessibility considerations
   - CSS custom properties for easy theming
   - Component-based organization
   
   Table of Contents:
   1. CSS Variables & Theme Colors
   2. Reset & Base Styles
   3. Typography
   4. Layout Components
   5. Header & Navigation
   6. Breadcrumbs
   7. Hero Banner
   8. Slots Grid
   9. Content Sections
   10. Tables (Mobile Responsive)
   11. Buttons & CTAs
   12. Footer
   13. Utility Classes
   14. Animations
   15. Media Queries (Responsive)
   ======================================== */

/* ========================================
   1. CSS Variables & Theme Colors
   ======================================== 
   Define all theme colors, spacing, and 
   typography variables for consistent styling
   throughout the website
*/
:root {
    /* Primary Colors - Gold/Yellow accent for casino feel */
    --color-primary: #FFD700;
    --color-primary-hover: #FFC107;
    --color-primary-dark: #B8860B;
    
    /* Secondary Colors - Deep purple for luxury feel */
    --color-secondary: #6B21A8;
    --color-secondary-hover: #7C3AED;
    
    /* Background Colors - Dark theme gradients */
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: #12121A;
    --bg-card-hover: #1A1A25;
    --bg-overlay: rgba(10, 10, 15, 0.85);
    --bg-overlay-light: rgba(10, 10, 15, 0.7);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #707070;
    --text-accent: #FFD700;
    
    /* Border Colors */
    --border-color: #2A2A35;
    --border-accent: #FFD70040;
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(180deg, #12121A 0%, #0A0A0F 100%);
    --gradient-card: linear-gradient(145deg, #1A1A25 0%, #12121A 100%);
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    
    /* 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 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container widths */
    --container-max: 1200px;
    --container-narrow: 900px;
}

/* ========================================
   2. Reset & Base Styles
   ======================================== 
   Normalize browser defaults and set up
   consistent base styling
*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(ellipse at top, rgba(107, 33, 168, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   3. Typography
   ======================================== 
   Heading styles and text formatting
*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-4xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: var(--text-3xl);
    color: var(--text-accent);
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-md);
}

h3 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   4. Layout Components
   ======================================== 
   Container and grid system
*/
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* ========================================
   5. Header & Navigation
   ======================================== 
   Fixed header with logo, nav menu, and CTA
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: var(--space-md) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Navigation menu */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-primary);
    background: rgba(255, 215, 0, 0.1);
    text-decoration: none;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: transform var(--transition-base);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Header CTA button */
.header-cta {
    flex-shrink: 0;
}

/* ========================================
   6. Breadcrumbs
   ======================================== 
   Navigation breadcrumbs for user orientation
*/
.breadcrumbs {
    background: var(--bg-card);
    padding: var(--space-md) 0;
    margin-top: 72px; /* Account for fixed header */
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: var(--space-sm);
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-primary);
}

/* ========================================
   7. Hero Banner
   ======================================== 
   Full-width banner with responsive images
   and centered CTA overlay
*/
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-darker);
}

.banner-picture {
    display: block;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Semi-transparent overlay block for CTA */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.banner-cta-block {
    background: var(--bg-overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.banner-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* ========================================
   8. Slots Grid
   ======================================== 
   Grid layout for popular slots
   6 images per row, rounded corners
*/
.popular-slots {
    padding: var(--space-3xl) 0;
    background: var(--gradient-dark);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-3xl);
    color: var(--text-accent);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: var(--space-md) auto 0;
    border-radius: var(--radius-full);
}

/* Slots grid - 6 columns on desktop */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Individual slot card */
.slot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.slot-link {
    display: block;
    width: 100%;
    height: 100%;
}

.slot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base);
}

.slot-card:hover .slot-img {
    transform: scale(1.05);
}

/* CTA below slots grid */
.slots-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========================================
   9. Content Sections
   ======================================== 
   Main content area styling
*/
.main-content {
    padding: var(--space-3xl) 0;
}

.content-article {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.article-header {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.article-body {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--border-color);
}

.content-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Feature list styling */
.feature-list {
    list-style: none;
    margin: var(--space-lg) 0;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Ordered list (steps) styling */
.steps-list {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
    counter-reset: step-counter;
}

.steps-list li {
    position: relative;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    padding-left: var(--space-md);
}

.steps-list li::marker {
    color: var(--color-primary);
    font-weight: bold;
}

/* ========================================
   10. Tables (Mobile Responsive)
   ======================================== 
   Responsive tables that stack on mobile
*/
.table-container {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.data-table thead {
    background: var(--bg-darker);
}

.data-table th {
    padding: var(--space-md);
    text-align: left;
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--color-primary);
    white-space: nowrap;
}

.data-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.data-table tbody tr {
    transition: background var(--transition-fast);
}

.data-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* ========================================
   11. Buttons & CTAs
   ======================================== 
   Button styles and call-to-action elements
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primary button - Gold gradient */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    text-decoration: none;
    color: var(--bg-dark);
}

/* CTA button - Larger, more prominent */
.btn-cta {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: pulse 2s infinite;
}

.btn-cta:hover,
.btn-cta:focus {
    transform: scale(1.05);
    text-decoration: none;
    color: var(--bg-dark);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-xl);
}

/* CTA box styling */
.cta-box {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent);
    margin: var(--space-xl) 0;
}

.cta-section {
    text-align: center;
}

/* ========================================
   11.5. Inline Text Banner
   ======================================== 
   Banner placed within article text for dilution
*/
.text-banner {
    position: relative;
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.text-banner-link {
    display: block;
    position: relative;
}

.text-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.text-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-overlay-light);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.text-banner-link:hover .text-banner-overlay,
.text-banner-link:focus .text-banner-overlay {
    opacity: 1;
}

.text-banner-cta {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

.text-banner-link:hover .text-banner-cta,
.text-banner-link:focus .text-banner-cta {
    transform: translateY(0);
}

/* Mobile adjustments for text banner */
@media screen and (max-width: 768px) {
    .text-banner {
        margin: var(--space-lg) 0;
    }
    
    .text-banner-cta {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-sm);
    }
}

@media screen and (max-width: 480px) {
    .text-banner-cta {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
    }
}

/* ========================================
   12. Footer
   ======================================== 
   Footer with payment logos and legal info
*/
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-title {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

/* Payment logos grid */
.payment-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-color);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.payment-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    filter: grayscale(30%);
}

.payment-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Footer bottom section */
.footer-bottom {
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.disclaimer {
    font-size: var(--text-xs);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   13. Utility Classes
   ======================================== 
   Helper classes for common patterns
*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-primary);
}

/* ========================================
   14. Animations
   ======================================== 
   Keyframe animations for interactive elements
*/
@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   15. Media Queries (Responsive)
   ======================================== 
   Breakpoints for tablet and mobile devices
*/

/* Tablet and below (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    /* Adjust slots grid to 4 columns */
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Reduce spacing */
    :root {
        --space-2xl: 2rem;
        --space-3xl: 3rem;
    }
}

/* Tablet (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: var(--text-3xl);
    }
    
    h2 {
        font-size: var(--text-2xl);
    }
    
    /* Header mobile layout - reduced sizes */
    .header {
        padding: var(--space-sm) 0;
    }
    
    .header-inner {
        gap: var(--space-sm);
    }
    
    .logo img {
        height: 30px;
    }
    
    .header-cta {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-sm);
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 36px;
        height: 36px;
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        width: 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-md);
        text-align: center;
        border-radius: var(--radius-md);
        background: var(--bg-card);
    }
    
    /* Adjust breadcrumbs for smaller header - thinner on mobile */
    .breadcrumbs {
        margin-top: 56px;
        padding: var(--space-xs) 0;
    }
    
    .breadcrumb-list {
        font-size: var(--text-xs);
        gap: var(--space-xs);
    }
    
    /* Slots grid to 3 columns */
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
    
    /* Banner CTA adjustments */
    .banner-cta-block {
        padding: var(--space-lg);
    }
    
    .banner-title {
        font-size: var(--text-2xl);
    }
    
    /* Content padding adjustments */
    .article-body {
        padding: var(--space-lg);
    }
    
    /* Responsive table - stack on mobile */
    .data-table thead {
        display: none;
    }
    
    .data-table,
    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block;
        width: 100%;
    }
    
    .data-table tr {
        margin-bottom: var(--space-md);
        background: var(--bg-darker);
        border-radius: var(--radius-md);
        padding: var(--space-md);
        border: 1px solid var(--border-color);
    }
    
    .data-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .data-table td:last-child {
        border-bottom: none;
    }
    
    .data-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-primary);
        margin-right: var(--space-md);
    }
    
    /* Payment logos */
    .payment-logo {
        height: 28px;
    }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    /* Smaller typography */
    :root {
        --text-3xl: 1.75rem;
        --text-4xl: 2rem;
    }
    
    /* Header even smaller on mobile */
    .logo img {
        height: 26px;
    }
    
    .header-cta {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .mobile-menu-toggle {
        width: 32px;
        height: 32px;
    }
    
    /* Slots grid to 2 columns on smallest screens */
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Full width buttons */
    .btn-cta,
    .btn-large {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
    }
    
    /* Smaller payment logos */
    .payment-logo {
        height: 24px;
    }
    
    /* Banner adjustments */
    .banner-cta-block {
        margin: var(--space-md);
        padding: var(--space-md);
    }
    
    .banner-title {
        font-size: var(--text-xl);
    }
    
    .banner-subtitle {
        font-size: var(--text-base);
    }
    
    /* Reduce container padding */
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Fix for mobile screen - prevent horizontal scroll */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero-banner,
    .banner-img {
        max-width: 100%;
    }
}

/* Print styles */
@media print {
    .header,
    .breadcrumbs,
    .hero-banner,
    .popular-slots,
    .footer,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .article-body {
        background: white;
        border: none;
        padding: 0;
    }
}

