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

/* Enhanced Nature-Inspired Styling */
body {
    background: linear-gradient(135deg, var(--creamy-beige) 0%, var(--mint-green) 100%);
    background-attachment: fixed;
    padding-top: 90px; /* Account for fixed header */
}

/* Header Animation */
@keyframes headerGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(52, 121, 40, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(52, 121, 40, 0.5);
    }
}

.header {
    animation: headerGlow 3s ease-in-out infinite;
}

/* Smooth color transitions for all elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Enhanced card styling with nature-inspired shadows */
.feature-card,
.game-card,
.team-member,
.contact-method,
.topic-card,
.helpful-link,
.search-suggestion {
    border: 1px solid rgba(52, 121, 40, 0.1);
    backdrop-filter: blur(10px);
}

/* Enhanced button styling with nature-inspired effects */
.btn-primary,
.btn-secondary,
.btn-register,
.btn-game,
.btn-emergency {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-register::before,
.btn-game::before,
.btn-emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-register:hover::before,
.btn-game:hover::before,
.btn-emergency:hover::before {
    left: 100%;
}

/* How to Register Section Styling */
.how-to-register-section {
    padding: 5rem 0;
    background: var(--creamy-beige);
    position: relative;
}

.how-to-register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sun-yellow));
}

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

.register-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.register-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: var(--forest-green);
}

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

.registration-steps {
    margin: 2rem 0;
}

.reg-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--mint-green);
    border-radius: 1rem;
    border: 1px solid rgba(52, 121, 40, 0.1);
    transition: var(--transition);
}

.reg-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.reg-step .step-icon {
    font-size: 2rem;
    background: var(--forest-green);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.reg-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--forest-green-hover);
}

.step-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.step-details h4 strong {
    color: var(--forest-green);
    font-weight: 700;
}

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

.btn-register-cta {
    background: var(--sun-yellow);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 2rem 0;
    transition: var(--transition);
    border: 2px solid var(--sun-yellow);
}

.btn-register-cta:hover {
    background: var(--sun-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.register-note {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

.register-note a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.register-note a:hover {
    color: var(--forest-green-hover);
    text-decoration: underline;
}

.register-visual {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    background: var(--forest-green);
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(52, 121, 40, 0.3);
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
}

/* How to Login Section Styling */
.how-to-login-section {
    padding: 5rem 0;
    background: var(--mint-green);
    position: relative;
}

.how-to-login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sun-yellow), var(--forest-green));
}

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

.login-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.login-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: var(--forest-green);
}

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

.login-steps {
    margin: 2rem 0;
}

.login-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--creamy-beige);
    border-radius: 1rem;
    border: 1px solid rgba(52, 121, 40, 0.1);
    transition: var(--transition);
}

.login-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.login-step .step-icon {
    font-size: 2rem;
    background: var(--forest-green);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.login-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--forest-green-hover);
}

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

.login-benefits li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.login-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--forest-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-login-cta {
    background: var(--forest-green);
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 2rem 0;
    transition: var(--transition);
    border: 2px solid var(--forest-green);
}

