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

:root {
    --primary-dark: #18230F;
    --primary-medium: #27391C;
    --primary-light: #255F38;
    --accent: #1F7D53;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-primary: #18230F;
    --text-secondary: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1000;
    transition: var(--transition);
}

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

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent);
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #1F7D53;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow);
}

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

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

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

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

.btn-login:hover {
    background: var(--accent);
}

.btn-register {
    background: var(--accent);
    color: var(--white);
}

.btn-register:hover {
    background: var(--primary-light);
}

.btn-login-large, .btn-register-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login-large {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: var(--white);
    border: 3px solid #FF8C00;
}

.btn-register-large {
    background: linear-gradient(135deg, #FF6B35, #FF8C00);
    color: var(--white);
    border: 3px solid #FF6B35;
}

.btn-login-large:hover, .btn-register-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
    border-color: #FFD700;
}

.btn-login-large:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.btn-register-large:hover {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
}

.btn-login-large:active, .btn-register-large:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
}

/* Button glow effect */
.btn-login-large::before, .btn-register-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-login-large:hover::before, .btn-register-large:hover::before {
    left: 100%;
}

/* Focus states for accessibility */
.btn-login-large:focus, .btn-register-large:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.5), 0 8px 25px rgba(255, 165, 0, 0.3);
}

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover {
    color: var(--accent);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    background: var(--white);
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray);
}

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

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--accent);
    padding-left: 10px;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--light-gray);
}

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

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

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

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

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

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 64px;
    height: 64px;
}

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

/* Login Section */
.login-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #18230F, #27391C);
    color: var(--white);
}

.login-section .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.login-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.login-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.login-actions {
    margin-top: 2rem;
}

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

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

.login-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    animation: slideInRight 0.8s ease-out 0.5s both;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.login-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile responsive for login section */
@media (max-width: 768px) {
    .login-section .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .login-content {
        text-align: center;
        max-width: 100%;
    }
    
    .login-content h2 {
        font-size: 2rem;
    }
    
    .login-image {
        max-width: 100%;
        order: -1;
    }
    
    .login-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .login-section .container {
        gap: 1.5rem;
    }
    
    .login-content h2 {
        font-size: 1.8rem;
    }
    
    .login-content p {
        font-size: 1rem;
    }
    
    .login-image img {
        max-width: 250px;
    }
}

/* Register Section */
.register-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #255F38, #1F7D53);
}

.register-section .container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.register-content {
    text-align: center;
    max-width: 100%;
}

