/* Brand Site Overrides */

:root {
    --border: rgba(74, 155, 90, 0.12);
    --border-strong: rgba(74, 155, 90, 0.25);
    --brown: #C4956A;
}

a:hover {
    color: var(--brown);
}

/* Layout */
.site-header {
    padding: 3rem 2rem 0;
    text-align: center;
    position: relative;
}

.site-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(74, 155, 90, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.site-header .logo {
    width: 72px;
    height: auto;
    margin-bottom: 1rem;
    position: relative;
}

.site-header .wordmark {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--heading);
    margin: 0;
    border: none;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 155, 90, 0.15) 0%, transparent 50%, rgba(74, 155, 90, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
}

.content-page .site-header {
    padding: 2.5rem 2rem 0;
}

.content-page .site-header::after {
    display: none;
}

.content-page .site-header .logo {
    width: 56px;
}

.wordmark-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.wordmark-link:hover {
    color: var(--heading);
    border-color: var(--border-strong);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    text-align: center;
}

.content-page main {
    max-width: 800px;
    text-align: left;
    padding: 3.5rem 3rem 5rem;
}

.content-page h1 {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-strong);
}

.content-page h2 {
    margin: 3rem 0 1.5rem;
}

/* Hero Carousel */
.hero-carousel {
    max-width: 680px;
    margin: 2rem auto 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.carousel-container {
    display: flex;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-slide:hover {
    transform: translateY(-4px);
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 65.5%;
    display: block;
    filter: brightness(0.92);
    transition: filter 0.25s ease;
}

.carousel-slide:hover img {
    filter: brightness(1);
}

.carousel-caption {
    padding: 1.5rem 2rem 1.75rem;
    background: var(--surface);
    text-align: left;
    border-top: 1px solid var(--border);
}

.slide-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.carousel-caption h2.slide-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--heading);
    letter-spacing: -0.5px;
    border: none;
    padding: 0;
}

.carousel-caption p.slide-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
    line-height: 1.55;
}

.slide-platform {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
}

/* About Section */
.about-section {
    max-width: 680px;
    margin: 5rem auto 3rem;
    text-align: left;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

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

.about-content p:last-child {
    margin-bottom: 0;
}

/* Help Page: Support Intro */
.support-intro {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.75;
}

/* Help Page: Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.support-column {
    padding: 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-column:hover {
    border-color: var(--border-strong);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.support-column h2 {
    margin-top: 0;
    font-size: 1.35rem;
}

.support-column p {
    font-size: 1rem;
    line-height: 1.7;
}

.game-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-support-list li {
    margin-bottom: 0.6rem;
}

.game-support-list a {
    font-weight: 500;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.contact-email {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.contact-email a {
    font-weight: 500;
}

.faq-game-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.contact-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}

.contact-box h2 {
    margin-top: 0;
}

.contact-box a {
    font-weight: 500;
}

/* Privacy page section spacing */
.content-page main > ul {
    margin-bottom: 2rem;
}

.content-page main > ul li {
    margin-bottom: 0.35rem;
    line-height: 1.65;
}

/* Large desktop */
@media (min-width: 1200px) {
    .hero-carousel {
        max-width: 720px;
    }
    .about-section {
        max-width: 720px;
    }
    .carousel-caption {
        padding: 1.75rem 2.25rem 2rem;
    }
    .carousel-caption h2.slide-title {
        font-size: 1.65rem;
    }
}

/* Tablet */
@media (max-width: 900px) {
    main {
        padding: 2rem;
    }
    .content-page main {
        padding: 3rem 2rem 4rem;
    }
}

@media (max-width: 600px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .support-column {
        padding: 1.75rem;
    }
    .support-column h2 {
        font-size: 1.2rem;
    }
    .site-header {
        padding: 2rem 1.5rem 0;
    }
    .site-header .logo {
        width: 60px;
    }
    .hero-carousel {
        margin: 1.5rem auto 0;
        border-radius: 12px;
    }
    .carousel-slide img {
        aspect-ratio: 4 / 3;
    }
    .carousel-caption {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    .carousel-caption h2.slide-title {
        font-size: 1.25rem;
    }
    .carousel-caption p.slide-description {
        font-size: 0.95rem;
    }
    .about-section {
        margin-top: 3.5rem;
        margin-bottom: 2rem;
    }
    .about-content p {
        font-size: 1rem;
        line-height: 1.75;
    }
    .site-header .wordmark {
        font-size: 1.15rem;
        letter-spacing: 4px;
        padding: 0.4rem 1rem;
    }
    main {
        padding: 1.5rem;
    }
    .content-page main {
        padding: 2.5rem 1.5rem 3rem;
    }
    .support-intro {
        font-size: 1rem;
    }
    .faq-game-label {
        margin-top: 2rem;
    }
}