.btn-login-cta:hover {
    background: var(--forest-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-note {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

.login-note a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.login-note a:hover {
    color: var(--forest-green-hover);
    text-decoration: underline;
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for Register and Login Sections */
@media (max-width: 1024px) {
    .how-to-register-section .container,
    .how-to-login-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .register-visual {
        order: -1;
    }
    
    .register-content,
    .login-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Smaller padding for mobile */
    }
    
    .header {
        min-height: 80px;
    }
    
    .navbar {
        min-height: 80px;
        padding: 1rem 0;
    }
    
    .nav-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .how-to-register-section,
    .how-to-login-section {
        padding: 3rem 0;
    }
    
    .about-emoji-section {
        padding: 2rem 1rem;
        min-height: 350px;
    }
    
    .emoji-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .emoji-item {
        padding: 1rem 0.75rem;
    }
    
    .emoji-icon {
        font-size: 2rem;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .team-emoji {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }
    
    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
    }
    
    .reg-step,
    .login-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reg-step .step-icon,
    .login-step .step-icon {
        margin: 0 auto;
    }
    
    .register-visual {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
    
    .btn-register-cta,
    .btn-login-cta {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

:root {
    /* ColorHunt Palette - Strictly defined colors only */
    --forest-green: #347928;      /* Main background, prominent sections */
    --mint-green: #C0EBA6;       /* Secondary backgrounds, subtle overlays */
    --creamy-beige: #FFFBE6;     /* Cards, light sections, content areas */
    --sun-yellow: #FCCD2A;       /* Primary buttons, highlights, callouts */
    
    /* Typography Colors - Only white and near-black allowed */
    --text-white: #FFFFFF;       /* Text on darker backgrounds */
    --text-dark: #100F10;        /* Text on lighter backgrounds */
    
    /* Semantic Color Assignments */
    --primary-color: var(--forest-green);
    --secondary-color: var(--mint-green);
    --accent-color: var(--sun-yellow);
    --bg-primary: var(--creamy-beige);
    --bg-secondary: var(--mint-green);
    --bg-dark: var(--forest-green);
    --text-primary: var(--text-dark);
    --text-secondary: var(--text-dark);
    --border-color: var(--forest-green);
    
    /* Shadows and Effects */
    --shadow: 0 4px 6px -1px rgba(52, 121, 40, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(52, 121, 40, 0.2);
    --transition: all 0.3s ease;
    
    /* Hover State Variations (subtle palette variations) */
    --forest-green-hover: #2d6a22;
    --mint-green-hover: #b0d894;
    --creamy-beige-hover: #f5f0d6;
    --sun-yellow-hover: #f4c41a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--creamy-beige);
    font-size: 16px;
}

/* 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 */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--forest-green);
    color: var(--text-white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-hover) 100%);
    box-shadow: 0 4px 20px rgba(52, 121, 40, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--sun-yellow);
}

.navbar {
    padding: 1.5rem 0;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo .logo-text {
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-logo .logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-logo .logo-text:hover::before {
    transform: translateX(100%);
}

.nav-logo .logo-text:hover {
    color: var(--sun-yellow);
    transform: scale(1.05);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--sun-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--sun-yellow);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--forest-green);
    color: var(--text-white);
    border: 2px solid var(--forest-green);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--forest-green-hover);
    border-color: var(--sun-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 121, 40, 0.4);
}

.btn-secondary {
    background: var(--sun-yellow);
    color: var(--text-dark);
    border: 2px solid var(--sun-yellow);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--sun-yellow-hover);
    border-color: var(--forest-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 205, 42, 0.4);
}

.btn-login {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-login:hover,
.btn-login:focus {
    background: var(--text-white);
    color: var(--forest-green);
    border-color: var(--sun-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-login:hover,
.btn-login:focus {
    background: var(--text-white);
    color: var(--forest-green);
}

.btn-register {
    background: var(--sun-yellow);
    color: var(--text-dark);
    border: 2px solid var(--sun-yellow);
}

.btn-register:hover,
.btn-register:focus {
    background: var(--sun-yellow-hover);
    border-color: var(--forest-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 205, 42, 0.4);
}

.btn-register:hover,
.btn-register:focus {
    background: var(--sun-yellow-hover);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--mint-green) 100%);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--mint-green);
}

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

.feature-card {
    background: var(--creamy-beige);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    padding: 5rem 0;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--mint-green);
    border-radius: 1rem;
    transition: var(--transition);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--forest-green);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--forest-green);
    color: var(--text-white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--text-white);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: var(--mint-green);
}

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

.game-card {
    background: var(--creamy-beige);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.game-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-game {
    background: var(--sun-yellow);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-game:hover,
.btn-game:focus {
    background: var(--sun-yellow-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--forest-green);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--mint-green);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--mint-green);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover,
.social-links a:focus {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--mint-green);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-buttons {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: var(--forest-green);
        --secondary-color: var(--mint-green);
        --text-primary: var(--text-dark);
        --text-secondary: var(--text-dark);
        --bg-primary: var(--creamy-beige);
        --bg-secondary: var(--mint-green);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--mint-green) 100%);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.page-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Us Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.about-image .about-emoji-section {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--creamy-beige) 100%);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--forest-green);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-emoji-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.emoji-header h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.emoji-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.emoji-item {
    background: var(--creamy-beige);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    border: 2px solid var(--forest-green);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.emoji-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 121, 40, 0.3);
    border-color: var(--sun-yellow);
}

.emoji-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(252, 205, 42, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.emoji-item:hover::before {
    transform: translateX(100%);
}

.emoji-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.emoji-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emoji-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    width: 100%;
    background: var(--forest-green);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    border: 2px solid var(--sun-yellow);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-white);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sun-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.mission-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.features-highlight {
    padding: 3rem 0;
}

.features-highlight h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.feature-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.team-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1.5rem;
}

.team-section p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

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

.team-member {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.team-emoji {
    font-size: 4rem;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--creamy-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--forest-green);
    transition: var(--transition);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}

.team-emoji:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(52, 121, 40, 0.4);
    border-color: var(--sun-yellow);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ Page Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--forest-green);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-secondary);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-support {
    padding: 3rem 0;
    background: var(--forest-green);
    color: var(--text-white);
    text-align: center;
}

