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

:root {
    --primary-color: #D96F32;
    --primary-dark: #C75D2C;
    --primary-light: #f8b259;
    --secondary-color: #C75D2C;
    --accent-color: #F8B259;
    --text-color: #2d3748;
    --text-light: #4a5568;
    --bg-color: #F3E9DC;
    --bg-light: #faf7f2;
    --bg-dark: #e8dcc8;
    --border-color: #e2d5c0;
    --success-color: #48bb78;
    --error-color: #f56565;
    --warning-color: #ed8936;
    --shadow: 0 4px 6px -1px rgba(217, 111, 50, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(217, 111, 50, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

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

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

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

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

/* Header and Navigation */
.header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
}

.logo-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.nav-link[aria-current="page"] {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.login-btn, .register-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.login-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 111, 50, 0.3);
}

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

.register-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 111, 50, 0.3);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 111, 50, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 111, 50, 0.3);
}

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Registration and Login Steps */
.registration-steps, .login-steps {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--border-color);
}

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

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.login-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--border-radius);
    background-color: #374151;
    color: white;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 10px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons, .cta-buttons {
        justify-content: center;
    }

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

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

    .stats {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}

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

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

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .step, .feature-card {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero-section {
        background: none;
        color: black;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --text-color: #000000;
        --bg-color: #ffffff;
        --border-color: #000000;
    }
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.about-text-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.mission-vision {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mission-card p, .vision-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.team-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
}

.achievements-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.achievement {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.achievement p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Privacy Policy & Terms Styles */
.privacy-content, .terms-content, .disclaimer-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.privacy-section, .terms-section, .disclaimer-section {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.privacy-section h2, .terms-section h2, .disclaimer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.privacy-section h3, .terms-section h3, .disclaimer-section h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    color: var(--text-color);
}

.privacy-section p, .terms-section p, .disclaimer-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section ul, .terms-section ul, .disclaimer-section ul {
    color: var(--text-light);
    line-height: 1.7;
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li, .terms-section li, .disclaimer-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
}

.warning-box h4 {
    color: #92400e;
    margin-bottom: 10px;
}

.warning-box p {
    color: #92400e;
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-info-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.support-topics {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.topic-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.topic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.topic-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.topic-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.topic-link:hover {
    text-decoration: underline;
}

.response-times {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.response-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.response-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.response-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.response-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.office-hours {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.hours-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.hours-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.day {
    font-weight: 600;
    color: var(--text-color);
}

.time {
    color: var(--text-light);
}

.hours-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* FAQ Page Styles */
.faq-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
}

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

.faq-section {
    display: none;
}

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

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.faq-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 404 Page Styles */
.error-page {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.error-image {
    display: flex;
    justify-content: center;
}

.error-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.error-text {
    text-align: center;
}

.error-title {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.error-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.error-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links {
    margin-bottom: 60px;
}

.helpful-links h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: center;
}

.helpful-links p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

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

.link-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.link-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.link-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.link-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.link-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.link-btn:hover {
    text-decoration: underline;
}

.search-section {
    text-align: center;
}

.search-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.search-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.search-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* Games Page Styles */
.games-hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.games-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.games-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.game-categories {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-count {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-games {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

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

.game-image {
    height: 200px;
    overflow: hidden;
}

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.game-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-features-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.game-stats {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.stat-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.stat-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How to Play Page Styles */
.getting-started {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.game-guides {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.guide-section {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.guide-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.guide-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.guide-content ol {
    color: var(--text-light);
    line-height: 1.7;
    margin: 15px 0;
    padding-left: 20px;
}

.guide-content li {
    margin-bottom: 10px;
}

.guide-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

.gaming-tips {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.tip-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.responsible-gaming {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.responsible-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.responsible-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.responsible-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.responsible-text ul {
    color: var(--text-light);
    line-height: 1.7;
    margin: 20px 0;
    padding-left: 20px;
}

.responsible-text li {
    margin-bottom: 10px;
}

/* Games Section Styles */
.games-hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.games-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.games-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.game-categories {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.category-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-count {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-games {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

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

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.game-card:hover .game-emoji {
    transform: scale(1.05);
    font-size: 4.5rem;
}

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.game-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: var(--primary-light);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.game-stats {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.stat-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.getting-started {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--border-color);
}

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

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.game-guides {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.guide-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.guide-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.guide-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.guide-content ol {
    color: var(--text-light);
    line-height: 1.7;
    margin: 20px 0;
    padding-left: 20px;
}

.guide-content li {
    margin-bottom: 10px;
}

.guide-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 15px;
    font-style: italic;
}

.gaming-tips {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.tip-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.responsible-gaming {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.responsible-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.responsible-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.responsible-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.responsible-text ul {
    color: var(--text-light);
    line-height: 1.7;
    margin: 20px 0;
    padding-left: 20px;
}

.responsible-text li {
    margin-bottom: 10px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f7fafc;
        --text-light: #e2e8f0;
        --bg-color: #2d3748;
        --bg-light: #4a5568;
        --bg-dark: #1a202c;
        --border-color: #4a5568;
    }

    .step, .feature-card, .stat, .mission-card, .vision-card, .value-card, .team-member, .achievement, .privacy-section, .terms-section, .disclaimer-section, .contact-method, .contact-form, .topic-card, .response-card, .hours-content, .faq-item, .faq-contact, .link-card, .category-card, .game-card, .stat-item, .step-item, .guide-section, .tip-card, .responsible-content {
        background-color: #4a5568;
        color: var(--text-color);
        border-color: #718096;
    }
    
    .warning-box {
        background: #744210;
        border-color: #f8b259;
    }
    
    .warning-box h4,
    .warning-box p {
        color: #fef5e7;
    }
}

/* New Comprehensive Content Sections */
.guide-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.guide-overview h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.guide-overview p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.participation-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.participation-steps {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.participation-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.participation-step .step-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.participation-step .step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.participation-step .step-content ul {
    list-style: none;
    padding: 0;
}

.participation-step .step-content li {
    color: var(--text-light);
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.participation-step .step-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.features-detail-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-detail-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-detail-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.feature-detail-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-detail-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.expert-tips-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.expert-tips-section .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tip-detail-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tip-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.tip-detail-card .tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tip-detail-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tip-detail-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.security-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.security-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.winners-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.winner-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.winner-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.winner-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.winner-achievement {
    color: var(--text-light);
    line-height: 1.6;
}

.winners-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
    font-size: 1.1rem;
}

.app-download-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.download-steps {
    max-width: 600px;
    margin: 50px auto 0;
}

.download-step {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.download-step .step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.download-step h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.download-step ol {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 20px;
}

.download-step li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-home-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.faq-home-section .faq-grid {
    display: grid;
    gap: 25px;
    margin-top: 50px;
}

.faq-home-section .faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-home-section .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-home-section .faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.conclusion-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.conclusion-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.conclusion-content p:last-child {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .participation-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .features-detail-section .features-grid,
    .expert-tips-section .tips-grid,
    .winners-grid {
        grid-template-columns: 1fr;
    }
    
    .download-step {
        padding: 25px;
    }
    
    .conclusion-content p {
        font-size: 1rem;
    }
    
    .conclusion-content p:last-child {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .participation-step,
    .feature-detail-card,
    .tip-detail-card,
    .winner-card,
    .faq-home-section .faq-item {
        padding: 20px;
    }
    
    .download-step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} 