:root {
    --gold: #d4af37;
    --gold-soft: #f4df9a;
    --ink: #050506;
    --panel: rgba(10, 10, 13, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --panel-strong: rgba(18, 17, 18, 0.96);
    --border: rgba(212, 175, 55, 0.18);
    --border-strong: rgba(212, 175, 55, 0.34);
    --text: #efe8d4;
    --muted: #a8adba;
    --cyan: #72d6ff;
    --green: #78e2a4;
    --danger: #ff7676;
}

* { box-sizing: border-box; }

body.drop-guide-page {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    background:
        radial-gradient(circle at 16% 0%, rgba(212, 175, 55, 0.16), transparent 30%),
        radial-gradient(circle at 86% 10%, rgba(114, 214, 255, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(2, 2, 3, 0.86), rgba(4, 4, 5, 0.98)),
        url('/assets/img/bg.jpg') center/cover fixed;
}

body.drop-guide-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at top, #000, transparent 72%);
}

.drop-guide-page a { color: inherit; text-decoration: none; }

.drop-guide-page .shell {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    padding: 22px 0 76px;
}

.drop-guide-page .topbar,
.drop-guide-page .section-card,
.drop-guide-page .hero-copy,
.drop-guide-page .hero-panel,
.drop-guide-page .card {
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(13, 13, 16, 0.92), rgba(8, 8, 10, 0.82));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
}

.drop-guide-page .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 22px;
    position: sticky;
    top: 14px;
    z-index: 20;
}

.drop-guide-page .brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drop-guide-page .brand img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}

.drop-guide-page .brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drop-guide-page .brand-copy strong {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
    color: var(--gold-soft);
}

.drop-guide-page .brand-copy span {
    color: var(--muted);
    font-size: 0.78rem;
}

.drop-guide-page .nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.drop-guide-page .nav a,
.drop-guide-page .btn-primary,
.drop-guide-page .btn-secondary,
.drop-search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.drop-guide-page .nav a.active,
.drop-guide-page .nav a:hover,
.drop-guide-page .btn-primary,
.drop-search-box button {
    color: #060606;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border-color: transparent;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.22);
}

.drop-guide-page .nav a:hover,
.drop-guide-page .btn-primary:hover,
.drop-guide-page .btn-secondary:hover,
.drop-search-box button:hover {
    transform: translateY(-2px);
}

.drop-guide-page .btn-secondary:hover {
    border-color: var(--border-strong);
    box-shadow: 0 0 20px rgba(240, 180, 41, 0.18);
}

.drop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 18px;
    align-items: stretch;
    margin: 22px 0 18px;
}

.drop-guide-page .hero-copy,
.drop-guide-page .hero-panel {
    border-radius: 30px;
    padding: clamp(24px, 4vw, 46px);
    position: relative;
    overflow: hidden;
}

.drop-guide-page .hero-copy::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 65%);
}

.drop-guide-page .eyebrow,
.drop-guide-page .section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drop-guide-page h1,
.drop-guide-page h2,
.drop-guide-page h3 {
    font-family: 'Cinzel', serif;
    color: #fff7dc;
    margin: 0;
}

.drop-guide-page h1 {
    max-width: 850px;
    margin-top: 20px;
    font-size: clamp(2.25rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.drop-guide-page .hero-copy p,
.drop-guide-page .section-head p,
.drop-guide-page .card p,
.drop-empty-state p,
.detail-muted {
    color: var(--muted);
    line-height: 1.7;
}

.drop-guide-page .hero-copy p {
    max-width: 780px;
    margin: 18px 0 0;
    font-size: 1.02rem;
}

.drop-guide-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.live-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.live-panel h3 { font-size: 1.4rem; }

.live-panel .fact {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.live-panel .fact span { color: var(--muted); }

.live-panel .fact strong {
    text-align: right;
    color: var(--gold-soft);
}

.live-badge {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    color: #051007;
    background: linear-gradient(135deg, var(--green), #c8ffd8);
    font-weight: 900;
}

.drop-guide-page .section-card {
    border-radius: 28px;
    padding: clamp(20px, 3vw, 30px);
    margin-bottom: 18px;
}

.drop-guide-page .section-head,
.console-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 22px;
}

.drop-guide-page .section-head h2,
.console-head h2 {
    margin-top: 12px;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.drop-guide-page .section-head p {
    max-width: 66ch;
    margin: 0;
}

.drop-guide-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.drop-guide-page .card {
    border-radius: 22px;
    padding: 22px;
}

.engine-summary { cursor: pointer; }

.engine-summary i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #090909;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    margin-bottom: 14px;
}

.drop-console {
    position: relative;
    overflow: hidden;
}

.drop-console::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(114, 214, 255, 0.08), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.10), transparent 30%);
}

