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

:root {
    --primary-color: #F5F5F5; /* Light Gray / Off-White – for main background */
    --secondary-color: #48CFCB; /* Bright Teal – for primary buttons and highlights (CTAs) */
    --accent-color: #229799; /* Deep Teal – for accents, sections, or hover states */
    --text-color: #FFFFFF; /* White – for headers or highlighted text */
    --text-secondary: #424242; /* Dark Gray – for regular body text, icons, or subtle UI elements */
    --success-color: #48CFCB; /* Using bright teal for success */
    --warning-color: #229799; /* Using deep teal for warning */
    --error-color: #229799; /* Using deep teal for error */
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(66, 66, 66, 0.1);
    --shadow-hover: 0 8px 15px rgba(66, 66, 66, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--primary-color);
    min-height: 100vh;
    overflow-x: hidden;
}

/* 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(--secondary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1000;
}

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

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

/* Header and Navigation */
.header {
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(66, 66, 66, 0.1);
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(66, 66, 66, 0.2);
}

.nav-logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(72, 207, 203, 0.3);
    margin: 0;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-width: 120px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-login {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-login:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-register:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-step {
    background: var(--accent-color);
    color: var(--primary-color);
    margin-top: 1rem;
}

.btn-step:hover {
    background: var(--secondary-color);
}

.btn-footer {
    background: var(--secondary-color);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.btn-footer-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.btn-footer-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/public/images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--primary-color);
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
}

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

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

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

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

/* Registration Steps */
.registration-steps {
    padding: 80px 0;
    background: white;
}

.registration-steps h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h4 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--text-secondary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Games Preview */
.games-preview {
    padding: 80px 0;
    background: var(--primary-color);
}

.games-preview h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

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

