/* 91 Club — Premium Gaming Blog */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary: #ff5c5c;
    --secondary: #ff7f50;
    --accent: #ffd166;
    --bg: #ffffff;
    --card: #fff9f7;
    --border: #ececec;
    --text: #222222;
    --muted: #666666;
    --grad: linear-gradient(90deg, #ff5c5c, #ff7f50);
    --grad-soft: linear-gradient(135deg, #fff5f0, #fff9f7);
    --shadow-sm: 0 2px 8px rgba(255, 92, 92, .06);
    --shadow: 0 8px 24px rgba(255, 92, 92, .10);
    --shadow-lg: 0 20px 48px rgba(255, 92, 92, .16);
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: var(--secondary)
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text)
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #000
}

.brand-name {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none
}

.menu a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .94rem;
    transition: all .2s
}

.menu a:hover,
.menu a.active {
    background: var(--card);
    color: var(--primary)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    text-decoration: none;
    font-family: inherit
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: var(--shadow)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 10px
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    transition: .3s
}

/* Hero */

.hero {
    padding: 80px 0 60px;
    background: var(--grad-soft);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 127, 80, .25), transparent 70%);
    border-radius: 50%
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 92, 92, .18), transparent 70%);
    border-radius: 50%
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 840px;
    margin: 0 auto
}

.eyebrow {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 18px
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 28px
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* Sections */

section {
    padding: 64px 0
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 12px
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem
}

h2,
h3,
h4 {
    font-family: var(--font-display);
    letter-spacing: -.01em
}

/* Feature cards */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px
}

.feature {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .3s, box-shadow .3s
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 8px
}

.feature p {
    color: var(--muted);
    font-size: .95rem
}

/* Info table */

.info-table-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    overflow-x: auto;
    box-shadow: var(--shadow-sm)
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

thead {
    background: var(--grad);
    color: #fff
}

th,
td {
    padding: 16px 20px;
    text-align: left;
    font-size: .96rem
}

th {
    font-weight: 600;
    letter-spacing: .3px
}

tbody tr {
    border-bottom: 1px solid var(--border)
}

tbody tr:last-child {
    border-bottom: none
}

tbody tr:hover {
    background: #fff
}

td:first-child {
    font-weight: 600;
    color: var(--text)
}

/* TOC */

.toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 32px 0
}

.toc h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text)
}

.toc ol {
    padding-left: 22px
}

.toc li {
    padding: 4px 0;
    color: var(--muted)
}

.toc a {
    color: var(--text);
    font-weight: 500
}

.toc a:hover {
    color: var(--primary)
}

/* Article */

.article {
    max-width: 820px;
    margin: 0 auto
}

.article h2 {
    font-size: 1.7rem;
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--card)
}

.article h3 {
    font-size: 1.25rem;
    margin: 26px 0 10px
}

.article p {
    margin-bottom: 14px;
    color: #333
}

.article ul,
.article ol {
    margin: 8px 0 18px 24px
}

.article li {
    margin-bottom: 6px
}

.article blockquote {
    background: var(--grad-soft);
    border-left: 4px solid var(--primary);
    padding: 18px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
    color: #444;
    font-style: italic
}

.article img {
    border-radius: var(--radius);
    margin: 18px 0;
    box-shadow: var(--shadow-sm)
}

/* Bonus image grid */

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0
}

.bonus-grid figure {
    background: #0d0405;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s
}

.bonus-grid figure:hover {
    transform: translateY(-4px)
}

.bonus-grid img {
    width: 100%;
    display: block
}

.bonus-grid figcaption {
    padding: 14px 18px;
    color: #fff;
    font-size: .92rem;
    background: linear-gradient(180deg, transparent, #000)
}

/* FAQ */

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

.faq details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: box-shadow .2s
}

.faq details[open] {
    box-shadow: var(--shadow-sm)
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text)
}

.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform .3s
}

.faq details[open] summary::after {
    transform: rotate(45deg)
}

.faq details p {
    margin-top: 12px;
    color: var(--muted)
}

/* Related */

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px
}

.related-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: transform .3s, box-shadow .3s
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.related-card .tag {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    font-size: .72rem;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px
}

.related-card h3 a {
    color: var(--text)
}

.related-card h3 a:hover {
    color: var(--primary)
}

.related-card p {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 10px
}

.related-card .read-more {
    font-weight: 600;
    font-size: .9rem
}

/* Breadcrumb */

.breadcrumb {
    padding: 18px 0;
    font-size: .88rem;
    color: var(--muted)
}

.breadcrumb a {
    color: var(--muted)
}

.breadcrumb a:hover {
    color: var(--primary)
}

.breadcrumb span {
    margin: 0 6px
}

/* Auth-style guide block */

.guide-card {
    max-width: 520px;
    margin: 24px auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow)
}

.guide-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text)
}

.guide-card input,
.guide-card select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: inherit;
    background: #fafafa
}

.guide-card input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff
}

.guide-card .btn {
    width: 100%
}

/* Notice */

.notice {
    background: var(--grad-soft);
    border: 1px solid #ffd9c9;
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: var(--radius);
    margin: 22px 0;
    color: #5a2a1a
}

.notice strong {
    color: var(--primary)
}

/* Footer */

.site-footer {
    background: #1a1010;
    color: #d8c8c4;
    padding: 60px 0 24px;
    margin-top: 80px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: var(--font-display)
}

.site-footer ul {
    list-style: none
}

.site-footer li {
    margin-bottom: 8px
}

.site-footer a {
    color: #d8c8c4;
    font-size: .92rem
}

.site-footer a:hover {
    color: var(--accent)
}

.site-footer .brand-name {
    background: var(--grad);
    -webkit-background-clip: text;
    color: transparent
}

.footer-about {
    color: #a99a96;
    font-size: .92rem;
    line-height: 1.65
}

.copy {
    padding-top: 24px;
    border-top: 1px solid #2a1a1a;
    text-align: center;
    color: #a99a96;
    font-size: .85rem
}

/* Responsive */

@media (max-width:860px) {
    .menu-toggle {
        display: block
    }
    .menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: transform .3s;
        box-shadow: var(--shadow)
    }
    .menu.open {
        transform: translateY(0)
    }
    .menu a {
        padding: 12px 16px;
        border-radius: 8px
    }
    .nav-cta {
        display: none
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }
    .hero {
        padding: 60px 0 40px
    }
    section {
        padding: 48px 0
    }
}

@media (max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }
    th,
    td {
        padding: 12px 14px;
        font-size: .88rem
    }
}