/*
  style.css — global/base stylesheet
  Contains reset, variables, header/nav, hero, shared buttons, cards, contact, footer, and base responsive rules.
*/

/* === RESET === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    --accent: #9e8d31;
    --accent-soft: rgba(158, 141, 49, 0.14);
    --accent-faint: rgba(158, 141, 49, 0.05);
    --accent-text: #ffffff;

    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #0b0b0d;
    color: #eae6df;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

body.home,
body.about {
    --accent: #9e8d31;
    --accent-soft: rgba(158, 141, 49, 0.14);
    --accent-faint: rgba(158, 141, 49, 0.05);
    --accent-text: #ffffff;
}

body.games {
    --accent: #e5cc80;
    --accent-soft: rgba(229, 204, 128, 0.14);
    --accent-faint: rgba(229, 204, 128, 0.055);
    --accent-text: #111111;
}

body.music {
    --accent: #047eff;
    --accent-soft: rgba(4, 126, 255, 0.14);
    --accent-faint: rgba(4, 126, 255, 0.055);
    --accent-text: #ffffff;
}

body.makes {
    --accent: #7b8085;
    --accent-soft: rgba(123, 128, 133, 0.16);
    --accent-faint: rgba(123, 128, 133, 0.05);
    --accent-text: #ffffff;

    background: #090909;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* === LAYOUT === */
.site-wrap {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 48px 0;
}


/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 7, 7, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #eae6df;
    font-weight: 700;
}

.brand-mark {
    width: 26px;
    height: 26px;
    object-fit: contain;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ddd;
    font-size: 14px;
}

.nav-links a {
    opacity: 0.72;
    transition:
        color 160ms ease,
        opacity 160ms ease,
        text-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    opacity: 1;
}

.nav-links a:hover {
    color: #9e8d31;
}
/* === HEADER LINK HOVER PER LANE === */

.nav-links a.nav-games:hover {
    color: #e5cc80;
}

.nav-links a.nav-music:hover {
    color: #047eff;
}

.nav-links a.nav-makes:hover {
    color: #7b8085;
}
body.home .brand,
body.about .brand,
body.home .nav-links a[aria-current="page"],
body.about .nav-links a[aria-current="page"] {
    color: #9e8d31;
}
body.games .brand,
body.games .nav-links a[aria-current="page"] {
    color: #e5cc80;
}

body.music .brand,
body.music .nav-links a[aria-current="page"] {
    color: #047eff;
}

body.makes .brand,
body.makes .nav-links a[aria-current="page"] {
    color: #7b8085;
    text-shadow: 0 0 10px rgba(123, 128, 133, 0.16);
}


/* === HERO === */
.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
}

.hero,
.page-hero {
    padding: 64px 0 56px;
}


/* === SOFT GLOWS WITHOUT RADIAL-GRADIENT ARTIFACTS === */
body.home,
body.about,
body.games,
body.music,
body.makes {
    position: relative;
}

.hero::before,
.page-hero::before,
.feature-card::before,
.lane-card::before,
.about-card::before,
.content-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    width: 36rem;
    height: 24rem;
    border-radius: 999px;
    background: var(--accent-faint);
    filter: blur(90px);
    opacity: 1;
    transform: translateZ(0);
}

.hero::before,
.page-hero::before {
    left: -8rem;
    top: -6rem;
}

.feature-card::before {
    right: -10rem;
    top: -8rem;
    background: var(--card-glow, var(--accent-soft));
}

.lane-card::before,
.about-card::before,
.content-card::before {
    right: -12rem;
    top: -8rem;
    background: var(--card-glow, var(--accent-soft));
}

.games-card,
.games-about {
    --card-glow: rgba(229, 204, 128, 0.12);
}

.music-card,
.music-about {
    --card-glow: rgba(4, 126, 255, 0.14);
}

.makes-card,
.makes-about {
    --card-glow: rgba(210, 215, 220, 0.10);
}


.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.games .eyebrow,
body.music .eyebrow,
body.makes .eyebrow {
    color: var(--accent);
}

h1 {
    max-width: 860px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 800;
}

body.makes h1 {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 24px rgba(180, 190, 200, 0.04);
}

