/* Vegas Casino APK - Main Stylesheet */

/* ColorHunt Palette Variables */
:root {
    --crimson-red: #DC143C;
    --bright-pink-red: #F75270;
    --soft-pastel-pink: #F7CAC9;
    --light-cream-peach: #FDEBD0;
    
    /* Text colors based on contrast rules */
    --text-on-dark: #FFFFFF;
    --text-on-light: #000000;
    
    /* Hover variants (slightly lighter/darker) */
    --crimson-red-hover: #B8112F;
    --bright-pink-red-hover: #E53E5C;
    --soft-pastel-pink-hover: #F4B8B6;
    --light-cream-peach-hover: #FBD7B8;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--light-cream-peach);
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-on-light);
}

h2 {
    font-size: 2rem;
    color: var(--text-on-light);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-on-light);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-on-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--crimson-red);
    color: var(--text-on-dark);
    border-color: var(--crimson-red);
}

.btn-primary:hover {
    background: var(--crimson-red-hover);
    border-color: var(--crimson-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--crimson-red);
    border-color: var(--crimson-red);
}

.btn-outline:hover {
    background: var(--crimson-red);
    color: var(--text-on-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: var(--soft-pastel-pink);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-on-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--crimson-red);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-on-light);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--soft-pastel-pink);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(220, 20, 60, 0.1);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-on-light);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a[aria-current="page"] {
    color: var(--crimson-red);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-cream-peach);
    padding: 10px 0;
    border-bottom: 1px solid var(--soft-pastel-pink);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--crimson-red);
}

.breadcrumb-list a {
    color: var(--crimson-red);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--crimson-red) 0%, var(--bright-pink-red) 100%);
    color: var(--text-on-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-on-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 60px 0;
}

.about-section {
    background: var(--light-cream-peach);
}

.features-section {
    background: var(--soft-pastel-pink);
}

.registration-section {
    background: var(--light-cream-peach);
}

.advantages-section {
    background: var(--soft-pastel-pink);
}

.faq-section {
    background: var(--light-cream-peach);
}

.cta-section {
    background: linear-gradient(135deg, var(--crimson-red), var(--bright-pink-red));
    color: var(--text-on-dark);
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-cream-peach);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-on-light);
}

/* Registration and Login Sections */
.register-section {
    background: var(--light-cream-peach);
    padding: 80px 0;
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.login-section {
    background: var(--soft-pastel-pink);
    padding: 80px 0;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.register-content,
.login-content {
    max-width: 600px;
}

.register-content h2,
.login-content h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
    text-align: left;
}

.register-content h3,
.login-content h3 {
    font-size: 1.8rem;
    color: var(--crimson-red);
    margin: 2rem 0 1.5rem 0;
    text-align: left;
}

.register-content p,
.login-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

/* Visual Steps */
.registration-steps-visual,
.login-steps-visual {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: var(--light-cream-peach);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
}

.step-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--crimson-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--crimson-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-on-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.step-content strong {
    color: var(--crimson-red);
    font-weight: 700;
}

/* Login Benefits */
.login-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.login-benefits li {
    background: var(--light-cream-peach);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--crimson-red);
    color: var(--text-on-light);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-benefits li:before {
    content: "✓";
    color: var(--crimson-red);
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Registration Images */
.register-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.register-images img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.register-images img:hover {
    transform: translateY(-5px);
}

/* Login Image */
.login-image {
    text-align: center;
    margin-top: 3rem;
}

.login-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Notes */
.register-note,
.login-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-on-light);
}

.register-note a,
.login-note a {
    color: var(--crimson-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-note a:hover,
.login-note a:hover {
    color: var(--crimson-red-hover);
    text-decoration: underline;
}

/* Games Slider Section */
.games-slider-section {
    background: var(--light-cream-peach);
    padding: 80px 0;
}

.games-slider-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 3rem;
}

.games-slider-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Image Display */
.main-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.main-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover {
    transform: translateY(-5px);
}

.main-game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 20, 60, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.nav-arrow:hover {
    background: var(--crimson-red);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: 15px;
}

.nav-arrow-right {
    right: 15px;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    gap: 0.8rem;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--crimson-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.thumbnail-item.active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    border: 3px solid var(--crimson-red);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.thumbnail-item.active .thumbnail-overlay {
    opacity: 1;
}

.game-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.go-button {
    background: var(--crimson-red);
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.go-button:hover {
    background: var(--crimson-red-hover);
    transform: scale(1.1);
}

/* Registration Steps */
.registration-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: var(--soft-pastel-pink);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--crimson-red);
}

.step h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-on-light);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: var(--light-cream-peach);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.advantage-item h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--text-on-light);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--soft-pastel-pink);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    background: var(--crimson-red);
    color: var(--text-on-dark);
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: var(--crimson-red-hover);
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    background: var(--light-cream-peach);
    color: var(--text-on-light);
}

