/* CSS Variables for ColorHunt Palette with WCAG AA Compliant Contrast */
:root {
    --neon-pink: #FF0066;
    --deep-purple: #6A0066;
    --muted-lilac: #934790;
    --soft-beige: #E8D4B7;
    --white: #FFFFFF;
    --near-black: #1a1a1a;
    --dark-text: #2D2D2D;
    --medium-text: #4A4A4A;
    --light-text: #666666;
    --high-contrast-text: #1F1F1F;
    --high-contrast-bg: #F8F8F8;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--high-contrast-text);
    background: var(--high-contrast-bg);
    overflow-x: hidden;
}

/* Accessibility Improvements */
:focus {
    outline: 3px solid var(--neon-pink);
    outline-offset: 2px;
}

/* Typography with WCAG AA Compliant Colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--deep-purple);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    color: var(--deep-purple);
}

h3 {
    font-size: 2rem;
    color: var(--deep-purple);
}

h4 {
    font-size: 1.5rem;
    color: var(--deep-purple);
}

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

a {
    color: var(--deep-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
}

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

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

/* Header Styles */
.header {
    background: var(--deep-purple);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    border-radius: 8px;
}

.nav-logo h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--neon-pink);
    color: var(--white);
}

.btn-login,
.btn-register {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login {
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    background: transparent;
}

.btn-login:hover {
    background: var(--neon-pink);
    color: var(--white);
}

.btn-register {
    background: var(--neon-pink);
    color: var(--white);
    border: 2px solid var(--neon-pink);
}

.btn-register:hover {
    background: #e6005c;
    border-color: #e6005c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4);
}

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

/* Buttons with High Contrast */
.btn {
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--neon-pink);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.btn-primary:hover {
    background: #e6005c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--deep-purple);
    border: 2px solid var(--deep-purple);
}

.btn-secondary:hover {
    background: var(--deep-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: var(--neon-pink);
    border-color: var(--neon-pink);
}

.btn-login:hover,
.btn-login:focus {
    background: var(--neon-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

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

.btn-register:hover,
.btn-register:focus {
    background: #e6005c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.4);
}

.btn-step {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    margin-top: 1rem;
}

.btn-step:hover,
.btn-step:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-2px);
}

.btn-footer {
    background: var(--neon-pink);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--deep-purple), var(--muted-lilac));
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    margin-top: 0;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
    margin-top: 0;
}

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

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

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

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--high-contrast-bg);
}