.contact-support h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-support p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Contact Us Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-green);
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.support-topics {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.support-topics h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.topic-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.topic-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.topic-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.topic-link {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.topic-link:hover {
    color: var(--mint-green-hover);
}

.emergency-support {
    padding: 3rem 0;
    background: var(--forest-green);
    color: var(--text-white);
    text-align: center;
}

.emergency-support h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.emergency-support p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-emergency {
    background: var(--forest-green);
    color: var(--text-white);
}

.btn-emergency:hover,
.btn-emergency:focus {
    background: var(--forest-green-hover);
}

/* Privacy Policy, Terms & Conditions, Disclaimer Pages */
.policy-content,
.terms-content,
.disclaimer-content {
    padding: 3rem 0;
}

.policy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.policy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.policy-section p,
.terms-section p,
.disclaimer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.policy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* 404 Error Page Styles */
.error-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-secondary);
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.error-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.error-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.helpful-links {
    margin-bottom: 3rem;
}

.helpful-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.helpful-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--creamy-beige);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.helpful-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--forest-green);
}

.link-icon {
    font-size: 1.5rem;
}

.search-suggestion {
    background: var(--creamy-beige);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.search-suggestion h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.search-suggestion p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-accent {
    background: var(--sun-yellow);
    color: var(--text-dark);
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--sun-yellow-hover);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .mission-values,
    .features-list,
    .team-grid,
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .hamburger {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero-section {
        background: var(--creamy-beige) !important;
        color: var(--text-dark) !important;
    }
}

/* Games Slider Section Styles - Line-wise Slider */
.games-slider-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--mint-green) 100%);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.games-slider-section .section-title {
    text-align: center;
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--sun-yellow);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.slider-arrow:hover {
    background: var(--sun-yellow-hover);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(252, 205, 42, 0.4);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

/* Slider Wrapper and Track */
.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
}

.slider-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    width: 300px;
    height: 500px;
}

/* Center slide (active) - fully visible and scaled up */
.slider-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    z-index: 3;
    filter: blur(0);
}

/* Left slide (previous) - blurred, semi-transparent, smaller, positioned left */
.slider-slide.prev {
    opacity: 0.6;
    visibility: visible;
    transform: translate(-120%, -50%) scale(0.8);
    z-index: 2;
    filter: blur(2px);
}

/* Right slide (next) - blurred, semi-transparent, smaller, positioned right */
.slider-slide.next {
    opacity: 0.6;
    visibility: visible;
    transform: translate(20%, -50%) scale(0.8);
    z-index: 2;
    filter: blur(2px);
}

/* Other slides (hidden) - very small and blurred */
.slider-slide:not(.active):not(.prev):not(.next) {
    opacity: 0.3;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 1;
    filter: blur(4px);
}

/* Mobile Interface Styling */
.mobile-interface {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.mobile-interface:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(52, 121, 40, 0.4);
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}


/* Thumbnail Navigation */
.thumbnail-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.thumbnail-item.active {
    background: var(--sun-yellow);
    border-color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(252, 205, 42, 0.4);
}

.thumbnail-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.1);
}

.thumbnail-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.thumbnail-item.active .thumbnail-label {
    color: var(--text-dark);
    text-shadow: none;
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .mobile-slider-container {
        padding: 0 70px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .slider-slide {
        width: 280px;
        height: 480px;
    }
    
    .slider-slide.prev {
        transform: translate(-110%, -50%) scale(0.75);
    }
    
    .slider-slide.next {
        transform: translate(10%, -50%) scale(0.75);
    }
    
    .thumbnail-navigation {
        gap: 0.75rem;
    }
    
    .thumbnail-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .games-slider-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .mobile-slider-container {
        padding: 0 60px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slider-wrapper {
        padding: 1rem;
    }
    
    .slider-track {
        min-height: 500px;
    }
    
    .slider-slide {
        width: 250px;
        height: 450px;
    }
    
    .slider-slide.prev {
        transform: translate(-100%, -50%) scale(0.7);
    }
    
    .slider-slide.next {
        transform: translate(0%, -50%) scale(0.7);
    }
    
    .thumbnail-navigation {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .thumbnail-image {
        width: 45px;
        height: 45px;
    }
    
    .thumbnail-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mobile-slider-container {
        padding: 0 50px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .slider-slide {
        width: 220px;
        height: 400px;
    }
    
    .slider-slide.prev {
        transform: translate(-90%, -50%) scale(0.65);
    }
    
    .slider-slide.next {
        transform: translate(-10%, -50%) scale(0.65);
    }
    
    .thumbnail-navigation {
        gap: 0.25rem;
    }
    
    .thumbnail-image {
        width: 40px;
        height: 40px;
    }
    
    .thumbnail-item {
        padding: 0.25rem;
    }
}

/* Smooth transitions for slider */
.slider-slide {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Auto-play indicator */
.auto-play-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-white);
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}
