/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-dark-red: #3D0000;
    --primary-red: #950101;
    --primary-bright-red: #FF0000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

h1 {
    font-size: 3rem;
    color: var(--primary-red);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-dark-red);
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-black), var(--primary-dark-red));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: var(--primary-bright-red);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-auth {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-bright-red));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 1, 1, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark-red);
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-learn-more:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-login {
    background: var(--primary-red);
    color: var(--white);
}

.btn-register {
    background: var(--primary-bright-red);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-black), var(--primary-dark-red));
    color: var(--white);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Login Section */
.login-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-dark-red), var(--primary-red));
    color: var(--white);
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.login-steps, .register-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-bright-red);
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Register Section */
.register-section {
    padding: 5rem 0;
    background: var(--white);
}

.register-section h2 {
    color: var(--primary-dark-red);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-dark-red);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: var(--white);
}

.games-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark-red);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card i {
    font-size: 4rem;
    color: var(--primary-red);
    margin: 2rem 0 1rem;
    display: block;
    text-align: center;
}

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-red);
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black), var(--primary-dark-red));
    color: var(--white);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--primary-bright-red);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark-red);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.player-name {
    color: var(--primary-red);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-bright-red));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-black);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--primary-bright-red);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-bright-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-black);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-auth {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-black);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        border-top: 1px solid var(--gray);
        margin-top: 1rem;
    }

    .nav-menu .mobile-auth .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .login-steps, .register-steps {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .features-grid, .games-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Improvements */
@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 {
    outline: 3px solid var(--primary-bright-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-black: #000000;
        --primary-dark-red: #800000;
        --primary-red: #cc0000;
        --primary-bright-red: #ff0000;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-black), var(--primary-dark-red));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--light-gray);
    font-size: 1.2rem;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.content-wrapper h2 {
    color: var(--primary-dark-red);
    margin-bottom: 2rem;
}

.content-wrapper h3 {
    color: var(--primary-red);
    margin: 2rem 0 1rem;
}

.content-wrapper ul {
    margin: 1rem 0 1rem 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Policy and Terms Pages */
.privacy-content, .terms-content, .disclaimer-content {
    background: var(--white);
    padding: 3rem 0;
}

.important-notice {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-bright-red);
}

.policy-footer, .terms-footer, .disclaimer-footer {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

/* Contact Page Styles */
.contact-content {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.contact-method h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-form-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.error-message {
    color: var(--primary-bright-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Support Departments */
.support-departments {
    background: var(--light-gray);
    padding: 3rem 0;
    margin: 3rem 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.department-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.department-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.department-card ul {
    margin: 1rem 0 0 1.5rem;
}

/* Contact Details */
.contact-details {
    background: var(--white);
    padding: 3rem 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.contact-detail h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Response Times */
.response-times {
    background: var(--light-gray);
    padding: 3rem 0;
}

.response-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.response-time-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.response-time-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
    background: var(--white);
    padding: 3rem 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-text h2 {
    color: var(--primary-dark-red);
    margin-bottom: 1.5rem;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.our-story {
    background: var(--light-gray);
    padding: 3rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h3 {
    color: var(--primary-red);
    margin: 1.5rem 0 1rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.our-mission {
    background: var(--white);
    padding: 3rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
}

.mission-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.why-choose-us {
    background: var(--light-gray);
    padding: 3rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reason-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.our-team {
    background: var(--white);
    padding: 3rem 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.team-member h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.our-achievements {
    background: var(--light-gray);
    padding: 3rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-item h3 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.our-commitment {
    background: var(--white);
    padding: 3rem 0;
}

.commitment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
}

.commitment-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.join-us {
    background: linear-gradient(135deg, var(--primary-black), var(--primary-dark-red));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.join-us h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.join-us p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Page Styles */
.faq-content {
    padding: 3rem 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    color: var(--primary-dark-red);
    margin-bottom: 1rem;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-red);
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--primary-dark-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-contact {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.faq-contact h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Games Page Styles */
.games-hero {
    background: linear-gradient(135deg, var(--primary-black), var(--primary-dark-red));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.games-hero-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.games-hero-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-categories {
    background: var(--white);
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-red);
}

.category-card p {
    padding: 0 1.5rem 1rem;
    color: var(--gray);
}

.category-card ul {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.category-card li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.featured-games {
    background: var(--light-gray);
    padding: 5rem 0;
}

.featured-games-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.featured-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.featured-game:nth-child(even) {
    direction: rtl;
}

.featured-game:nth-child(even) .game-info {
    direction: ltr;
}

.featured-game i {
    font-size: 5rem;
    color: var(--primary-red);
    margin: 2rem 0 1rem;
    display: block;
    text-align: center;
}

.game-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.game-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-providers {
    background: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.provider-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.provider-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.game-features {
    background: var(--light-gray);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.game-stats {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-bright-red));
    color: var(--white);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.start-gaming {
    background: var(--primary-black);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.start-gaming h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.start-gaming p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.start-gaming-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 404 Error Page Styles */
.error-page {
    background: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-number h1 {
    font-size: 8rem;
    color: var(--primary-red);
    margin: 0;
    line-height: 1;
}

.error-number h2 {
    color: var(--primary-dark-red);
    margin-bottom: 2rem;
}

.error-message h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.error-message p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.error-suggestions {
    margin: 3rem 0;
}

.error-suggestions h4 {
    color: var(--primary-dark-red);
    margin-bottom: 2rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.suggestion-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
}

.suggestion-card h5 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.error-actions {
    margin: 3rem 0;
}

.error-actions .btn {
    margin: 0 0.5rem;
}

.error-help {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.error-help a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.error-help a:hover {
    text-decoration: underline;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content,
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-game {
        grid-template-columns: 1fr;
    }
    
    .featured-game:nth-child(even) {
        direction: ltr;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .error-number h1 {
        font-size: 5rem;
    }
}

/* Print styles */
@media print {
    .header, .footer, .nav-auth, .hero-buttons, .cta-buttons {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    main {
        margin-top: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(149, 1, 1, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-bright-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(149, 1, 1, 0.4);
}

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(149, 1, 1, 0.3);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-1px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
}