.features-section h2 {
    text-align: center;
    color: var(--deep-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(106, 0, 102, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 0, 102, 0.2);
    border-color: var(--neon-pink);
}

.feature-card h3 {
    color: var(--deep-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Registration Section */
.register-section {
    padding: 4rem 0;
    background: var(--muted-lilac);
}

.register-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.register-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-box {
    background: var(--deep-purple);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-pink);
}

.step-icon {
    background: var(--neon-pink);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--white);
}

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

.step-content {
    flex: 1;
}

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

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

.btn-register {
    background: var(--deep-purple);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-register:hover {
    background: var(--white);
    color: var(--deep-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.register-note {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.9;
}

.register-note a {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 500;
}

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

.phone-screenshot {
    padding: 1rem;
}

.phone-screenshot img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Responsive Design for Register Section */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .phone-screenshot img {
        width: 400px;
        height: 320px;
    }
}

@media (max-width: 480px) {
    .register-content h2 {
        font-size: 2rem;
    }
    
    .register-content h3 {
        font-size: 1.5rem;
    }
    
    .step-box {
        padding: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .phone-screenshot img {
        width: 300px;
        height: 240px;
    }
}

/* Login Section */
.login-section {
    padding: 4rem 0;
    background: var(--soft-beige);
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.login-content h2 {
    color: var(--deep-purple);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.login-content p {
    color: var(--near-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.login-content h3 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.login-steps .step-box {
    background: var(--deep-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(106, 0, 102, 0.3);
    transition: all 0.3s ease;
}

.login-steps .step-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 0, 102, 0.4);
}

.login-steps .step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--neon-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

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

.login-steps .step-content {
    flex: 1;
}

.login-steps .step-number {
    display: inline-block;
    background: var(--neon-pink);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.login-steps .step-box h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.login-steps .step-box p {
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.login-content ul {
    color: var(--near-black);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.login-content ul li {
    margin-bottom: 0.5rem;
}

.login-content .btn-primary {
    background: var(--neon-pink);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.login-content .btn-primary:hover {
    background: #e6005c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4);
}

.login-note {
    color: var(--near-black);
    font-size: 1rem;
}

.login-note a {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

/* Responsive Design for Login Section */
@media (max-width: 768px) {
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-section h2 {
        font-size: 2rem;
    }
    
    .login-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-image-login {
        order: -1;
    }
    
    .step-box {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 3rem 0;
    }
    
    .login-section h2 {
        font-size: 1.8rem;
    }
    
    .login-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: var(--high-contrast-bg);
}

.games-section h2 {
    text-align: center;
    color: var(--deep-purple);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.games-section p {
    text-align: center;
    color: var(--high-contrast-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.game-card {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(106, 0, 102, 0.1);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 0, 102, 0.2);
    border-color: var(--neon-pink);
}

.game-card h3 {
    color: var(--deep-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-card p {
    color: var(--high-contrast-text);
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

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

/* Footer */
.footer {
    background: var(--deep-purple);
    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 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--white);
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--neon-pink);
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-bottom p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* FAQ Page Styles */
.faq-section {
    padding: 3rem 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
    text-align: left;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

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

/* About Us Page Styles */
.about-hero {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.mission-section,
.values-section,
.team-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

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

.mission-item,
.value-item,
.team-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
}

.commitment-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto 0;
}

.commitment-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--neon-pink);
}

.about-cta {
    text-align: center;
    padding: 3rem 0;
    background: var(--neon-pink);
    color: var(--white);
}

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

/* Privacy Policy Page Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    text-align: left;
    margin: 1.5rem 0 1rem;
    color: var(--deep-purple);
}

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

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

.privacy-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

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

/* Terms & Conditions Page Styles */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.terms-section h3 {
    text-align: left;
    margin: 1.5rem 0 1rem;
    color: var(--deep-purple);
}

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

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

.terms-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

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

/* Disclaimer Page Styles */
.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.disclaimer-section h3 {
    text-align: left;
    margin: 1.5rem 0 1rem;
    color: var(--deep-purple);
}

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

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

.disclaimer-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

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

/* Contact Us Page Styles */
.contact-hero {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
}

.contact-methods {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-form-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

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

.support-categories {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

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

.support-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-category h3 {
    margin-bottom: 1rem;
    text-align: left;
}

.support-category ul {
    list-style: none;
}

.support-category ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-category ul li:last-child {
    border-bottom: none;
}

.response-times {
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
}

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

.response-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time {
    display: inline-block;
    background: var(--neon-pink);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 1rem;
}

.contact-cta {
    text-align: center;
    padding: 3rem 0;
    background: var(--deep-purple);
    color: var(--white);
}

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

/* 404 Error Page Styles */
.error-section {
    padding: 3rem 0;
    text-align: center;
}

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

.error-number h1 {
    font-size: 8rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
}

.error-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.error-actions h3 {
    margin-bottom: 1.5rem;
}

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

.error-navigation {
    margin: 3rem 0;
}

.error-navigation h3 {
    margin-bottom: 2rem;
}

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

.nav-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.nav-card h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.error-help {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
}

.error-help h3 {
    margin-bottom: 1rem;
}

.error-help ul {
    list-style: none;
    margin-top: 1rem;
}

.error-help ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.error-help ul li:before {
    content: "•";
    color: var(--neon-pink);
    position: absolute;
    left: 0;
}

.error-help ul li a {
    color: var(--neon-pink);
    text-decoration: none;
}

.error-help ul li a:hover {
    text-decoration: underline;
}

.error-cta {
    margin: 3rem 0;
    background: var(--deep-purple);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.error-cta h3 {
    margin-bottom: 1rem;
}

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

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

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

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

    .nav-item {
        margin: 1rem 0;
    }

    .nav-auth {
        display: none;
    }

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

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

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

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .navigation-links {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

    .error-number h1 {
        font-size: 5rem;
    }

    .error-message h2 {
        font-size: 2rem;
    }
}

/* Loading and Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--neon-pink);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --high-contrast-text: #000000;
        --high-contrast-bg: #FFFFFF;
    }
    
    .btn-primary {
        background: var(--deep-purple);
        color: var(--white);
        border: 2px solid var(--deep-purple);
    }
    
    .btn-secondary {
        background: var(--white);
        color: var(--deep-purple);
        border: 2px solid var(--deep-purple);
    }
}

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-content {
        margin-top: 0;
    }
}

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

.games-slider-section h2 {
    text-align: center;
    color: var(--deep-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.slider-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.main-interface {
    position: relative;
}

.main-image-container {
    position: relative;
    overflow: hidden;
}

.main-game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon-pink);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: #e6005c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.4);
}

.nav-left {
    left: 20px;
}

.nav-right {
    right: 20px;
}

.game-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: start;
}

.game-card {
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 0, 102, 0.2);
    border-color: var(--neon-pink);
}

.game-card.active {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.3);
}

.game-card img {
    width: 100%;
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-info h3 {
    color: var(--deep-purple);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.go-btn {
    background: var(--neon-pink);
    color: var(--white);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.go-btn:hover {
    background: #e6005c;
    transform: scale(1.05);
}

/* Responsive Design for Games Slider */
@media (max-width: 768px) {
    .slider-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        order: -1;
    }
    
    .game-card {
        padding: 0.8rem;
    }
    
    .game-card img {
        max-width: 100px;
        height: 65px;
    }
    
    .game-info h4 {
        font-size: 0.8rem;
    }
    
    .go-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-left {
        left: 15px;
    }
    
    .nav-right {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .game-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .game-card {
        padding: 0.6rem;
    }
    
    .game-card img {
        max-width: 80px;
        height: 55px;
    }
    
    .game-info {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
    
    .game-info h4 {
        font-size: 0.75rem;
    }
    
    .go-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}

/* Responsive Header Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet-specific header adjustments */
    .header {
        padding: 0 2rem;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 1.5rem;
        justify-content: space-between;
    }
    
    .nav-logo {
        flex: 0 0 auto;
        margin-right: 2rem;
    }
    
    .nav-logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
    
    .nav-menu {
        flex: 1;
        justify-content: flex-end;
        gap: 2rem;
        margin-left: auto;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        white-space: nowrap;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        margin-left: 1rem;
    }
    
    .hamburger {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--deep-purple);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 0 2rem;
        margin-top: 50px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}