.game-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
}

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

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--accent-color);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-color);
    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(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .hero p {
        font-size: 1rem;
    }

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

    .features h3,
    .registration-steps h3,
    .games-preview h3 {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-link {
        gap: 8px;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .features,
    .registration-steps,
    .games-preview {
        padding: 60px 0;
    }

    .feature-card,
    .step,
    .game-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-color: #ffffff;
        --text-secondary: #000000;
        --secondary-color: #00ffff;
    }
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/public/images/hero-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Us Page */
.about-content {
    padding: 80px 0;
    background: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-text h3 {
    color: var(--text-secondary);
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.about-text ul li {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-text ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(66, 66, 66, 0.15);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    color: var(--text-secondary);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.license-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.license-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.license-item h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.commitment-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.commitment-item h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--accent-color);
}

.cta-section h2 {
    color: var(--text-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ Page */
.faq-content {
    padding: 80px 0;
    background: var(--primary-color);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.faq-category {
    background: white;
    color: var(--text-secondary);
    border: 2px solid var(--secondary-color);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.faq-category.active,
.faq-category:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.faq-section {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.faq-section h2 {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

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

.faq-question:hover {
    background: rgba(72, 207, 203, 0.05);
}

.faq-question h3 {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: bold;
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(72, 207, 203, 0.02);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.contact-support {
    padding: 80px 0;
    background: var(--accent-color);
    text-align: center;
}

.contact-support h2 {
    color: var(--text-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-support p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Policy Pages */
.policy-content,
.terms-content,
.disclaimer-content {
    padding: 80px 0;
    background: var(--primary-color);
}

.policy-content .container,
.terms-content .container,
.disclaimer-content .container {
    max-width: 900px;
}

.policy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(66, 66, 66, 0.1);
}

.policy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.policy-section h2::after,
.terms-section h2::after,
.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.policy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--text-secondary);
    margin: 2.5rem 0 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.policy-section p,
.terms-section p,
.disclaimer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-section ul,
.terms-section ul,
.disclaimer-section ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li,
.terms-section ul li,
.disclaimer-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-info {
    background: rgba(72, 207, 203, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(72, 207, 203, 0.3);
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.important-notice {
    background: rgba(72, 207, 203, 0.1);
    border: 1px solid rgba(72, 207, 203, 0.3);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.important-notice h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Contact Us Page */
.contact-content {
    padding: 80px 0;
    background: var(--primary-color);
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.contact-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-intro p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(66, 66, 66, 0.1);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.contact-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: var(--secondary-color);
    padding: 15px;
}

.contact-method h3 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact-departments {
    margin-bottom: 4rem;
}

.contact-departments h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.contact-departments h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.department {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.department:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.department h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.department p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

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

.support-hours h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.support-hours h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.hours-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hours-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.hours-item h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.hours-item p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.quick-faq .faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-faq .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.quick-faq .faq-item h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.quick-faq .faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.faq-link {
    text-align: center;
    margin-top: 2rem;
}

.feedback-section {
    margin-bottom: 4rem;
}

.feedback-section h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.feedback-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.feedback-option {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feedback-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.feedback-option h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feedback-option p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.emergency-contact {
    margin-bottom: 4rem;
}

.emergency-contact h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.emergency-contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.emergency-item {
    background: rgba(72, 207, 203, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(72, 207, 203, 0.3);
    transition: var(--transition);
}

.emergency-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.emergency-item h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.emergency-item p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
}

.contact-form-section h2 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(66, 66, 66, 0.2);
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(72, 207, 203, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

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

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* 404 Error Page */
.error-page {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--primary-color);
}

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

.error-number {
    margin-bottom: 2rem;
}

.error-number h1 {
    font-size: 8rem;
    color: var(--secondary-color);
    margin: 0;
    text-shadow: 0 0 20px rgba(72, 207, 203, 0.3);
}

.error-message {
    margin-bottom: 3rem;
}

.error-message h2 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.error-message p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

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

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

.helpful-links h3 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.helpful-links p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.link-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.link-card h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.btn-link {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.search-section {
    margin-bottom: 4rem;
}

.search-section h3 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.search-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.back-to-gaming {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
}

.back-to-gaming h3 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.back-to-gaming p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.gaming-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

    body {
        background: white;
        color: black;
    }
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 12px rgba(72, 207, 203, 0.35);
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), 0 0 18px rgba(72, 207, 203, 0.5);
    transform: translateY(-2px) scale(1.05);
}

.back-to-top:focus {
    outline: 2px solid var(--text-color);
    outline-offset: 3px;
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Login Section */
.login-section {
    padding: 80px 0;
    background: var(--primary-color);
}

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

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

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

.login-content h3 {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

.login-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.login-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

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

.step-content h4 {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content h4 strong {
    color: var(--secondary-color);
}

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

.step-content p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.login-content ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.login-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.login-content .btn {
    margin-bottom: 1.5rem;
}

.login-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.login-note a:hover {
    text-decoration: underline;
}

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

.hero-image-login img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image-login img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Register Section */
.register-section {
    padding: 80px 0;
    background: white;
}

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

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

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

.register-content h3 {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

.register-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(66, 66, 66, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.register-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.register-step .step-icon {
    background: var(--accent-color);
}

.register-content .btn {
    margin-bottom: 1.5rem;
}

.register-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.register-note a:hover {
    text-decoration: underline;
}

.hero-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Responsive Design for Login/Register Sections */
@media (max-width: 768px) {
    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-content h2,
    .register-content h2 {
        font-size: 2rem;
    }

    .login-content h3,
    .register-content h3 {
        font-size: 1.3rem;
    }

    .login-step,
    .register-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-icon {
        align-self: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-login {
        order: -1;
    }
}

@media (max-width: 480px) {
    .login-section,
    .register-section {
        padding: 60px 0;
    }

    .login-content h2,
    .register-content h2 {
        font-size: 1.8rem;
    }

    .login-content p,
    .register-content p {
        font-size: 1rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon img {
        width: 25px;
        height: 25px;
    }
}

/* Games Slider Section */
.games-slider-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/public/images/slider-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.games-slider-section .container {
    position: relative;
    z-index: 2;
}

.slider-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.emoji {
    font-size: 2.5rem;
    margin-left: 0.5rem;
}

.language-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.slider-nav:hover {
    background: var(--text-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile Slider Container */
.mobile-slider-container {
    overflow: hidden;
    margin: 0 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 3rem;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.mobile-slider.transitioning {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-slide {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.85);
    filter: blur(1px);
    z-index: 1;
    cursor: pointer;
    position: relative;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 3;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mobile-slide:hover {
    transform: scale(0.85);
    opacity: 0.8;
    filter: blur(1px);
}

.mobile-slide.active:hover {
    transform: scale(1.02);
    opacity: 1;
    filter: blur(0);
}

/* Animation for slide selection feedback */
@keyframes slideSelected {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.mobile-slide.prev-slide {
    opacity: 0.5;
    transform: scale(0.75);
    filter: blur(2px);
    z-index: 2;
    margin-right: -20px;
}

.mobile-slide.next-slide {
    opacity: 0.5;
    transform: scale(0.75);
    filter: blur(2px);
    z-index: 2;
    margin-left: -20px;
}

/* Mobile Screen */
.mobile-screen {
    position: relative;
    width: 280px;
    height: 500px;
    background: transparent;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
}

.mobile-slide.active .mobile-screen {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transform: scale(1);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-slide.prev-slide .mobile-screen,
.mobile-slide.next-slide .mobile-screen {
    transform: scale(0.85);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    background: #f0f0f0;
}

.game-amount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Game Badge */
.game-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    opacity: 0.8;
}

.mobile-slide.active .game-badge {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-slide.prev-slide .game-badge,
.mobile-slide.next-slide .game-badge {
    transform: scale(0.85);
    opacity: 0.6;
}

.game-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
}

.game-name {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Game Thumbnails */
.game-thumbnails {
    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 cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem;
    border-radius: 12px;
    opacity: 0.6;
    border: 2px solid transparent;
    user-select: none;
}

.thumbnail-item:hover {
    opacity: 0.8;
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail-item.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail-name {
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    margin-top: 3rem;
}

.slider-slogan p {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Games Slider */
@media (max-width: 1024px) {
    .mobile-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .mobile-screen {
        width: 240px;
        height: 430px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mobile-slider-container {
        margin: 0 40px;
    }
}

@media (max-width: 768px) {
    .mobile-slide {
        flex: 0 0 280px;
    }
    
    .mobile-screen {
        width: 280px;
        height: 500px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-slider-container {
        margin: 0 20px;
    }
    
    .mobile-slider {
        gap: 1.5rem;
        justify-content: center;
        width: 100%;
        position: relative;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 80px 0;
    }
    
    .mobile-games-slider {
        padding: 0 20px;
    }
    
    .mobile-slider-container {
        margin: 0;
        overflow: visible;
        position: relative;
        min-height: 600px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-slide {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        opacity: 0.6;
        transform: scale(0.8);
        filter: blur(1px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-slide.active {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
        z-index: 3;
    }
    
    .mobile-slide.prev-slide,
    .mobile-slide.next-slide {
        opacity: 0.4;
        transform: scale(0.8);
        filter: blur(2px);
        position: relative;
        z-index: 2;
    }
    
    .mobile-slide.prev-slide {
        margin-right: -20px;
    }
    
    .mobile-slide.next-slide {
        margin-left: -20px;
    }
    
    /* Ensure all slides are visible on mobile */
    .mobile-slide {
        display: flex !important;
        visibility: visible !important;
    }
    
    .mobile-screen {
        width: 280px;
        height: 500px;
    }
    
    .mobile-slide.active .mobile-screen {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        border: 3px solid rgba(255, 255, 255, 0.6);
        transform: scale(1);
    }
    
    .mobile-slide.prev-slide .mobile-screen,
    .mobile-slide.next-slide .mobile-screen {
        transform: scale(0.85);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-slide.active .game-badge {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
        opacity: 1;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .mobile-slide.prev-slide .game-badge,
    .mobile-slide.next-slide .game-badge {
        transform: scale(0.9);
        opacity: 0.5;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .emoji {
        font-size: 2rem;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-item {
        padding: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .thumbnail-item:hover {
        transform: scale(1.05);
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .slider-slogan {
        text-align: center;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .games-slider-section {
        padding: 60px 0;
    }
    
    .mobile-games-slider {
        padding: 0 15px;
    }
    
    .mobile-slider-container {
        margin: 0;
        overflow: visible;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-slide {
        min-width: 260px;
        max-width: 300px;
    }
    
    .mobile-screen {
        width: 260px;
        height: 460px;
    }
    
    .mobile-slide.active {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
        z-index: 3;
    }
    
    .mobile-slide.prev-slide,
    .mobile-slide.next-slide {
        opacity: 0.2;
        transform: scale(0.6);
        filter: blur(4px);
    }
    
    .mobile-screen {
        width: 240px;
        height: 430px;
    }
    
    .mobile-slide.active .mobile-screen {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        border: 4px solid rgba(255, 255, 255, 0.8);
        transform: scale(1);
    }
    
    .mobile-slide.prev-slide .mobile-screen,
    .mobile-slide.next-slide .mobile-screen {
        transform: scale(0.7);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-slide.active .game-badge {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
        opacity: 1;
        border: 3px solid rgba(255, 255, 255, 0.8);
    }
    
    .mobile-slide.prev-slide .game-badge,
    .mobile-slide.next-slide .game-badge {
        transform: scale(0.8);
        opacity: 0.4;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .emoji {
        font-size: 1.5rem;
    }
    
    .slider-slogan p {
        font-size: 1rem;
    }
    
    .game-thumbnails {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .thumbnail-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
}
