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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: linear-gradient(135deg, #72BF78 0%, #A0D683 50%, #D3EE98 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #000000;
}

h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000000;
}

h4 {
    font-size: 1.4rem;
    color: #000000;
}

p {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Header and Navigation */
.header {
    background: rgba(114, 191, 120, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(114, 191, 120, 0.3);
    border-bottom: 2px solid #A0D683;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-size: 2rem;
    margin: 0;
    color: #000000;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.logo-img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

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

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: #A0D683;
    color: #000000;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FEFF9F;
    transition: width 0.3s ease;
}

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

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

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

.btn-primary {
    background: #72BF78;
    color: #000000;
    box-shadow: 0 4px 15px rgba(114, 191, 120, 0.3);
}

.btn-primary:hover {
    background: #A0D683;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 214, 131, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #A0D683;
}

.btn-secondary:hover {
    background: #A0D683;
    color: #000000;
    transform: translateY(-2px);
}

.btn-login {
    background: #72BF78;
    color: #000000;
    border: 2px solid #A0D683;
    box-shadow: 0 4px 15px rgba(114, 191, 120, 0.3);
}

.btn-login:hover {
    background: #A0D683;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 214, 131, 0.4);
}

.btn-register {
    background: #72BF78;
    color: #000000;
    border: 2px solid #A0D683;
    box-shadow: 0 4px 15px rgba(114, 191, 120, 0.3);
}

.btn-register:hover {
    background: #A0D683;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 214, 131, 0.4);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 2rem 0;
}

/* Responsive Header */
@media (max-width: 768px) {
    .nav-container {
        min-height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        min-height: 55px;
        padding: 0 10px;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(114, 191, 120, 0.9) 0%, rgba(160, 214, 131, 0.9) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #000000;
}

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

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: rgba(211, 238, 152, 0.3);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(114, 191, 120, 0.2);
    background: rgba(160, 214, 131, 0.2);
}

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

/* Registration Steps */
.registration-steps {
    padding: 4rem 0;
    background: rgba(211, 238, 152, 0.2);
}

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

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #72BF78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(114, 191, 120, 0.3);
}

/* Games Preview */
.games-preview {
    padding: 4rem 0;
    background: rgba(211, 238, 152, 0.3);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: rgba(114, 191, 120, 0.95);
    padding: 3rem 0 1rem;
    margin-top: 2rem;
    border-top: 2px solid #A0D683;
}

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

.footer-section h4 {
    color: #000000;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FEFF9F;
}

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

.social-links a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #A0D683;
    color: #000000;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(114, 191, 120, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

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

    .nav-buttons {
        display: none;
    }

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

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

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

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* 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 #FEFF9F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: #72BF78;
        color: #000000;
    }
    
    .feature-card,
    .step,
    .game-card {
        background: #FFFFFF;
        color: #72BF78;
        border: 2px solid #72BF78;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgba(114, 191, 120, 0.9) 0%, rgba(160, 214, 131, 0.9) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

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

.mission-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* FAQ Page Styles */
.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-categories {
    margin: 3rem 0;
}

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

.faq-category h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #A0D683;
    padding-bottom: 0.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    background: rgba(160, 214, 131, 0.2);
}

.faq-item h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.faq-contact {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Privacy Policy Page Styles */
.privacy-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-sections {
    margin: 3rem 0;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-2px);
    background: rgba(160, 214, 131, 0.2);
}

.privacy-section h3 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.privacy-section h4 {
    color: #000000;
    margin: 1.5rem 0 1rem;
}

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

.privacy-footer {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Terms & Conditions Page Styles */
.terms-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-sections {
    margin: 3rem 0;
}

.terms-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    background: rgba(160, 214, 131, 0.2);
}

.terms-section h3 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.terms-section h4 {
    color: #000000;
    margin: 1.5rem 0 1rem;
}