.register-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.register-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    
    line-height: 1.8;
    color: var(--light-gray);
    animation: slideInUp 0.8s ease-out 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.register-actions {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.register-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.register-feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.register-feature-box h3 {
    color: var(--light-gray);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-feature-box p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.register-note a {
    color: var(--light-gray);
    text-decoration: underline;
}

.register-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: slideInUp 0.8s ease-out 0.7s both;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.register-image img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.register-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.register-section {
    position: relative;
}

.register-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.register-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Mobile responsive for register section */
@media (max-width: 768px) {
    .register-section .container {
        padding: 0 1rem;
    }
    
    .register-content h2 {
        font-size: 2rem;
    }
    
    .register-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .register-feature-box {
        padding: 1.5rem;
    }
    
    .register-image {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .register-image img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .register-content h2 {
        font-size: 1.8rem;
    }
    
    .register-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .register-features {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .register-feature-box {
        padding: 1rem;
    }
    
    .register-feature-box h3 {
        font-size: 1.1rem;
    }
    
    .register-image {
        flex-direction: column;
        gap: 1rem;
    }
    
    .register-image img {
        max-width: 200px;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-text {
    margin-bottom: 3rem;
}

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

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

.about-image {
    margin-top: 2rem;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* About Page Additional Styling */
.about-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    border-radius: 2px;
}

/* Values Section Styles */
.values-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.values-section .section-title {
    color: #1F7D53;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    width: 64px;
    height: 64px;
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

/* Team Section Styles */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-section .section-title {
    color: #1F7D53;
}

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

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.team-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-card .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Legal Pages Styles (Privacy Policy, Terms, Disclaimer) */
.legal-page {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.legal-page .section-title {
    color: #1F7D53;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    border: 1px solid rgba(31, 125, 83, 0.1);
}

.legal-content h1 {
    color: #1F7D53;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 4px solid #1F7D53;
    padding-bottom: 1rem;
    font-weight: 700;
}

.legal-content h2 {
    color: #255F38;
    font-size: 1.9rem;
    margin: 2.5rem 0 1rem 0;
    padding-left: 1.2rem;
    border-left: 5px solid #1F7D53;
    font-weight: 600;
}

.legal-content h3 {
    color: #18230F;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content p {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.05rem;
}

.legal-content ul, .legal-content ol {
    color: #333;
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.legal-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #1F7D53;
    font-weight: 700;
}

.legal-content a {
    color: #1F7D53;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.legal-content a:hover {
    border-bottom-color: #1F7D53;
    color: #255F38;
}

.legal-content blockquote {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-left: 5px solid #1F7D53;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(31, 125, 83, 0.1);
}

.legal-content .highlight-box {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border: 3px solid #1F7D53;
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(31, 125, 83, 0.15);
}

.legal-content .highlight-box h4 {
    color: #1F7D53;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-content .highlight-box p {
    color: #333;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.legal-content .date-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F7D53, #255F38);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(31, 125, 83, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #255F38, #1F7D53);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(31, 125, 83, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Responsive Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 3rem 0;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.6rem;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        padding-left: 0.8rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .legal-content ul, .legal-content ol {
        padding-left: 1.5rem;
    }
}

/* Games Slider Section */
.games-slider-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #18230F, #27391C);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="0.6" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.slider-header .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.language-badge {
    display: inline-block;
    background: #e74c3c;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.mobile-slider-container {
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.mobile-slide {
    flex: 0 0 300px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.8);
    position: relative;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.mobile-screen {
    background: transparent;
    border-radius: 25px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: none;
    border: none;
    position: relative;
}



.game-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.game-icon:hover {
    transform: scale(1.1);
}

.game-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
}

.thumbnail-item.active {
    opacity: 1;
    transform: scale(1);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.thumbnail-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    max-width: 80px;
}

.slider-slogan {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.slider-slogan p {
    font-size: 1.1rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive Design for Games Slider */
@media (max-width: 1024px) {
    .mobile-slide {
        flex: 0 0 280px;
    }
    
    .slider-header .section-title {
        font-size: 2.5rem;
    }
    
    .mobile-slider {
        gap: 1.2rem;
    }
}

@media (max-width: 900px) {
    .mobile-slider {
        gap: 1.3rem;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .slider-header .section-title {
        font-size: 2rem;
    }
    
    .mobile-games-slider {
        padding: 0 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .mobile-slide {
        flex: 0 0 250px;
    }
    
    .mobile-slider {
        gap: 1.5rem;
    }
    
    .game-thumbnails {
        gap: 1rem;
    }
    
    .thumbnail-item {
        flex: 0 0 80px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .slider-header .section-title {
        font-size: 1.8rem;
    }
    
    .language-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .mobile-slide {
        flex: 0 0 220px;
    }
    
    .mobile-screen {
        padding: 0.8rem;
    }
    
    .mobile-slider {
        gap: 2rem;
    }
    
    .game-thumbnails {
        gap: 0.8rem;
    }
    
    .thumbnail-item {
        flex: 0 0 70px;
    }
    
    .thumbnail-icon {
        width: 45px;
        height: 45px;
    }
    
    .thumbnail-name {
        font-size: 0.65rem;
        max-width: 60px;
    }
    
    .slider-slogan p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

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

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

.game-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-dark);
}

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

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    color: var(--accent);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: var(--white);
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--accent);
    color: var(--white);
}

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

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-medium);
    color: var(--light-gray);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .features-grid, .games-grid, .benefits-grid, .testimonials-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
a:focus, button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-dark: #000000;
        --primary-medium: #333333;
        --primary-light: #666666;
        --accent: #0066cc;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
} 