/* ============================
   Verde Casino - Light Theme CSS
   Responsive Design for Mobile & Desktop
   ============================ */

/* CSS Custom Properties (Variables) for consistent theming */
:root {
    /* Color Palette - Light Theme */
    --primary-color: #28a745;          /* Verde Casino green */
    --primary-hover: #218838;          /* Darker green for hover states */
    --secondary-color: #ffc107;        /* Accent yellow/gold */
    --secondary-hover: #e0a800;        /* Darker yellow for hover */
    --background-color: #ffffff;       /* Main background */
    --background-light: #f8f9fa;       /* Light gray background */
    --text-primary: #212529;           /* Main text color */
    --text-secondary: #6c757d;         /* Secondary text color */
    --text-muted: #adb5bd;            /* Muted text color */
    --border-color: #dee2e6;          /* Light border color */
    --border-dark: #ced4da;           /* Darker border for emphasis */
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);      /* Light shadow */
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);    /* Medium shadow */
    --shadow-heavy: 0 8px 24px rgba(0,0,0,0.2);     /* Heavy shadow */
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-secondary: Georgia, 'Times New Roman', 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 */
    
    /* 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 */
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ============================
   RESET AND BASE STYLES
   ============================ */

/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base HTML and body styling */
html {
    font-size: 16px; /* Base font size for rem calculations */
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ============================
   ACCESSIBILITY STYLES
   ============================ */

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* 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;
    }
    
    .hero-cta .btn-hero {
        animation: none !important;
    }
}

/* ============================
   TYPOGRAPHY STYLES
   ============================ */

/* Heading styles with proper hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

/* Paragraph and text elements */
p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Link styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* List styles */
ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

li {
    margin-bottom: var(--spacing-xs);
}

/* ============================
   LAYOUT AND CONTAINER STYLES
   ============================ */

/* Main container for content */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Responsive container adjustments */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ============================
   HEADER AND NAVIGATION STYLES
   ============================ */

/* Main header styling */
.header {
    background-color: var(--background-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

/* Navigation container */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    position: relative;
}

/* Logo styling */
.nav-brand .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-lg);
}

.nav-menu a {
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a:focus {
    background-color: var(--background-light);
    text-decoration: none;
}

/* Navigation CTA buttons */
.nav-cta {
    display: flex;
    gap: var(--spacing-sm);
}

/* ============================
   BUTTON STYLES
   ============================ */

/* Base button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px; /* Minimum touch target size for accessibility */
    white-space: nowrap;
}

/* Primary button variant */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Outline button variant */
.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Hero button variants */
.btn-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2ecc71 100%);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Shine effect on hover */
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover,
.btn-hero:focus {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #27ae60 100%);
    border-color: var(--primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

.btn-hero:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-hero-outline {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2ecc71 100%);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Shine effect for outline button */
.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-outline:hover::before {
    left: 100%;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #27ae60 100%);
    border-color: white;
    color: white;
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

.btn-hero-outline:active {
    transform: translateY(-1px) scale(1.02);
}

/* Large button size */
.btn-large {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    min-height: 48px;
}

/* ============================
   HERO BANNER STYLES
   ============================ */

/* Hero banner container */
.hero-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero background image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Semi-transparent overlay for content readability */
.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

/* Hero content styling */
.hero-content {
    text-align: center;
    color: var(--text-primary);
    max-width: 800px;
    padding: var(--spacing-xl);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* Hero call-to-action buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--spacing-lg));
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Pulse animation for CTA buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(40, 167, 69, 0.7);
    }
}

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

/* Add subtle pulse animation to first button */
.hero-cta .btn-hero {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Add arrow indicator on buttons */
.btn-hero::after,
.btn-hero-outline::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.btn-hero:hover::after,
.btn-hero-outline:hover::after {
    transform: translateX(5px);
}

/* ============================
   POPULAR SLOTS SECTION
   ============================ */

/* Popular slots section container */
.popular-slots {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-light);
}

/* Section titles and subtitles */
.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

/* Slots grid layout - 6 items per row on desktop, responsive on mobile */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual slot item */
.slot-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.slot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