.terms-footer {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Disclaimer Page Styles */
.disclaimer-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.disclaimer-sections {
    margin: 3rem 0;
}

.disclaimer-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.disclaimer-section:hover {
    transform: translateY(-2px);
    background: rgba(160, 214, 131, 0.2);
}

.disclaimer-section h3 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.disclaimer-section h4 {
    color: #000000;
    margin: 1.5rem 0 1rem;
}

.disclaimer-footer {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer-footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Contact Us Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.contact-method h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.contact-form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #FEFF9F;
    border-color: #A0D683;
    background: rgba(160, 214, 131, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.contact-info {
    margin: 4rem 0;
}

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

.contact-detail {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.contact-detail h4 {
    color: #000000;
    margin-bottom: 1rem;
}

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

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

.schedule-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.schedule-item h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.contact-tips {
    margin: 4rem 0;
}

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

.tip {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.tip h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.contact-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* 404 Error Page Styles */
.error-page {
    text-align: center;
    padding: 4rem 0;
    margin-top: 80px;
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: #72BF78;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(114, 191, 120, 0.5);
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

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

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

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

.link-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.link-card h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.link-card .btn {
    margin-top: 1rem;
}

.error-help {
    margin: 4rem 0;
}

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

.tip {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.tip h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.error-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* How to Register Section Styles */
.how-to-register {
    padding: 4rem 0;
    background: rgba(211, 238, 152, 0.2);
}

.how-to-register h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    font-size: 2.2rem;
}

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

.how-to-register .step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.how-to-register .step:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.how-to-register .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(114, 191, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #A0D683;
}

.how-to-register .step-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.how-to-register .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #72BF78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(114, 191, 120, 0.3);
}

.how-to-register .step h4 {
    color: #000000;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.how-to-register .step h4 strong {
    color: #FEFF9F;
    font-weight: 700;
}

.how-to-register .step p {
    color: #000000;
    line-height: 1.6;
}

.how-to-register .step p strong {
    color: #FEFF9F;
    font-weight: 600;
}

.how-to-register .cta-container {
    text-align: center;
    margin-top: 2rem;
}

/* How to Login Section Styles */
.how-to-login {
    padding: 4rem 0;
    background: rgba(114, 191, 120, 0.15);
}

.how-to-login h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    font-size: 2.2rem;
}

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

.how-to-login .step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.how-to-login .step:hover {
    transform: translateY(-5px);
    background: rgba(160, 214, 131, 0.2);
}

.how-to-login .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(160, 214, 131, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D3EE98;
}

.how-to-login .step-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.how-to-login .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #A0D683;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(160, 214, 131, 0.3);
}

.how-to-login .step h4 {
    color: #000000;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.how-to-login .step h4 strong {
    color: #FEFF9F;
    font-weight: 700;
}

.how-to-login .step p {
    color: #000000;
    line-height: 1.6;
}

.how-to-login .step p strong {
    color: #FEFF9F;
    font-weight: 600;
}

.how-to-login .cta-container {
    text-align: center;
    margin-top: 2rem;
}

/* Login Section Styles */
.login-section {
    padding: 4rem 0;
    background: rgba(211, 238, 152, 0.3);
}

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

.login-content h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.login-content h3 {
    color: #000000;
    margin: 2rem 0 1rem;
    font-size: 2.5rem;
}

.login-content p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.login-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

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

.login-content .btn {
    margin: 2rem 0;
    display: inline-block;
}

.login-note {
    margin-top: 2rem;
    font-size: 1rem;
}

.login-note a {
    color: #FEFF9F;
    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: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Register Section Styles */
.register-section {
    padding: 4rem 0;
    background: rgba(114, 191, 120, 0.2);
}

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

.register-content h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.register-content h3 {
    color: #000000;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.register-content p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.register-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.register-content ol li {
    color: #000000;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.register-content .btn {
    margin: 2rem 0;
    display: inline-block;
}

.register-note {
    margin-top: 2rem;
    font-size: 1rem;
}

.register-note a {
    color: #FEFF9F;
    text-decoration: none;
    font-weight: 600;
}

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

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

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

.hero-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .how-to-register .steps-container,
    .how-to-login .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-to-register .step,
    .how-to-login .step {
        padding: 1.5rem;
    }
    
    .how-to-register h3,
    .how-to-login h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .how-to-register .step-icon,
    .how-to-login .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .how-to-register .step-icon img,
    .how-to-login .step-icon img {
        width: 30px;
        height: 30px;
    }

    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .how-to-register,
    .how-to-login {
        padding: 3rem 0;
    }
    
    .how-to-register .step,
    .how-to-login .step {
        padding: 1.2rem;
    }
    
    .how-to-register h3,
    .how-to-login h3 {
        font-size: 1.6rem;
    }
    
    .how-to-register .step h4,
    .how-to-login .step h4 {
        font-size: 1.1rem;
    }

    .login-section,
    .register-section {
        padding: 3rem 0;
    }

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

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
































/* Games Slider Section Styles */
.games-slider-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #72BF78 0%, #A0D683 50%, #D3EE98 100%);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: 0;
}

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

/* Games Header */
.games-header {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.games-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.games-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.emoji {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.languages-badge {
    background: #72BF78;
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(114, 191, 120, 0.3);
}

/* Mobile Games Slider */
.mobile-games-slider {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(114, 191, 120, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(160, 214, 131, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

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

/* Mobile Slider Container */
.mobile-slider-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 400px;
}

/* Mobile Slides */
.mobile-slide {
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transform: scale(0.8) translateX(0px);
    opacity: 0.6;
    z-index: 1;
    min-width: 200px;
}

/* Active slide styling */
.mobile-slide.active {
    transform: scale(1) translateX(0px) !important;
    opacity: 1 !important;
    z-index: 5 !important;
}

/* Mobile Screen Frame */
.mobile-screen {
    width: 200px;
    height: 350px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

/* Game Screenshot */
.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(114, 191, 120, 0.1);
    border: 2px solid transparent;
}

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

.thumbnail-item.active {
    background: rgba(160, 214, 131, 0.3);
    border-color: #FEFF9F;
    transform: scale(1.1);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.thumbnail-name {
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Games Description */
.games-description {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.games-description p {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Desktop specific positioning for clean, non-overlapping layout */
@media (min-width: 1025px) {
    .mobile-slider {
        gap: 0;
        min-height: 500px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-slide {
        min-width: 220px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-slide.active {
        transform: translateY(-50%) scale(1) translateX(0px) !important;
        opacity: 1 !important;
        z-index: 10 !important;
        filter: blur(0px);
    }
    
    /* Adjacent slides - positioned to sides without overlap */
    .mobile-slide:not(.active) {
        filter: blur(0px);
    }
    
    /* First adjacent slides - left and right */
    .mobile-slide:not(.active):nth-child(2),
    .mobile-slide:not(.active):nth-child(4) {
        transform: translateY(-50%) scale(0.85) translateX(0px);
        z-index: 5;
        opacity: 0.8;
    }
    
    /* Second level slides - further out */
    .mobile-slide:not(.active):nth-child(1),
    .mobile-slide:not(.active):nth-child(5) {
        transform: translateY(-50%) scale(0.7) translateX(0px);
        z-index: 3;
        opacity: 0.6;
    }
}

/* Tablet specific positioning - closer side images */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-slider {
        gap: 0;
        min-height: 450px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-slide {
        min-width: 200px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-slide.active {
        transform: translateY(-50%) scale(1) translateX(0px) !important;
        opacity: 1 !important;
        z-index: 10 !important;
        filter: blur(0px);
    }
    
    /* Adjacent slides - closer positioning for tablet */
    .mobile-slide:not(.active) {
        filter: blur(0px);
    }
    
    /* First adjacent slides - closer to center */
    .mobile-slide:not(.active):nth-child(2),
    .mobile-slide:not(.active):nth-child(4) {
        transform: translateY(-50%) scale(0.8) translateX(0px);
        z-index: 5;
        opacity: 0.7;
    }
    
    /* Second level slides - closer positioning */
    .mobile-slide:not(.active):nth-child(1),
    .mobile-slide:not(.active):nth-child(5) {
        transform: translateY(-50%) scale(0.65) translateX(0px);
        z-index: 3;
        opacity: 0.5;
    }
}

/* Responsive Design for Mobile Slider */
@media (max-width: 1200px) {
    .mobile-screen {
        width: 180px;
        height: 315px;
    }
    
    .mobile-slider-container {
        padding: 1.5rem 0;
    }
    
    .mobile-slider {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .mobile-screen {
        width: 160px;
        height: 280px;
    }
    
    .mobile-slider-container {
        padding: 1rem 0;
        overflow: visible;
    }
    
    .mobile-slider {
        gap: 1rem;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        top: 40%;
    }
    
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .games-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .games-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-games-slider {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .mobile-screen {
        width: 140px;
        height: 245px;
    }
    
    .mobile-slider-container {
        padding: 2rem 0;
        overflow: visible;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-slider {
        gap: 0;
        justify-content: center;
        align-items: center;
        min-height: 350px;
        flex-wrap: nowrap;
        position: relative;
        width: 100%;
    }
    
    /* Mobile layout with partial previews */
    .mobile-slide {
        flex-shrink: 0;
        min-width: 140px;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-slide.active {
        transform: translateY(-50%) scale(1) translateX(0px) !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative;
    }
    
    /* Show partial previews on mobile - previous slide */
    .mobile-slide:not(.active):nth-child(1),
    .mobile-slide:not(.active):nth-child(2),
    .mobile-slide:not(.active):nth-child(3),
    .mobile-slide:not(.active):nth-child(4),
    .mobile-slide:not(.active):nth-child(5) {
        opacity: 0.6 !important;
        z-index: 5;
    }
    
    /* Previous slide - left side */
    .mobile-slide[data-slide="0"]:not(.active),
    .mobile-slide[data-slide="1"]:not(.active),
    .mobile-slide[data-slide="2"]:not(.active),
    .mobile-slide[data-slide="3"]:not(.active) {
        transform: translateY(-50%) scale(0.7) translateX(-80px) !important;
        opacity: 0.6 !important;
    }
    
    /* Next slide - right side */
    .mobile-slide[data-slide="1"]:not(.active),
    .mobile-slide[data-slide="2"]:not(.active),
    .mobile-slide[data-slide="3"]:not(.active),
    .mobile-slide[data-slide="4"]:not(.active) {
        transform: translateY(-50%) scale(0.7) translateX(80px) !important;
        opacity: 0.6 !important;
    }
    
    /* Handle edge cases for first and last slides */
    .mobile-slide[data-slide="0"].active ~ .mobile-slide[data-slide="1"] {
        transform: translateY(-50%) scale(0.7) translateX(80px) !important;
        opacity: 0.6 !important;
    }
    
    .mobile-slide[data-slide="4"].active ~ .mobile-slide[data-slide="3"] {
        transform: translateY(-50%) scale(0.7) translateX(-80px) !important;
        opacity: 0.6 !important;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        top: 35%;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .games-header {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .games-title h2 {
        font-size: 1.8rem;
    }
    
    .emoji {
        font-size: 1.5rem;
    }
    
    .languages-badge {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .game-thumbnails {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .thumbnail-item {
        padding: 0.6rem;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .mobile-games-slider {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }
    
    .mobile-screen {
        width: 120px;
        height: 210px;
    }
    
    .mobile-slider-container {
        padding: 1.5rem 0;
        overflow: visible;
    }
    
    .mobile-slider {
        gap: 0.5rem;
        min-height: 300px;
    }
    
    .mobile-slide {
        min-width: 120px;
    }
    
    /* Adjust positioning for smaller screens */
    .mobile-slide:not(.active):nth-child(1),
    .mobile-slide:not(.active):nth-child(2),
    .mobile-slide:not(.active):nth-child(3),
    .mobile-slide:not(.active):nth-child(4),
    .mobile-slide:not(.active):nth-child(5) {
        opacity: 0.6 !important;
        z-index: 5;
    }
    
    /* Previous slide - left side (closer positioning for small screens) */
    .mobile-slide[data-slide="0"]:not(.active),
    .mobile-slide[data-slide="1"]:not(.active),
    .mobile-slide[data-slide="2"]:not(.active),
    .mobile-slide[data-slide="3"]:not(.active) {
        transform: translateY(-50%) scale(0.7) translateX(-60px) !important;
        opacity: 0.6 !important;
    }
    
    /* Next slide - right side (closer positioning for small screens) */
    .mobile-slide[data-slide="1"]:not(.active),
    .mobile-slide[data-slide="2"]:not(.active),
    .mobile-slide[data-slide="3"]:not(.active),
    .mobile-slide[data-slide="4"]:not(.active) {
        transform: translateY(-50%) scale(0.7) translateX(60px) !important;
        opacity: 0.6 !important;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        top: 30%;
    }
    
    .slider-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-nav.prev {
        left: 2px;
    }
    
    .slider-nav.next {
        right: 2px;
    }
    
    .games-header {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .games-title h2 {
        font-size: 1.5rem;
    }
    
    .emoji {
        font-size: 1.2rem;
    }
    
    .languages-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .thumbnail-item {
        padding: 0.5rem;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
    
    .thumbnail-name {
        font-size: 0.6rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}




