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

:root {
    --primary-color: #06202B;      /* Deep Navy - for CTAs, key overlays, section dividers */
    --secondary-color: #077A7D;    /* Teal Green - for accents, UI elements */
    --accent-color: #7AE2CF;       /* Light Turquoise - for secondary backgrounds, highlights */
    --background-color: #F5EEDD;   /* Soft Warm Ivory - for main background */
    --text-dark: #000000;          /* Black for text on light backgrounds */
    --text-light: #FFFFFF;         /* White for text on dark backgrounds */
    --shadow: 0 4px 6px rgba(6, 32, 43, 0.2);
    --transition: all 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(6, 32, 43, 0.3);
    border-bottom: 2px solid var(--accent-color);
}

.header.hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(6, 32, 43, 0.3);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
}

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

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(122, 226, 207, 0.3);
}

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

.btn-login {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(122, 226, 207, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(7, 122, 125, 0.4);
}

.btn-register {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(7, 122, 125, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-dark);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 226, 207, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

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

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

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

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

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

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

/* Feature Card Styles */
.feature-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(6, 32, 43, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

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

/* Registration Steps */
.registration-steps {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

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

.steps-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(6, 32, 43, 0.3);
    border-radius: 8px;
}

/* Games Showcase */
.games-showcase {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.games-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

/* Game Icon Styles */
.game-icon {
    background-color: var(--secondary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(6, 32, 43, 0.3);
}

.game-emoji {
    font-size: 2.5rem;
    color: var(--text-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.game-card {
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(6, 32, 43, 0.3);
}

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

.game-card-content {
    padding: 1.5rem;
}

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

.game-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.game-card .btn {
    width: 100%;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--text-light);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    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 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: var(--accent-color);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

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

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

    .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(6, 32, 43, 0.05);
        padding: 2rem 0;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        border-radius: 0;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .auth-buttons {
        display: none;
    }

    .logo {
        font-size: 1.6rem;
        gap: 0.8rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.4rem;
        gap: 0.6rem;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        top: 70px;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

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

@media (prefers-contrast: high) {
    .btn {
        border: 2px solid var(--primary-color);
    }
}

/* Focus Styles */
.btn:focus,
a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading Animation */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.page-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

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

.faq-item {
    background-color: var(--accent-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--primary-color);
}

.faq-answer {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* About Us Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-section {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-section p {
    color: var(--text-dark);
}

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

.mission-item,
.value-item {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-item h4,
.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-item p,
.value-item p {
    color: var(--text-dark);
}

/* Policy, Terms, Disclaimer Styles */
.policy-section,
.terms-section,
.disclaimer-section {
    background-color: var(--accent-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

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

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.contact-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.support-category {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.support-category h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-category p {
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--background-color);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 32, 43, 0.1);
}

.contact-form .btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

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

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.helpful-links {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

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

.helpful-links ul {
    list-style: none;
    padding: 0;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.helpful-links a:hover {
    color: var(--primary-color);
}

/* Register and Login Section Styles */
.register-section,
.login-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

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

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

.register-content h2,
.login-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.register-content ul,
.login-content ul {
    color: var(--text-dark);
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.register-content li,
.login-content li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.register-content .btn,
.login-content .btn {
    margin: 2rem 0;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

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

.register-note a,
.login-note a {
    color: var(--secondary-color);
    font-weight: 600;
}

.register-note a:hover,
.login-note a:hover {
    color: var(--primary-color);
}

/* Steps Grid Layout */
.steps-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 32, 43, 0.15);
}

/* Step Icon Styles */
.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(6, 32, 43, 0.2);
}

.step-emoji {
    font-size: 2rem;
    color: var(--text-light);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.step-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

/* Hero Images */
.hero-image,
.hero-image-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.hero-image img:hover,
.hero-image-login img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(6, 32, 43, 0.25);
}

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

    .register-content,
    .login-content {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .register-section,
    .login-section {
        padding: 3rem 0;
    }

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

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

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

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

    .hero-image img,
    .hero-image-login img {
        max-width: 100%;
    }
}

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

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

    .step-item {
        padding: 1rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }
}

/* Games Slider Section */
.games-slider-section {
    padding: 2rem 0;
    background: var(--background-color);
}

.games-slider-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.games-slider-section p {
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: -20px;
}

.slider-arrow-right {
    right: -20px;
}

/* Main Slider */
.mobile-slider {
    position: relative;
    height: 400px;
    margin-bottom: 1.5rem;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 400px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 3;
    pointer-events: auto;
}

.slide.prev {
    opacity: 0.6;
    transform: translate(-120%, -50%) scale(0.8);
    z-index: 2;
    filter: blur(2px);
}

.slide.next {
    opacity: 0.6;
    transform: translate(20%, -50%) scale(0.8);
    z-index: 2;
    filter: blur(2px);
}

.slide.prev-left {
    opacity: 0.3;
    transform: translate(-180%, -50%) scale(0.6);
    z-index: 1;
    filter: blur(3px);
}

.slide.next-right {
    opacity: 0.3;
    transform: translate(80%, -50%) scale(0.6);
    z-index: 1;
    filter: blur(3px);
}

.slide.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
    z-index: 0;
    pointer-events: none;
}

.mobile-phone {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

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

.thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
    transform: scale(0.9);
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(0.95);
}

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

.thumbnail img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active img {
    border-color: var(--secondary-color);
}

.thumbnail span {
    font-size: 0.8rem;
    color: var(--text-dark);
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

/* Responsive Design for Slider */
@media (max-width: 1200px) {
    .mobile-slider {
        max-width: 1000px;
    }
    
    .slide.prev {
        transform: translate(-110%, -50%) scale(0.8);
    }
    
    .slide.next {
        transform: translate(10%, -50%) scale(0.8);
    }
    
    .slide.prev-left {
        transform: translate(-160%, -50%) scale(0.6);
    }
    
    .slide.next-right {
        transform: translate(60%, -50%) scale(0.6);
    }
}

@media (max-width: 1024px) {
    .mobile-slider {
        height: 600px;
        max-width: 900px;
    }
    
    .mobile-phone {
        width: 280px;
        height: 560px;
    }
    
    .slide.prev {
        transform: translate(-100%, -50%) scale(0.75);
    }
    
    .slide.next {
        transform: translate(0%, -50%) scale(0.75);
    }
    
    .slide.prev-left {
        transform: translate(-140%, -50%) scale(0.55);
    }
    
    .slide.next-right {
        transform: translate(40%, -50%) scale(0.55);
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .games-slider-section h2 {
        font-size: 2rem;
    }
    
    .games-slider-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .mobile-slider {
        height: 500px;
        max-width: 700px;
    }
    
    .mobile-phone {
        width: 250px;
        height: 500px;
    }
    
    .slide.prev {
        transform: translate(-90%, -50%) scale(0.7);
    }
    
    .slide.next {
        transform: translate(-10%, -50%) scale(0.7);
    }
    
    .slide.prev-left {
        transform: translate(-120%, -50%) scale(0.5);
    }
    
    .slide.next-right {
        transform: translate(20%, -50%) scale(0.5);
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-left {
        left: 5px;
    }
    
    .slider-arrow-right {
        right: 5px;
    }
    
    .thumbnail-nav {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .thumbnail {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .thumbnail img {
        width: 60px;
        height: 60px;
    }
    
    .thumbnail span {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .mobile-slider {
        max-width: 500px;
    }
    
    .slide.prev {
        transform: translate(-80%, -50%) scale(0.65);
    }
    
    .slide.next {
        transform: translate(-20%, -50%) scale(0.65);
    }
    
    .slide.prev-left {
        transform: translate(-100%, -50%) scale(0.45);
    }
    
    .slide.next-right {
        transform: translate(0%, -50%) scale(0.45);
    }
}

@media (max-width: 480px) {
    .mobile-slider {
        height: 450px;
        max-width: 400px;
    }
    
    .mobile-phone {
        width: 220px;
        height: 440px;
    }
    
    .slide.prev {
        transform: translate(-70%, -50%) scale(0.6);
    }
    
    .slide.next {
        transform: translate(-30%, -50%) scale(0.6);
    }
    
    .slide.prev-left {
        transform: translate(-90%, -50%) scale(0.4);
    }
    
    .slide.next-right {
        transform: translate(-10%, -50%) scale(0.4);
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .thumbnail-nav {
        gap: 0.8rem;
    }
    
    .thumbnail {
        min-width: 80px;
        padding: 0.6rem;
    }
    
    .thumbnail img {
        width: 50px;
        height: 50px;
    }
    
    .thumbnail span {
        font-size: 0.75rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .slider-arrow:hover {
        transform: translateY(-50%);
    }
    
    .thumbnail:hover {
        transform: none;
    }
    
    .thumbnail.active {
        transform: translateY(-3px);
    }
}

/* About Us Responsive Styles */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        max-height: 300px;
        width: 100%;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
}

@media (max-width: 480px) {
    .about-image img {
        max-height: 250px;
    }
    
    .about-grid {
        gap: 1.5rem;
    }
}
