/* UPI Withdrawal Games - Modern Casino Gaming Website */
/* Color Palette: #FFF2F2 (Pale Blush), #A9B5DF (Soft Lavender-Blue), #7886C7 (Muted Periwinkle), #2D336B (Deep Indigo), #1A1A1A (Dark Text) */

:root {
    /* Color Variables - Improved for Readability */
    --main-bg: #FFF2F2;           /* Pale Blush - Main Background */
    --secondary-bg: #A9B5DF;      /* Soft Lavender-Blue - Secondary Sections */
    --accent-color: #7886C7;      /* Muted Periwinkle - Interactive Elements */
    --primary-color: #2D336B;     /* Deep Indigo - Key CTAs, Headings, Links */
    --text-color: #1A1A1A;        /* Dark Text for Better Readability */
    --text-light: #4A4A4A;        /* Lighter text for secondary content */
    --text-white: #FFFFFF;        /* White text for dark backgrounds */
    
    /* Derived Colors for Hover States (within palette only) */
    --hover-accent: #8A96D1;      /* Lighter version of accent for hover */
    --hover-primary: #3D4A7B;     /* Lighter version of primary for hover */
    --hover-secondary: #B8C4E8;   /* Lighter version of secondary for hover */
    
    /* Shadows and Effects */
    --shadow-light: rgba(45, 51, 107, 0.1);
    --shadow-medium: rgba(45, 51, 107, 0.2);
    --shadow-heavy: rgba(45, 51, 107, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--main-bg);
    overflow-x: hidden;
    font-size: 16px;
}

/* Typography - Improved Readability */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
}

p, span, div, label {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
}

a:hover {
    color: var(--hover-accent);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
}