/* CTA Section */
.cta-section h2 {
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-on-dark);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--crimson-red);
    color: var(--text-on-dark);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-on-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    color: var(--text-on-dark);
    opacity: 0.9;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--bright-pink-red);
    padding-top: 20px;
    text-align: center;
    color: var(--text-on-dark);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    /* Fix mobile viewport width issues */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-image {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix all sections for mobile */
    .about .container,
    .features .container,
    .register-section .container,
    .login-section .container,
    .games-slider-section .container,
    .advantages .container,
    .faq .container,
    .cta .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Fix breadcrumb */
    .breadcrumb .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Fix footer */
    .footer .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Ensure all elements fit within viewport */
    .hero,
    .about,
    .features,
    .register-section,
    .login-section,
    .games-slider-section,
    .advantages,
    .faq,
    .cta,
    .footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix any potential overflow issues */
    .hero-content,
    .hero-image,
    .about-content,
    .about-image,
    .features-grid,
    .register-content,
    .register-images,
    .login-content,
    .login-image,
    .games-slider-container,
    .advantages-grid,
    .faq-list,
    .cta-content {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
     /* Registration and Login Mobile Styles */
     .register-section .container,
     .login-section .container {
         display: block;
         grid-template-columns: none;
         gap: 0;
         text-align: center;
     }
     
     .register-content,
     .login-content {
         max-width: 100%;
         margin-bottom: 2rem;
         padding: 0 10px;
     }
     
     .register-content h2,
     .login-content h2 {
         font-size: 2rem;
         text-align: center;
         margin-bottom: 1.5rem;
     }
     
     .register-content h3,
     .login-content h3 {
         font-size: 1.5rem;
         text-align: center;
         margin: 1.5rem 0 1rem 0;
     }
     
     .register-content p,
     .login-content p {
         text-align: center;
         font-size: 1rem;
         line-height: 1.6;
         margin-bottom: 1rem;
     }
    
     /* Visual Steps Mobile Styles */
     .registration-steps-visual,
     .login-steps-visual {
         margin: 1.5rem 0;
     }
     
     .step-item {
         flex-direction: column;
         text-align: center;
         padding: 1rem;
         margin-bottom: 1rem;
     }
     
     .step-icon {
         margin-right: 0;
         margin-bottom: 1rem;
         align-self: center;
         width: 50px;
         height: 50px;
     }
     
     .step-icon img {
         width: 25px;
         height: 25px;
     }
     
     .step-content h4 {
         font-size: 1.1rem;
         margin-bottom: 0.5rem;
     }
     
     .step-content p {
         font-size: 0.9rem;
         line-height: 1.5;
     }
     
     /* Registration Images Mobile */
     .register-images {
         flex-direction: column;
         gap: 1rem;
         margin-top: 2rem;
         padding: 0 10px;
     }
     
     .register-images img {
         max-width: 100%;
         width: 100%;
         height: auto;
         border-radius: 10px;
     }
     
     /* Login Image Mobile */
     .login-image {
         margin-top: 2rem;
         padding: 0 10px;
     }
     
     .login-image img {
         max-width: 100%;
         width: 100%;
         height: auto;
         border-radius: 10px;
     }
     
     /* Login Benefits Mobile */
     .login-benefits {
         margin: 1.5rem 0;
         padding: 0 10px;
     }
     
     .login-benefits li {
         padding: 0.8rem 1rem;
         font-size: 0.9rem;
         margin-bottom: 0.5rem;
     }
     
     /* Mobile Button Styles */
     .register-content .btn,
     .login-content .btn {
         width: 100%;
         max-width: 280px;
         margin: 15px auto;
         display: block;
         padding: 12px 20px;
         font-size: 1rem;
     }
     
     /* Mobile Notes */
     .register-note,
     .login-note {
         text-align: center;
         margin-top: 1.5rem;
         font-size: 0.9rem;
         padding: 0 10px;
     }
    
    /* Games Slider Mobile Styles */
    .games-slider-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thumbnails-container {
        display: flex;
        gap: 0.6rem;
        max-width: 100%;
        overflow-x: auto;
        padding: 1rem 0;
        scrollbar-width: thin;
        scrollbar-color: var(--crimson-red) var(--light-cream-peach);
        justify-content: center;
        align-items: center;
    }
    
    .thumbnails-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .thumbnails-container::-webkit-scrollbar-track {
        background: var(--light-cream-peach);
        border-radius: 3px;
    }
    
    .thumbnails-container::-webkit-scrollbar-thumb {
        background: var(--crimson-red);
        border-radius: 3px;
    }
    
    .thumbnail-item {
        min-width: 80px;
        max-width: 80px;
        flex-shrink: 0;
        height: 80px;
    }
    
    .thumbnail-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .main-image-container {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
     .nav-arrow-right {
         right: 10px;
     }
     
     /* Additional Mobile Fixes for Register/Login Sections */
     .register-section {
         padding: 30px 0;
     }
     
     .login-section {
         padding: 30px 0;
     }
     
     /* Mobile Content Spacing */
     .register-content,
     .login-content {
         margin-bottom: 1.5rem;
     }
     
     /* Mobile List Styling */
     .register-content ul,
     .login-content ul {
         text-align: left;
         margin: 1rem 0;
         padding-left: 20px;
         max-width: 100%;
     }
     
     .register-content li,
     .login-content li {
         margin-bottom: 0.5rem;
         font-size: 0.95rem;
         line-height: 1.5;
     }
 }

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Extra small mobile thumbnails */
    .thumbnails-container {
        gap: 0.4rem;
        padding: 0.5rem 0;
    }
    
    .thumbnail-item {
        min-width: 70px;
        max-width: 70px;
        height: 70px;
    }
    
    .main-image-container {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .main-image-wrapper {
        max-width: 250px;
        width: 100%;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-arrow svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-arrow-left {
        left: 5px;
    }
    
    .nav-arrow-right {
        right: 5px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid var(--crimson-red);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, var(--crimson-red) 0%, var(--bright-pink-red) 100%);
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--text-on-dark);
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    color: var(--text-on-dark);
}

/* About page styles */
.about-story {
    background: var(--light-cream-peach);
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-image {
    text-align: center;
    margin-top: 2rem;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-values {
    background: var(--soft-pastel-pink);
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--light-cream-peach);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-item h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-on-light);
}

.team-section {
    background: var(--light-cream-peach);
    padding: 60px 0;
    text-align: center;
}

/* Privacy and Terms page styles */
.privacy-content,
.terms-content,
.disclaimer-content {
    background: var(--light-cream-peach);
    padding: 60px 0;
}

.privacy-intro,
.terms-intro,
.disclaimer-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--soft-pastel-pink);
}

.privacy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--soft-pastel-pink);
}

.privacy-section:last-child,
.terms-section:last-child,
.disclaimer-section:last-child {
    border-bottom: none;
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: var(--crimson-red);
    margin-bottom: 1.5rem;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--text-on-light);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.5rem;
    color: var(--text-on-light);
}

.privacy-section p,
.terms-section p,
.disclaimer-section p {
    color: var(--text-on-light);
}

/* Support page styles */
.support-content {
    background: var(--light-cream-peach);
    padding: 60px 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background: var(--soft-pastel-pink);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method img {
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.contact-method p {
    color: var(--text-on-light);
}

.support-faq {
    margin-bottom: 3rem;
}

.support-hours {
    margin-bottom: 3rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hours-item {
    background: var(--soft-pastel-pink);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.hours-item h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.hours-item p {
    color: var(--text-on-light);
}

.additional-resources {
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: var(--light-cream-peach);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--crimson-red);
}

.resource-item h3 {
    color: var(--crimson-red);
    margin-bottom: 1rem;
}

.resource-item p {
    color: var(--text-on-light);
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
