/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warm Earthy Pastel Palette */
    --primary-color: #9A3B3B;      /* Deep Terra Red - Headings, CTAs, Key UI accents */
    --secondary-color: #C08261;    /* Warm Sandy Brown - Cards, Buttons, Secondary elements */
    --accent-color: #E2C799;       /* Light Beige - Section backgrounds, Content areas */
    --background-color: #F2ECBE;   /* Pale Cream - Main page background */
    
    /* Text Colors for Accessibility */
    --text-light: #FFFFFF;         /* White text for dark/medium backgrounds */
    --text-dark: #100F10;          /* Near-black text for light backgrounds */
    
    /* Semantic Colors */
    --cta-color: #9A3B3B;          /* Call-to-action buttons */
    --card-bg: #C08261;             /* Card backgrounds */
    --section-bg: #E2C799;          /* Section backgrounds */
    --overlay-bg: rgba(154, 59, 59, 0.9); /* Semi-transparent overlays */
    
    /* Interactive States */
    --hover-light: #B06B4A;         /* Darker version of sandy brown for hover */
    --hover-dark: #7A2A2A;          /* Darker version of terra red for hover */
    --focus-glow: rgba(154, 59, 59, 0.3); /* Focus ring color */
    
    /* Shadows and Borders */
    --shadow: 0 4px 12px rgba(154, 59, 59, 0.15);
    --shadow-hover: 0 8px 25px rgba(154, 59, 59, 0.25);
    --border-color: #C08261;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-color);
    min-height: 100vh;
}

/* 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,
select:focus {
    outline: 2px solid var(--cta-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--focus-glow);
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--cta-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: rgba(154, 59, 59, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-login:hover,
.btn-login:focus {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--cta-color);
    color: var(--text-light);
}

.btn-register:hover,
.btn-register:focus {
    background: var(--hover-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--cta-color);
    color: var(--text-light);
    font-size: 16px;
    padding: 15px 30px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--hover-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    font-size: 16px;
    padding: 15px 30px;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--hover-light);
    border-color: var(--hover-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(154, 59, 59, 0.9) 0%, rgba(192, 130, 97, 0.9) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--cta-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
    z-index: -1;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Registration Steps */
.registration-steps {
    background: var(--section-bg);
    padding: 80px 0;
}

.registration-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--cta-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.step p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: var(--card-bg);
    padding: 80px 0;
    color: var(--text-light);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-hover);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--cta-color) 0%, var(--card-bg) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover,