.btn:hover {
    background-color: var(--hover-primary);
    border-color: var(--hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

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

/* Header */
.header {
    background-color: #f8f9fa;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-light);
    border-bottom: 3px solid var(--accent-color);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #495057;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-color);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 1px;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login,
.btn-register {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-login:hover,
.btn-register:hover {
    background-color: var(--hover-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--text-white);
    line-height: 1.6;
}

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

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

.section-title {
    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 {
    background-color: var(--main-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
}

/* Registration Section */
.registration-section {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.step-card {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform var(--transition-medium);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-step {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
}

.btn-step:hover {
    background-color: var(--hover-accent);
    border-color: var(--hover-accent);
    color: var(--text-white);
}

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

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

.game-card {
    background-color: var(--main-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform var(--transition-medium);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

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

.game-content {
    padding: 1.5rem;
}

.game-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.game-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Game Category Emojis */
.game-category {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(45, 51, 107, 0.1);
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.game-category .emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

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

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

.footer-section ul li a {
    color: var(--text-white);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

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

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

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.875rem;
    opacity: 0.8;
    color: var(--text-white);
}

/* About Content Styles */
.about-content {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.about-card {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-content {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.category-btn {
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 16px;
}

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

.faq-item {
    background-color: var(--secondary-bg);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
    font-weight: 500;
}

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

.faq-answer {
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    color: var(--text-color);
    display: none;
    line-height: 1.7;
}

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

/* Privacy Policy Styles */
.privacy-content {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

.privacy-section {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.privacy-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-section p,
.privacy-section ul li {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

/* Contact Styles */
.contact-content {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.contact-info {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-form {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--main-bg);
    color: var(--text-color);
    transition: border-color var(--transition-fast);
    font-size: 16px;
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 51, 107, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Support Team Styles */
.support-content {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

.support-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

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

.support-card {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform var(--transition-medium);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-card p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
}

.chat-container {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.chat-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chat-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--main-bg);
    border-radius: 8px;
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    max-width: 80%;
    line-height: 1.5;
}

.message.user {
    background-color: var(--accent-color);
    color: var(--text-white);
    margin-left: auto;
}

.message.support {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.chat-input {
    display: flex;
    gap: 1rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--main-bg);
    color: var(--text-color);
    font-size: 16px;
}

.chat-input button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    font-size: 16px;
}

.chat-input button:hover {
    background-color: var(--hover-primary);
}

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

.error-section {
    background-color: var(--secondary-bg);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.error-code {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-description {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid,
    .steps-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-section,
    .features-section,
    .registration-section,
    .games-section {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .step-card,
    .feature-card,
    .about-card,
    .contact-info,
    .contact-form,
    .support-card,
    .privacy-section {
        padding: 1.5rem;
    }
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f8f9fa;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px var(--shadow-medium);
        border-top: 1px solid #e9ecef;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.6rem 1rem;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.75rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 0.75rem;
        font-size: 13px;
    }
}

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

@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(45, 51, 107, 0.3);
        --shadow-medium: rgba(45, 51, 107, 0.5);
        --shadow-heavy: rgba(45, 51, 107, 0.7);
    }
    
    .btn,
    .category-btn,
    .faq-question {
        border: 2px solid var(--text-color);
    }
}

@media (prefers-color-scheme: dark) {
    /* Maintain our custom palette even in dark mode preference */
    body {
        background-color: var(--main-bg);
        color: var(--text-color);
    }
}

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

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

/* Focus Styles */
.btn:focus,
.nav-menu a:focus,
.form-group input:focus,
.form-group textarea:focus,
.category-btn:focus,
.faq-question:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-medium);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-medium);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }
    
    .step-card,
    .feature-card,
    .about-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.login-content,
.register-content {
    padding-right: 2rem;
}

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

.login-content h3,
.register-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

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

.login-content ul li,
.register-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.login-content ul li::marker,
.register-content ol li::marker {
    color: var(--accent-color);
    font-weight: 600;
}

.login-content strong,
.register-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.login-content .btn,
.register-content .btn {
    margin: 1.5rem 0;
    display: inline-block;
}

.login-note,
.register-note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.login-note a,
.register-note a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
}

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

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

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

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

.hero-image img {
    max-width: 400px;
}

/* Responsive Design for Login/Register Sections */
@media (max-width: 768px) {
    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-content,
    .register-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image-login,
    .hero-image {
        order: 1;
    }
    
    .login-content h2,
    .register-content h2 {
        font-size: 2rem;
    }
    
    .login-content h3,
    .register-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-image-login img,
    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-section,
    .register-section {
        padding: 2rem 0;
    }
    
    .login-content h2,
    .register-content h2 {
        font-size: 1.75rem;
    }
    
    .login-content h3,
    .register-content h3 {
        font-size: 1.25rem;
    }
    
    .login-content p,
    .register-content p,
    .login-content ul li,
    .register-content ol li {
        font-size: 15px;
    }
    
    .hero-image-login img,
    .hero-image img {
        border-radius: 8px;
    }
}

/* Print Styles */
@media print {
    .hero-image-login img,
    .hero-image img {
        max-width: 300px;
        box-shadow: none;
    }
    
    .login-section,
    .register-section {
        page-break-inside: avoid;
    }
}

/* Mobile Slider Section */
.games-slider-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    overflow: hidden;
}

.games-slider-section .section-title {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1rem;
}

.games-slider-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: var(--text-white);
}

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

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.slider-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
    perspective: 1000px;
}

.slide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateX(0);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: all;
    z-index: 10;
}

.slide.prev {
    opacity: 0.6;
    transform: scale(0.7) translateX(-60%);
    z-index: 5;
}

.slide.next {
    opacity: 0.6;
    transform: scale(0.7) translateX(60%);
    z-index: 5;
}

.slide.prev-2 {
    opacity: 0.3;
    transform: scale(0.6) translateX(-120%);
    z-index: 1;
}

.slide.next-2 {
    opacity: 0.3;
    transform: scale(0.6) translateX(120%);
    z-index: 1;
}

/* Mobile Frame */
.mobile-frame {
    position: relative;
    width: 280px;
    height: 500px;
    margin-bottom: 1.5rem;
}

.mobile-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mobile-interface {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 5;
}

/* Game Thumbnails */
.game-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.thumbnail-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.slide.active .thumbnail-img {
    border-color: #FFD700;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.game-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.slide.active .game-name {
    opacity: 1;
    color: #FFD700;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-arrow-left {
        left: -40px;
    }
    
    .slider-arrow-right {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .mobile-slider-container {
        padding: 0 1rem;
    }
    
    .slider-track {
        height: 500px;
    }
    
    .mobile-frame {
        width: 240px;
        height: 420px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-left {
        left: -20px;
    }
    
    .slider-arrow-right {
        right: -20px;
    }
    
    .slide.prev {
        transform: scale(0.6) translateX(-80%);
    }
    
    .slide.next {
        transform: scale(0.6) translateX(80%);
    }
    
    .slide.prev-2 {
        transform: scale(0.5) translateX(-160%);
    }
    
    .slide.next-2 {
        transform: scale(0.5) translateX(160%);
    }
}

@media (max-width: 480px) {
    .games-slider-section {
        padding: 2rem 0;
    }
    
    .slider-track {
        height: 400px;
    }
    
    .mobile-frame {
        width: 200px;
        height: 350px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow-left {
        left: -10px;
    }
    
    .slider-arrow-right {
        right: -10px;
    }
    
    .thumbnail-img {
        width: 50px;
        height: 50px;
    }
    
    .game-name {
        font-size: 0.75rem;
    }
    
    .slider-dots {
        gap: 0.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Touch/Swipe Support */
@media (hover: none) and (pointer: coarse) {
    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1);
    }
    
    .dot:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
}

/* Animation Classes */
.slide.transitioning {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility */
.slider-arrow:focus,
.dot:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .slider-arrow,
    .slider-dots {
        display: none;
    }
    
    .slide {
        position: static;
        opacity: 1;
        transform: none;
        margin: 1rem 0;
    }
    
    .mobile-frame {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

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

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: transform var(--transition-fast);
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--text-white);
    opacity: 0.9;
    transition: all var(--transition-fast);
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #FFD700;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.btn-footer {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.btn-footer:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Enhanced Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

/* Enhanced Content Sections */
.content-section {
    padding: 5rem 0;
    background-color: var(--main-bg);
}

.content-section:nth-child(even) {
    background-color: var(--secondary-bg);
}

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

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

.content-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all var(--transition-medium);
    border: 1px solid rgba(45, 51, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-card h3 .emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

/* Emoji-based Content Styles */
.emoji-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--main-bg) 0%, var(--secondary-bg) 100%);
}

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

.emoji-item {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.emoji-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 15px 50px var(--shadow-medium);
}

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

.emoji-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.emoji-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced About Page Styles */
.about-content {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.about-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all var(--transition-medium);
    border: 1px solid rgba(45, 51, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-card h3 .emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

/* Enhanced FAQ Styles */
.faq-section {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.faq-item {
    background: var(--text-white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(45, 51, 107, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.faq-question {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.faq-question h3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question .emoji {
    font-size: 1.5rem;
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
    background: var(--text-white);
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

/* Enhanced Contact Styles */
.contact-section {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

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

.contact-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(45, 51, 107, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.contact-card .emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.contact-form {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-top: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(45, 51, 107, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--main-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(120, 134, 199, 0.1);
    background: var(--text-white);
}

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

/* Enhanced Terms & Disclaimer Styles */
.terms-section,
.disclaimer-section {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

.terms-content,
.disclaimer-content {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-top: 3rem;
    line-height: 1.8;
}

.terms-content h2,
.disclaimer-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.terms-content h2 .emoji,
.disclaimer-content h2 .emoji {
    font-size: 2.5rem;
}

.terms-content h3,
.disclaimer-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.terms-content p,
.disclaimer-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.terms-content ul,
.disclaimer-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-content li,
.disclaimer-content li {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Enhanced Live Chat Styles */
.live-chat-section {
    padding: 4rem 0;
    background-color: var(--main-bg);
}

.chat-container {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-top: 3rem;
    text-align: center;
}

.chat-header {
    margin-bottom: 2rem;
}

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

.chat-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.chat-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.chat-feature {
    padding: 2rem;
    background: var(--main-bg);
    border-radius: 15px;
    transition: all var(--transition-medium);
}

.chat-feature:hover {
    transform: translateY(-5px);
    background: var(--secondary-bg);
}

.chat-feature .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.chat-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.chat-feature p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
    }
    
    .content-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card,
    .about-card,
    .contact-card {
        padding: 2rem;
    }
    
    .emoji-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .emoji-item {
        padding: 1.5rem;
    }
    
    .emoji-item .emoji {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .terms-content,
    .disclaimer-content,
    .chat-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-card,
    .about-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .emoji-item .emoji {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .terms-content,
    .disclaimer-content,
    .chat-container {
        padding: 1.5rem;
    }
}
