/* Winning Kings - Premium Gaming Platform Styles */
/* Royal Theme Colors */
:root {
    --royal-red: #B22222;
    --crimson-red: #8B0000;
    --bright-gold: #FFD700;
    --deep-gold: #DAA520;
    --black: #0A0A0A;
    --charcoal-gray: #2C2C2C;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--royal-red), var(--crimson-red));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--black), var(--charcoal-gray));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.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-brand {
    position: relative;
    min-width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Fallback for logo when image doesn't load */
.nav-brand::before {
    content: "Winning Kings";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bright-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 1;
    white-space: nowrap;
    display: var(--logo-fallback, none); /* Hidden by default, shown when logo fails to load */
}

/* Show fallback when logo fails to load */
.nav-brand .logo:not([src]),
.nav-brand .logo[src=""],
.nav-brand .logo[src*="undefined"] {
    display: none;
}

.nav-brand .logo:not([src]) ~ .nav-brand::before,
.nav-brand .logo[src=""] ~ .nav-brand::before,
.nav-brand .logo[src*="undefined"] ~ .nav-brand::before {
    display: block;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bright-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.nav-btn-register {
    background: linear-gradient(135deg, var(--royal-red), var(--crimson-red));
    color: var(--white);
    box-shadow: 0 2px 8px rgba(178, 34, 34, 0.3);
}

.nav-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.4);
    color: var(--white);
}

.nav-btn-login {
    background: transparent;
    color: var(--white);
    border-color: var(--bright-gold);
}

.nav-btn-login:hover {
    background: var(--bright-gold);
    color: var(--black);
    transform: translateY(-2px);
    border-color: var(--bright-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Hide mobile menu elements on desktop */
.mobile-menu-header {
    display: none;
}

.mobile-menu-title {
    display: none;
}

.mobile-menu-close {
    display: none;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--charcoal-gray);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: var(--white);
}

.breadcrumb-link {
    color: var(--bright-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--white);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal-gray) 50%, var(--royal-red) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Fallback content when image doesn't load */
.hero-image::before {
    content: "Winning Kings";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-gold);
    text-align: center;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image::after {
    content: "Premium Gaming Platform";
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--white);
    text-align: center;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hide fallback when image loads */
.hero-img[src] {
    position: relative;
    z-index: 2;
}

.hero-img[src] ~ .hero-image::before,
.hero-img[src] ~ .hero-image::after {
    display: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-red), var(--crimson-red));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bright-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--white), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bright-gold);
}

/* Brand Introduction */
.brand-intro {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

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

/* Platform Features */
.platform-features {
    padding: 4rem 0;
    background: var(--black);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--charcoal-gray), var(--dark-gray));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-red), var(--crimson-red));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.feature-icon::before {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
}

/* Security Icon */
.feature-card:nth-child(1) .feature-icon::before {
    content: "🔒";
}

/* Rewards Icon */
.feature-card:nth-child(2) .feature-icon::before {
    content: "🏆";
}

/* Support Icon */
.feature-card:nth-child(3) .feature-icon::before {
    content: "💬";
}

/* Mobile Icon */
.feature-card:nth-child(4) .feature-icon::before {
    content: "📱";
}

.feature-img {
    display: none; /* Hide the img elements since we're using CSS icons */
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bright-gold);
}

.feature-description {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Registration Process */
.registration-process {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

.process-step {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--black);
    border-radius: 15px;
    border-left: 4px solid var(--royal-red);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bright-gold);
}

.step-description {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.process-actions {
    text-align: center;
    margin-top: 3rem;
}

.process-actions .btn {
    margin: 0 1rem;
}

/* Advantages & Security */
.advantages-security {
    padding: 4rem 0;
    background: var(--black);
}

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

.advantage-text {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.security-features {
    background: var(--charcoal-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-list {
    list-style: none;
}

.security-item {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-gold);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

.faq-item {
    background: var(--black);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, var(--royal-red), var(--crimson-red));
    color: var(--white);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--crimson-red), var(--royal-red));
}

.faq-answer {
    padding: 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
    background: var(--black);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--royal-red), var(--crimson-red));
    text-align: center;
}

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

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

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: var(--bright-gold);
    color: var(--black);
}

.cta-actions .btn-primary:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
}

.cta-actions .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--charcoal-gray);
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bright-gold);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--bright-gold);
}

.footer-text {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal-gray);
}

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--charcoal-gray);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--bright-gold);
    }

    .mobile-menu-title {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bright-gold);
    }

    .mobile-menu-close {
        display: flex;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 215, 0, 0.1);
        color: var(--bright-gold);
        transform: rotate(90deg);
    }

    .nav-item {
        margin-bottom: 1rem;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-buttons {
        margin-left: 0;
        margin-top: 2rem;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--bright-gold);
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .advantages-content {
        grid-template-columns: 1fr;
    }

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

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

    .process-actions .btn {
        margin: 0.5rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.footer-link:focus {
    outline: 2px solid var(--bright-gold);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal-gray) 50%, var(--royal-red) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--bright-gold);
    font-style: italic;
}

.breadcrumb-separator {
    color: var(--light-gray);
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: var(--white);
}

/* About Us specific styles */
.about-story {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

.story-text {
    margin-bottom: 2rem;
}

.story-paragraph {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-values {
    padding: 4rem 0;
    background: var(--black);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.mission-card {
    background: var(--charcoal-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bright-gold);
}

.mission-text {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-gold);
    font-weight: bold;
}

.why-choose-us {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

.choose-paragraph {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.choose-features {
    background: var(--black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bright-gold);
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--light-gray);
    line-height: 1.5;
}

/* Policy pages specific styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.policy-list {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--charcoal-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.contact-info strong {
    color: var(--bright-gold);
}

/* Support page specific styles */
.support-options {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

.support-card {
    background: var(--black);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.2);
}

.support-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bright-gold), var(--deep-gold));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.support-icon::before {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: bold;
}

/* Live Chat Icon */
.support-card:nth-child(1) .support-icon::before {
    content: "💬";
}

/* Email Icon */
.support-card:nth-child(2) .support-icon::before {
    content: "📧";
}

/* Phone Icon */
.support-card:nth-child(3) .support-icon::before {
    content: "📞";
}

.support-img {
    display: none; /* Hide the img elements since we're using CSS icons */
}

.support-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bright-gold);
}

.support-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-faq {
    padding: 4rem 0;
    background: var(--black);
}

.contact-info-section {
    padding: 4rem 0;
    background: var(--charcoal-gray);
}

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

.contact-method {
    background: var(--black);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bright-gold);
}

.contact-details {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --light-gray: #FFFFFF;
        --charcoal-gray: #000000;
    }
}
