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

:root {
    --primary-color: #4B164C;
    --secondary-color: #DD88CF;
    --accent-color: #F8E7F6;
    --background-color: #F5F5F5;
    --text-light: #F5F5F5;
    --text-dark: #4B164C;
    --text-gray: #4B164C;
    --border-color: #DD88CF;
    --shadow: 0 4px 6px rgba(75, 22, 76, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-color);
    min-height: 100vh;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

/* 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 */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

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

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

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

/* Header and Navigation */
.header {
    background: #4B1248;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-logo h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

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

.nav-item {
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link:focus {
    color: #E091D3;
    background: rgba(255, 255, 255, 0.1);
}

.login-btn {
    background: #E091D3;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: var(--transition);
}

.login-btn:hover,
.login-btn:focus {
    background: #DD88CF;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(224, 145, 211, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(75, 22, 76, 0.3);
}

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

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

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

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

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

.btn-register:hover,
.btn-register:focus {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Section spacing for smooth scrolling */
section[id] {
    scroll-margin-top: 80px; /* Ensure sections don't get hidden behind header */
}

/* Hero Section */
.hero-section {
    background: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(75, 22, 76, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 2rem;
}

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

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

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

.step {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(75, 22, 76, 0.15);
}

.step-emoji {
    font-size: 2rem;
    display: block;
    text-align: center;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Login Steps Section */
.login-steps {
    padding: 4rem 0;
    background: var(--text-light);
}

.login-steps h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.login-steps .section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.forgot-password {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.forgot-password p {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.forgot-password strong {
    color: var(--secondary-color);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--accent-color);
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
}

.features-section h3 {
    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;
    margin-top: 2rem;
}

.feature {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    box-shadow: 0 8px 20px rgba(75, 22, 76, 0.15);
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1;
}

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

.feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--background-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

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

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

/* Footer */
.footer {
    background: #4B1248;
    color: #ffffff;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    color: #E091D3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
    color: #ffffff;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #E091D3;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: #DD88CF;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 145, 211, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #E091D3;
    box-shadow: 0 0 0 3px rgba(224, 145, 211, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #E091D3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #DD88CF;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 145, 211, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4B1248;
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

    /* Hero Section Mobile Styles */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 2rem 20px;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-width: 80%;
    }

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

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

    .hero-section p {
        font-size: 1rem;
    }

    .registration-steps h3,
    .features-section h3,
    .cta-section h3 {
        font-size: 2rem;
    }

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

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

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

    .step-number {
        margin: 0 auto 1rem;
    }

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

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

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

    .newsletter-form button {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

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

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

    .registration-steps,
    .features-section,
    .cta-section {
        padding: 2rem 0;
    }

    .step,
    .feature {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header Styles */
.page-header {
    background: var(--accent-color);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Content Section Styles */
.content-section {
    padding: 3rem 0;
    background: var(--background-color);
}

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

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-wrapper h3 {
    color: var(--accent-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 3rem 0;
    background: var(--background-color);
}

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--text-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-emoji {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(75, 22, 76, 0.15);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.support-topics h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-topics ul {
    list-style: none;
    padding: 0;
}

.support-topics ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

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

/* Contact Form Styles */
.contact-form-container {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(221, 136, 207, 0.2);
}

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

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

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

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

/* FAQ Preview Styles */
.faq-preview {
    padding: 3rem 0;
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.faq-preview h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-preview p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.faq-item {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

/* About Us Page Styles */
.about-hero {
    padding: 3rem 0;
    background: var(--background-color);
}

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

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

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

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.mission-section {
    padding: 3rem 0;
    background: var(--accent-color);
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.mission-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--secondary-color);
    padding: 1rem;
}

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

.mission-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.story-section {
    padding: 3rem 0;
    background: var(--background-color);
}

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

.story-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.story-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.features-highlight {
    padding: 3rem 0;
    background: var(--accent-color);
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
}

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

.feature-highlight {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.feature-highlight img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--secondary-color);
    padding: 1rem;
}

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

.feature-highlight p {
    opacity: 0.9;
    line-height: 1.6;
}

.team-section {
    padding: 3rem 0;
    background: var(--background-color);
    text-align: center;
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.team-section p {
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-member {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

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

.team-member p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stats-section {
    padding: 3rem 0;
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.stats-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.stat-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

.stat-item p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* FAQ Page Styles */
.faq-section {
    padding: 3rem 0;
    background: var(--background-color);
}

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

.faq-category {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.faq-category.active,
.faq-category:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.faq-category-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

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

.contact-support {
    padding: 3rem 0;
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contact-support h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-support p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Error Page Styles */
.error-section {
    padding: 4rem 0;
    background: var(--text-light);
    text-align: center;
}

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

.error-number {
    font-size: 6rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(75, 22, 76, 0.1);
}

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

.error-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.error-suggestions h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.suggestion-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    transition: var(--transition);
}

.suggestion-links a:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.error-help {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.error-help h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-help p {
    margin-bottom: 1.5rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

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

    .suggestion-links {
        flex-direction: column;
        align-items: center;
    }

    .suggestion-links a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .error-number {
        font-size: 4rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-buttons,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .main-content {
        margin-top: 0;
    }
}

/* Content Section Styles */
.content-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.content-wrapper h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Play Steps */
.play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.play-step {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.play-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(75, 22, 76, 0.15);
}

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

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

/* Betting Options */
.betting-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.betting-option {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.betting-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(75, 22, 76, 0.15);
}

.betting-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.betting-option p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(75, 22, 76, 0.15);
}

.tip-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* FAQ List */
.faq-list {
    margin: 2rem 0;
}

.faq-list .faq-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.faq-list .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(75, 22, 76, 0.15);
}

.faq-list .faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-list .faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsible Gaming */
.responsible-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(75, 22, 76, 0.15);
}

.tip h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.important-note {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA Section Updates */
.cta-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-note {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #E091D3;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(224, 145, 211, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: #DD88CF;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 145, 211, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(224, 145, 211, 0.3);
}

.back-to-top-btn i {
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

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

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