.hero-text,
.page-intro {
    max-width: 620px;
    margin-top: 18px;
    color: #aaa;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}


/* === BUTTONS === */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: #ddd;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
}

.button.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-text);
}

.home-button {
    min-width: 120px;
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #fff;
}

.button.primary:hover,
.games-button:hover,
.music-button:hover,
.makes-button:hover {
    filter: brightness(1.05);
}

.games-button {
    background: #e5cc80;
    border-color: #e5cc80;
    color: #111;
}

.music-button {
    background: #047eff;
    border-color: #047eff;
    color: #fff;
}

.makes-button {
    background: #7b8085;
    border-color: #7b8085;
    color: #fff;
}

.games-button:hover {
    border-color: #e5cc80;
    box-shadow: 0 0 0 1px rgba(229, 204, 128, 0.25);
    color: #fff;
}

.music-button:hover {
    border-color: #047eff;
    box-shadow: 0 0 0 1px rgba(4, 126, 255, 0.25);
    color: #fff;
}

.makes-button:hover {
    border-color: #7b8085;
    box-shadow: 0 0 0 1px rgba(210, 215, 220, 0.25);
    color: #fff;
}
.home-button:hover {
    background: #222;
    border-color: #333;
}

.games-outline {
    border-color: #e5cc80;
    box-shadow: 0 0 0 1px rgba(229, 204, 128, 0.25);
}

.music-outline {
    border-color: #047eff;
    box-shadow: 0 0 0 1px rgba(4, 126, 255, 0.25);
}

.makes-outline {
    border-color: #7b8085;
    box-shadow: 0 0 0 1px rgba(123, 128, 133, 0.28);
}
.games-outline:hover {
    background: #e5cc80;
    border-color: #e5cc80;
    color: #111;
}

.music-outline:hover {
    background: #047eff;
    border-color: #047eff;
    color: #fff;
}

.makes-outline:hover {
    background: #7b8085;
    border-color: #7b8085;
    color: #fff;
}

/* === FEATURE === */
.primary-feature {
    padding-top: 56px;
}

.feature-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 28px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.games-feature {
    --card-glow: rgba(229, 204, 128, 0.10);
}


/* === STREAM / OFFLINE THUMB === */
.media-panel {
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.stream-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.stream-embed iframe,
.stream-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.stream-thumb img {
    object-fit: cover;
}

.stream-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05) 60%, rgba(0, 0, 0, 0));
}


/* === PLAY BUTTON === */
.play-button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0.78;
    text-align: center;
    transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        background 140ms ease,
        opacity 140ms ease;
}

.play-button img {
    width: 44px;
    height: 44px;
    display: block;
    margin: auto;
    padding: 0;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(82%) sepia(35%) saturate(420%) hue-rotate(2deg) brightness(95%) contrast(90%);
}

.play-button:hover {
    transform: translateY(-1px) scale(1.04);
    background: rgba(0, 0, 0, 0.55);
    box-shadow:
        0 0 20px var(--accent-soft),
        inset 0 0 20px var(--accent-soft);
    opacity: 1;
}