.social-links a:focus {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .registration-steps h2,
    .features-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .step,
    .feature-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-buttons,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }

    .main-content {
        margin-top: 0;
    }

    body {
        background: white;
        color: black;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #000000;
        --accent-color: #000000;
        --cta-color: #ffff00;
        --text-light: #ffffff;
        --text-dark: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .step:hover,
    .feature-card:hover,
    .btn:hover,
    .btn:focus {
        transform: none;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cta-color) 0%, var(--card-bg) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ Styles */
.faq-section {
    background: var(--text-light);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--cta-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.faq-question:hover,
.faq-question:focus {
    background: var(--accent-color);
    color: var(--text-dark);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: var(--text-light);
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 15px;
    color: var(--text-light);
}

.faq-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .faq-answer {
        padding: 1.2rem;
    }
    
    .faq-contact {
        padding: 2rem 1.5rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* About Us Styles */
.about-story {
    background: var(--section-bg);
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: var(--cta-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mission-vision {
    background: var(--card-bg);
    padding: 80px 0;
    color: var(--text-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    margin-bottom: 2rem;
}

.card-icon img {
    border-radius: 50%;
    background: var(--accent-color);
    padding: 1rem;
}

.mission-card h3,
.vision-card h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.values-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cta-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    border-radius: 50%;
    background: var(--accent-color);
    padding: 0.5rem;
}

.value-card h3 {
    color: var(--cta-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.team-section {
    background: var(--card-bg);
    padding: 80px 0;
    color: var(--text-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.team-member h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.achievements-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cta-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--cta-color);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: var(--cta-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive About Us */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .story-text h2,
    .values-section h2,
    .team-section h2,
    .achievements-section h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .value-card,
    .team-member,
    .achievement-card {
        padding: 1.5rem;
    }
}

/* Privacy Policy Styles */
.policy-content {
    background: var(--section-bg);
    padding: 80px 0;
}

.policy-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section h2 {
    color: var(--cta-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-info {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.policy-footer {
    background: var(--card-bg);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .policy-section {
        padding: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .policy-footer {
        padding: 1.5rem;
    }
}

/* Contact Us Styles */
.contact-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2 {
    color: var(--cta-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-section > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.method-icon {
    flex-shrink: 0;
}

.method-icon img {
    border-radius: 50%;
    background: var(--accent-color);
    padding: 0.5rem;
}

.method-content h3 {
    color: var(--cta-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.method-content p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.response-time {
    font-weight: 600;
    color: var(--accent-color) !important;
    margin-top: 0.5rem;
}

.contact-form-section h2 {
    color: var(--cta-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cta-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--focus-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--cta-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.support-categories {
    background: var(--card-bg);
    padding: 80px 0;
    color: var(--text-light);
}

.support-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.category-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-icon img {
    border-radius: 50%;
    background: var(--accent-color);
    padding: 0.5rem;
}

.category-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.category-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.response-times {
    background: var(--section-bg);
    padding: 80px 0;
}

.response-times h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cta-color);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.response-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.response-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.response-card h3 {
    color: var(--cta-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.response-card .response-time {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cta-color);
    margin-bottom: 1rem;
}

.response-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive Contact Us */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .support-categories h2,
    .response-times h2 {
        font-size: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-section {
    background: var(--section-bg);
    padding: 80px 0;
    text-align: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.error-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.error-text h1 {
    font-size: 8rem;
    font-weight: bold;
    color: var(--cta-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-text h2 {
    font-size: 2.5rem;
    color: var(--cta-color);
    margin-bottom: 1.5rem;
}

.error-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.helpful-links h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.helpful-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.helpful-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.link-icon img {
    border-radius: 50%;
    background: var(--gold-color);
    padding: 0.3rem;
}

.helpful-link span {
    font-weight: 500;
    font-size: 1.1rem;
}

.search-section {
    background: var(--background-color);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.search-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cta-color);
    text-align: center;
}

.search-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--cta-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--focus-glow);
}

.search-form button {
    padding: 12px 24px;
    white-space: nowrap;
}

/* Responsive 404 */
@media (max-width: 768px) {
    .error-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-text h1 {
        font-size: 6rem;
    }
    
    .error-text h2 {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .helpful-links,
    .search-section {
        padding: 2rem;
    }
}

/* Register Section Styles */
.register-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--cta-color) 100%);
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.register-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.register-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.steps-with-icons {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    flex-shrink: 0;
    margin-right: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.step-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.step-text {
    flex: 1;
}

.step-text .step-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.step-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.step-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.register-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.register-note a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

.hero-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}



.hero-image img:hover {
    transform: scale(1.05);
}

/* Login Section Styles */
.login-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cta-color) 0%, var(--card-bg) 100%);
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.login-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.login-content h3 {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.login-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.login-content li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.login-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.login-note a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

.hero-image-login {
    display: flex;
    justify-content: center;
    align-items: center;
}



.hero-image-login img:hover {
    transform: scale(1.05);
}

/* Responsive Design for Register and Login Sections */
@media (max-width: 1024px) {
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image,
    .hero-image-login {
        order: -1;
    }
}

@media (max-width: 768px) {
    .register-section,
    .login-section {
        padding: 3rem 0;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        margin: 0 auto 1rem;
    }
    
    .step-text .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-image img,
    .hero-image-login img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .register-content h2,
    .login-content h2 {
        font-size: 1.75rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Games Slider Section Styles */
.games-slider-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--section-bg) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.games-slider-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--cta-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.games-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.games-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slider-slide.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
}

.slider-slide.prev {
    transform: translate(-120%, -50%) scale(0.7);
    opacity: 0.6;
    z-index: 2;
}

.slider-slide.next {
    transform: translate(20%, -50%) scale(0.7);
    opacity: 0.6;
    z-index: 2;
}

.mobile-phone {
    position: relative;
    width: 280px;
    height: 560px;
    border-radius: 30px;
    padding: 8px;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.game-balance {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.game-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-withdraw,
.btn-deposit {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-withdraw {
    background: #e74c3c;
    color: white;
}

.btn-withdraw:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-deposit {
    background: #27ae60;
    color: white;
}

.btn-deposit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--cta-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow);
}

.slider-arrow:hover {
    background: var(--hover-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.slider-arrow-left {
    left: -25px;
}

.slider-arrow-right {
    right: -25px;
}

.games-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    opacity: 0.6;
}

.thumbnail-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.thumbnail-item.active {
    opacity: 1;
    transform: translateY(-4px);
}

.thumbnail-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--card-bg);
    padding: 8px;
    transition: all 0.3s ease;
}

.thumbnail-item.active .thumbnail-icon {
    background: var(--cta-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.thumbnail-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.games-description {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(192, 130, 97, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(192, 130, 97, 0.2);
}

.games-description h3 {
    font-size: 1.8rem;
    color: var(--cta-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.games-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.games-description .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Games Slider */
@media (max-width: 1024px) {
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
    
    .mobile-phone {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .games-slider-section h2 {
        font-size: 2rem;
    }
    
    .slider-track {
        height: 500px;
    }
    
    .mobile-phone {
        width: 220px;
        height: 440px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .games-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail-icon {
        width: 50px;
        height: 50px;
    }
    
    .games-description h3 {
        font-size: 1.5rem;
    }
    
    .games-description .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .games-slider-section h2 {
        font-size: 1.75rem;
    }
    
    .slider-track {
        height: 400px;
    }
    
    .mobile-phone {
        width: 200px;
        height: 400px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow-left {
        left: 5px;
    }
    
    .slider-arrow-right {
        right: 5px;
    }
    
    .games-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-item {
        min-width: 80px;
    }
}

/* Slide Animation Keyframes */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Smooth transitions for all slides */
.slider-slide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for mobile phone */
.mobile-phone:hover .game-screenshot {
    transform: scale(1.05);
}

/* Enhanced thumbnail hover effects */
.thumbnail-item:hover .thumbnail-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Loading state for images */
.game-screenshot {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Emoji Styles for Missing Images */
.method-emoji {
    font-size: 2.5rem;
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

.category-emoji {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
}

.member-emoji {
    font-size: 4rem;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
}

.error-emoji {
    font-size: 6rem;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
}

.link-emoji {
    font-size: 1.5rem;
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for emojis */
@media (max-width: 768px) {
    .method-emoji {
        font-size: 2rem;
    }
    
    .category-emoji {
        font-size: 2.5rem;
    }
    
    .member-emoji {
        font-size: 3rem;
    }
    
    .error-emoji {
        font-size: 4rem;
    }
    
    .link-emoji {
        font-size: 1.25rem;
    }
}