.drop-console > * { position: relative; }

.freshness {
    min-width: 170px;
    padding: 12px 14px;
    border: 1px solid rgba(114, 214, 255, 0.28);
    border-radius: 18px;
    background: rgba(114, 214, 255, 0.07);
    text-align: right;
}

.freshness span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.freshness strong { color: var(--cyan); }

.engine-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.engine-tabs button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 16px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.engine-tabs button i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--gold-soft);
    background: rgba(212, 175, 55, 0.10);
}

.engine-tabs button strong { font-size: 0.98rem; }

.engine-tabs button span {
    color: var(--muted);
    font-size: 0.82rem;
}

.engine-tabs button.is-active {
    border-color: var(--border-strong);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.10), 0 18px 36px rgba(0, 0, 0, 0.24);
}

.engine-tabs button:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
}

.drop-search-row {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.drop-search-row label {
    color: var(--gold-soft);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.drop-search-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 8px 8px 8px 16px;
    background: rgba(0, 0, 0, 0.28);
}

.drop-search-box i { color: var(--gold-soft); }

.drop-search-box input {
    width: 100%;
    min-height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.drop-search-box input::placeholder { color: rgba(255, 255, 255, 0.38); }

.drop-console-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: 16px;
    min-height: 560px;
}

.drop-results-panel,
.drop-detail-panel {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title span {
    color: var(--muted);
    font-weight: 800;
}

.panel-title strong {
    min-width: 34px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #060606;
    background: var(--gold);
}

.drop-results {
    max-height: 640px;
    overflow: auto;
    padding: 10px;
}

.drop-result-btn {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 18px;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 13px;
    display: grid;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.drop-result-btn + .drop-result-btn { margin-top: 6px; }

.drop-result-btn:hover,
.drop-result-btn.is-active {
    background: rgba(212, 175, 55, 0.10);
    border-color: var(--border);
    transform: translateX(2px);
}

.drop-result-btn strong { color: #fff7dc; }

.drop-result-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-tag,
.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.drop-detail-panel {
    padding: clamp(18px, 3vw, 26px);
    min-height: 560px;
}

.drop-empty-state {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 28px;
}

.drop-empty-state.compact { min-height: 220px; }

.drop-empty-state i {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #080808;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    font-size: 1.8rem;
}

.detail-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.detail-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(212, 175, 55, 0.09);
}

.detail-icon img {
    max-width: 46px;
    max-height: 46px;
    image-rendering: auto;
}

.detail-icon i {
    color: var(--gold-soft);
    font-size: 1.8rem;
}

.detail-hero h3 { font-size: clamp(1.35rem, 3vw, 2.1rem); }
.detail-tags { margin-top: 10px; gap: 8px; }

.detail-section { margin-top: 18px; }

.detail-section-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.detail-section-head h4 {
    margin: 0;
    color: var(--gold-soft);
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-section-head span {
    color: var(--muted);
    font-size: 0.8rem;
}

.detail-list {
    display: grid;
    gap: 8px;
    max-height: 360px;
    overflow: auto;
    padding-right: 4px;
}

.detail-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.detail-row .row-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.14);
    overflow: hidden;
}

.detail-row .row-icon img {
    max-width: 30px;
    max-height: 30px;
}

.detail-row strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

.detail-row small { color: var(--muted); }

.row-value {
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
}

.detail-note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.detail-note {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.detail-note strong {
    display: block;
    color: var(--gold-soft);
    margin-bottom: 4px;
}

.detail-note span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.drop-loading {
    min-height: 180px;
    display: grid;
    place-items: center;
    color: var(--gold-soft);
    font-weight: 900;
}

.drop-error {
    border: 1px solid rgba(255, 118, 118, 0.34);
    color: #ffe0e0;
    background: rgba(255, 118, 118, 0.08);
    padding: 14px;
    border-radius: 18px;
}

@media (max-width: 980px) {
    .drop-guide-page .topbar,
    .drop-guide-page .section-head,
    .console-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .drop-hero,
    .drop-console-grid,
    .drop-guide-page .grid-3,
    .detail-note-grid {
        grid-template-columns: 1fr;
    }

    .engine-tabs { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .drop-guide-page .nav,
    .drop-guide-page .hero-actions {
        width: 100%;
    }

    .drop-guide-page .nav a,
    .drop-guide-page .btn-primary,
    .drop-guide-page .btn-secondary {
        width: 100%;
    }

    .drop-search-box {
        grid-template-columns: auto 1fr;
    }

    .drop-search-box button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .detail-row {
        grid-template-columns: auto 1fr;
    }

    .row-value {
        grid-column: 1 / -1;
        white-space: normal;
    }
}