/* === FEATURE COPY === */
.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.feature-copy h3 {
    margin-bottom: 10px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.feature-copy p {
    max-width: 420px;
    margin-bottom: 18px;
    color: #aaa;
    font-size: 14px;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.secondary-actions {
    margin-top: 10px;
}


/* === GRIDS / CARDS === */
.lane-grid,
.about-grid,
.content-grid {
    display: grid;
    gap: 18px;
}

.lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.three-lane-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lane-card,
.about-card,
.content-card {
    position: relative;
    isolation: isolate;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.lane-card {
    min-height: 280px;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.about-card {
    min-height: 300px;
}

.lane-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 40px rgba(0, 0, 0, 0.45);
}

.games-card,
.games-about {
    --card-glow: rgba(229, 204, 128, 0.12);
}

.music-card,
.music-about {
    --card-glow: rgba(4, 126, 255, 0.14);
}

.makes-card,
.makes-about {
    --card-glow: rgba(210, 215, 220, 0.10);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    border-color: rgba(210, 215, 220, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03),
        0 14px 32px rgba(0, 0, 0, 0.42);
}

.makes-card:hover {
    border-color: rgba(210, 215, 220, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(0, 0, 0, 0.48);
}

.lane-card h2,
.about-card h2,
.content-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.about-card h2 {
    font-size: clamp(26px, 3vw, 36px);
}

.lane-card p,
.about-card p,
.content-card p {
    position: relative;
    z-index: 1;
    color: #aaa;
    font-size: 14px;
}

.lane-card p,
.content-card p {
    max-width: 520px;
}

.content-card p {
    margin-bottom: 18px;
}


/* === TAGS === */
.tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    color: #aaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.games-tag {
    color: #e5cc80;
}

.music-tag {
    color: #047eff;
}

.makes-tag {
    color: #7b8085;
}


/* === SECTION NAV === */
.section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.section-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: #aaa;
    font-size: 13px;
    font-weight: 700;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.section-nav a:hover,
.section-nav a[aria-current="page"] {
    border-color: var(--accent);
    background: var(--accent-faint);
    color: #fff;
    box-shadow: 0 0 0 1px var(--accent-soft);
}

.section-nav a.games-button {
    background: #e5cc80;
    border-color: #e5cc80;
    color: #111;
}

.section-nav a.music-button {
    background: #047eff;
    border-color: #047eff;
    color: #fff;
}

.section-nav a.makes-button {
    background: #7b8085;
    border-color: #7b8085;
    color: #fff;
}

.section-nav a.games-button:hover {
    border-color: #e5cc80;
    background: #1a1a1a;
    box-shadow: 0 0 0 1px rgba(229, 204, 128, 0.25);
    color: #fff;
}

.section-nav a.music-button:hover {
    border-color: #047eff;
    background: #1a1a1a;
    box-shadow: 0 0 0 1px rgba(4, 126, 255, 0.25);
    color: #fff;
}

.section-nav a.makes-button:hover {
    border-color: #7b8085;
    background: #1a1a1a;
    box-shadow: 0 0 0 1px rgba(123, 128, 133, 0.28);
    color: #fff;
}

.section-nav a.games-outline {
    border-color: #e5cc80;
    box-shadow: 0 0 0 1px rgba(229, 204, 128, 0.25);
}

.section-nav a.music-outline {
    border-color: #047eff;
    box-shadow: 0 0 0 1px rgba(4, 126, 255, 0.25);
}

.section-nav a.makes-outline {
    border-color: #7b8085;
    box-shadow: 0 0 0 1px rgba(123, 128, 133, 0.28);
}
.section-nav a.games-outline:hover {
    background: #e5cc80;
    border-color: #e5cc80;
    color: #111;
}

.section-nav a.music-outline:hover {
    background: #047eff;
    border-color: #047eff;
    color: #fff;
}

.section-nav a.makes-outline:hover {
    background: #7b8085;
    border-color: #7b8085;
    color: #fff;
}

/* === CONTACT === */
.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.contact-card h2 {
    margin-bottom: 10px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.contact-card p {
    color: #aaa;
    font-size: 14px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.contact-direct a[href^="mailto:"] {
    font-weight: 600;
    color: #ccc;
}

.contact-direct a[href^="mailto:"]:hover {
    color: #fff;
}

.contact-email {
    font-size: 14px;
    color: #aaa;
    letter-spacing: 0.02em;
}

.contact-links.grouped {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    color: #aaa;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.78;
}

.group-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.games-group .contact-label {
    color: #e5cc80;
}

.music-group .contact-label {
    color: #047eff;
}

.makes-group .contact-label {
    color: #7b8085;
}


/* === FOOTER === */
.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 14px 0;
    color: #777;
    font-size: 13px;
}


/* === RESPONSIVE === */
@media (max-width: 900px) {
    .feature-card,
    .lane-grid,
    .about-grid,
    .content-grid,
    .three-lane-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-links.grouped {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-links.grouped {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-wrap {
        width: min(100% - 1.25rem, 1200px);
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .brand span {
        display: none;
    }

    h1 {
        font-size: clamp(44px, 15vw, 68px);
    }

    .button {
        width: 100%;
    }

    .hero-actions,
    .card-actions,
    .contact-direct {
        gap: 8px;
    }
}
