﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #e9e1d4;
    background: linear-gradient( rgba(20, 16, 24, 0.96), rgba(20, 16, 24, 0.98) ), #18131d;
    line-height: 1.6;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient( rgba(24, 18, 29, 0.95), rgba(24, 18, 29, 0.92) );
    border-bottom: 1px solid rgba(211, 176, 109, 0.28);
    backdrop-filter: blur(12px);
    color: white;
    padding: 1rem 0;
}

    .site-header h1 {
        margin: 0;
        font-size: 1.65rem;
        font-weight: normal;
        letter-spacing: 0.08em;
        color: #e7c57a;
    }

nav a {
    color: #efe6d6;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient( rgba(33, 27, 38, 0.68), rgba(33, 27, 38, 0.68) ), radial-gradient(circle at top right, #845b8f, #32263a);
    color: white;
}

    .hero .container {
        max-width: 850px;
    }

    .hero h2 {
        margin: 0.5rem 0 1rem;
        font-size: clamp(2.5rem, 6vw, 5rem);
        line-height: 1.05;
    }

.hero-text {
    max-width: 700px;
    font-size: 1.25rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: bold;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient( 135deg, rgba(68, 49, 78, 0.24), rgba(41, 30, 48, 0.45) );
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
    font-size: 2.25rem;
    margin-top: 0;
}

.game-card {
    margin-top: 2rem;
    background: linear-gradient( 145deg, rgba(83, 57, 91, 0.98), rgba(44, 33, 52, 0.98) );
    border: 1px solid rgba(231, 197, 122, 0.22);
    border-left: 6px solid #9f6fb0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.game-card-content {
    padding: 3rem;
}

.game-card h3 {
    color: #f0d69c;
}

.game-card .eyebrow {
    color: #c995d8;
}

.game-card p {
    color: #ddd1df;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient( 135deg, #b89052, #e0bf79 );
    color: #201821;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
    }

.site-footer {
    padding: 2rem 0;
    background: #120e16;
    color: #998da1;
    border-top: 1px solid rgba(211, 176, 109, 0.18);
}

@media (max-width: 700px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 440px;
    }

    .game-card-content {
        padding: 2rem;
    }
}

.site-title-link {
    color: inherit;
    text-decoration: none;
}

.game-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient( rgba(28, 20, 31, 0.58), rgba(28, 20, 31, 0.78) ), radial-gradient(circle at top right, #8b6a51, #4a3151 45%, #211b26);
    color: white;
}

    .game-hero h2 {
        margin: 0.4rem 0 1rem;
        font-size: clamp(3.5rem, 9vw, 7rem);
        line-height: 1;
    }

.narrow {
    max-width: 800px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: linear-gradient( 145deg, rgba(67, 49, 75, 0.96), rgba(39, 30, 46, 0.98) );
    border: 1px solid rgba(231, 197, 122, 0.16);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

    .feature-card h3 {
        color: #f2dfb4;
    }

    .feature-card p {
        color: #d8ccd9;
    }

@media (max-width: 850px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.section h2,
.game-card h3,
.feature-card h3 {
    color: #f2dfb4;
}

.section p,
.game-card p,
.feature-card p {
    color: #d0c5ce;
}

.eyebrow {
    color: #d9b66e;
}