/* Slot images */
.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slot overlay for play button */
.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.8) 0%,
        rgba(40, 167, 69, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.slot-item:hover .slot-overlay {
    opacity: 1;
}

/* Play button in slot overlay */
.slot-play-btn {
    background-color: white;
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.slot-play-btn:hover,
.slot-play-btn:focus {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    transform: scale(1.05);
    text-decoration: none;
}

/* ============================
   MAIN CONTENT STYLES
   ============================ */

/* Main content area */
.main-content {
    padding: var(--spacing-2xl) 0;
    background-color: var(--background-color);
}

/* ============================
   BREADCRUMBS NAVIGATION
   ============================ */

/* Breadcrumbs container */
.breadcrumbs {
    background-color: var(--background-light);
    padding: var(--spacing-sm) 0;
}

/* Breadcrumb list */
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xs);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    margin: 0;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: var(--spacing-xs);
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

/* ============================
   ARTICLE AND CONTENT STYLES
   ============================ */

/* Article container */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Article header */
.article-header {
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.article-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.article-intro {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Content sections */
.content-section {
    margin-bottom: var(--spacing-3xl);
}

.section-heading {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* ============================
   STEP LIST STYLES
   ============================ */

/* Step-by-step guide styling */
.step-list {
    margin: var(--spacing-xl) 0;
}

.step-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-lg);
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.step-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================
   TABLE STYLES (RESPONSIVE)
   ============================ */

/* Table container for horizontal scrolling on mobile */
.table-container {
    width: 100%;
    margin: var(--spacing-xl) 0;
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

/* Base table styling */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-size: var(--font-size-sm);
}

/* Table caption for accessibility */
.table-caption {
    caption-side: top;
    padding: var(--spacing-md);
    font-weight: 600;
    text-align: left;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

/* Table header styling */
thead th {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Table body cell styling */
tbody td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

/* Alternating row colors for better readability */
tbody tr:nth-child(even) {
    background-color: var(--background-light);
}

tbody tr:hover {
    background-color: rgba(40, 167, 69, 0.1);
}

/* Strong text in tables (promo codes) */
tbody strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile table adaptations */
@media (max-width: 768px) {
    /* Hide table headers on mobile */
    .comparison-table thead,
    .troubleshooting-table thead,
    .promo-table thead {
        display: none;
    }
    
    /* Stack table cells vertically on mobile */
    .comparison-table tbody tr,
    .troubleshooting-table tbody tr,
    .promo-table tbody tr {
        display: block;
        margin-bottom: var(--spacing-lg);
        background-color: white;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-light);
        border: none;
    }
    
    .comparison-table tbody td,
    .troubleshooting-table tbody td,
    .promo-table tbody td {
        display: block;
        padding: var(--spacing-sm) var(--spacing-md);
        border: none;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 40%;
    }
    
    /* Add labels before each cell on mobile */
    .comparison-table tbody td::before,
    .troubleshooting-table tbody td::before,
    .promo-table tbody td::before {
        content: attr(data-label) ': ';
        position: absolute;
        left: var(--spacing-md);
        top: var(--spacing-sm);
        font-weight: 600;
        color: var(--primary-color);
        width: 35%;
    }
    
    .comparison-table tbody td:last-child,
    .troubleshooting-table tbody td:last-child,
    .promo-table tbody td:last-child {
        border-bottom: none;
    }
}

/* ============================
   FEATURE AND INFO BOXES
   ============================ */

/* Registration info box */
.registration-info,
.verification-process,
.initial-setup {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid var(--secondary-color);
}

/* Security features grid */
.security-features {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.feature-item {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Mobile features */
.mobile-features {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

/* Requirements and instruction lists */
.requirement-list {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
}

/* Troubleshooting steps */
.troubleshooting-steps {
    margin: var(--spacing-xl) 0;
}

.troubleshooting-steps h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

/* Promo instructions */
.promo-instructions {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-xl) 0;
}

.promo-instructions h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* ============================
   CTA SECTION STYLES
   ============================ */

/* Call-to-action section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: var(--spacing-3xl);
    border-radius: 32px;
    text-align: center;
    margin: var(--spacing-3xl) 0;
}

.cta-section .section-heading {
    color: white;
    border-bottom-color: var(--secondary-color);
}

.cta-section .section-heading::after {
    background-color: white;
}

.cta-section p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

/* CTA section buttons - green styling */
.cta-section .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus {
    background-color: var(--primary-hover);
    color: white;
    border-color: var(--primary-hover);
}

.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-outline:hover,
.cta-section .btn-outline:focus {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* CTA buttons container */
.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-note {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ============================
   FAQ SECTION STYLES
   ============================ */

/* FAQ section */
.faq-section {
    background-color: var(--background-light);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    margin: var(--spacing-3xl) 0;
}

/* FAQ list */
.faq-list {
    margin: var(--spacing-xl) 0;
}

/* Individual FAQ item */
.faq-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

/* FAQ question styling */
.faq-question {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    margin: 0;
    font-size: var(--font-size-lg);
    cursor: pointer;
    position: relative;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--primary-hover);
}

/* FAQ answer styling */
.faq-answer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================
   FOOTER STYLES
   ============================ */

/* Main footer styling */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Payment methods section */
.payment-methods {
    margin-bottom: var(--spacing-3xl);
    text-align: center;
}

.footer-heading {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}

/* Payment methods grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

/* Payment logo images */
.payment-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.payment-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer links section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover,
.footer-column a:focus {
    color: white;
    text-decoration: underline;
}

/* Footer bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--font-size-sm);
}

.footer-badges {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.age-badge,
.responsible-gaming {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: var(--font-size-xs);
}

/* ============================
   MOBILE NAVIGATION STYLES
   ============================ */

/* Mobile menu toggle and navigation */
@media (max-width: 768px) {
    /* Hide mobile menu toggle */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Hide desktop navigation menu */
    .nav-menu {
        display: none;
    }
    
    /* Mobile CTA buttons - keep visible */
    .nav-cta {
        display: flex;
        gap: var(--spacing-sm);
    }
    
    .nav-cta .btn {
        justify-content: center;
    }
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    /* Typography adjustments */
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .article-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-heading {
        font-size: var(--font-size-xl);
    }
    
    /* Spacing adjustments */
    .popular-slots {
        padding: var(--spacing-2xl) 0;
    }
    
    .main-content {
        padding: var(--spacing-xl) 0;
    }
    
    .content-section {
        margin-bottom: var(--spacing-2xl);
    }
    
    /* Hero adjustments */
    .hero-banner {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-top: calc(-1 * var(--spacing-md));
        gap: var(--spacing-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Ensure buttons remain attractive on mobile */
    .btn-hero,
    .btn-hero-outline {
        min-height: 50px;
        font-size: var(--font-size-base);
    }
    
    /* Slots grid adjustments */
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Step list mobile adjustments */
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    /* Footer adjustments */
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .payment-logo {
        height: 30px;
    }
}

/* Tablet Styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Desktop Styles (1025px and up) */
@media (min-width: 1025px) {
    .slots-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--spacing-2xl);
    }
    
    .hero-content {
        padding: var(--spacing-3xl);
    }
}

/* ============================
   PRINT STYLES
   ============================ */

/* Print-specific styles for better document printing */
@media print {
    /* Hide non-essential elements when printing */
    .header,
    .hero-banner,
    .popular-slots,
    .nav-cta,
    .cta-section,
    .footer {
        display: none;
    }
    
    /* Adjust colors for print */
    body {
        background: white;
        color: black;
    }
    
    /* Ensure proper page breaks */
    .content-section {
        page-break-inside: avoid;
    }
    
    /* Adjust table styling for print */
    table {
        border-collapse: collapse;
        width: 100%;
    }
    
    th, td {
        border: 1px solid black;
        padding: 8px;
    }
}

/* ============================
   UTILITY CLASSES
   ============================ */

/* Screen reader only content */
.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;
}

/* Text alignment utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Margin utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ============================
   END OF STYLESHEET
   ============================ */
