/* ============================================================
   BUY REAL MONEY — Premium Dark Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:          #0d0d14;
    --bg-surface:  #13131f;
    --bg-card:     #1a1a2a;
    --bg-hover:    #22223a;
    --border:      rgba(255, 255, 255, 0.07);
    --border-lit:  rgba(240, 192, 64, 0.35);
    --gold:        #f0c040;
    --gold-dim:    #c9a030;
    --gold-glow:   rgba(240, 192, 64, 0.18);
    --teal:        #4ecdc4;
    --teal-dim:    #35aaa2;
    --text:        #e8e8f0;
    --text-muted:  #888899;
    --text-faint:  #555566;
    --danger:      #e03a3e;
    --success:     #61bb46;
    --warn:        #fdb827;
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   18px;
    --shadow:      0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 0 20px rgba(240, 192, 64, 0.2);
    --transition:  0.22s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* ── Wrapper ──────────────────────────────────────────────── */
.wrapper {
    display: block;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    background: var(--bg-surface);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    min-height: 100vh;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    float: left;
    margin: 22px 0 22px 22px;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.05rem;
    font-weight: 700;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

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

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

/* ── Announcement Bar ─────────────────────────────────────── */
.save {
    width: 100%;
    background: linear-gradient(90deg, #0a0a10, #1a1225, #0a0a10);
    border-bottom: 1px solid var(--border-lit);
    color: var(--text-muted);
    padding: 7px 15px;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

.save strong {
    color: var(--gold);
}

.save a {
    color: var(--gold);
    font-weight: 600;
}

.save a:hover {
    color: var(--teal);
}

/* ── Header ───────────────────────────────────────────────── */
header {
    padding: 0 22px;
    padding-bottom: 2em;
    /* Solid background — no backdrop-filter bleed when scrolling */
    background: #0d0d16;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent) 1;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 500;
}

header div {
    display: inline-block;
    vertical-align: middle;
}

header div #logo {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
}

header div p {
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

header nav {
    display: block;
    padding: 18px 0;
}

/* Cover both the legacy .navigation class and any nav ul inside header */
header nav ul,
ul.navigation {
    display: inline-flex;
    float: right;
    list-style: none;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

header nav ul li a,
ul.navigation li a {
    display: inline-block;
    border: 1px solid rgba(240, 192, 64, 0.28);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    transition: all var(--transition);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.03);
}

header nav ul li a:hover,
ul.navigation li a:hover {
    color: #0d0d14;
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 14px rgba(240, 192, 64, 0.35);
}

header nav ul li a:active,
ul.navigation li a:active {
    background: var(--teal);
    border-color: var(--teal);
    color: #0d0d14;
}

/* ── Header Image ─────────────────────────────────────────── */
#header-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    opacity: 0.85;
    filter: brightness(0.8) saturate(0.9);
}

/* ── Status Bar ───────────────────────────────────────────── */
header .status-bar {
    display: inline-block;
    float: right;
    width: 250px;
    height: 22px;
    margin-top: -50px;
    border: 1px solid var(--border-lit);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
}

header .status-bar p {
    float: right;
    margin-right: 10px;
    color: var(--text-muted);
    font-size: 0.78rem;
}

header .status-bar a {
    float: right;
}

/* ── Main layout ──────────────────────────────────────────── */
main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* ── Article ──────────────────────────────────────────────── */
article {    
    display: block;
    width: 100%;
    float: none;
    padding: 28px 24px;
}

.guide {
    width: 100%;
}

article, .guide {
    display: block;
    width: 100%;
    float: none;
    padding: 28px 24px;
}

article h2, .guide h2 {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 1rem;
}

article h2.question, .guide h2.question {
    color: var(--teal);
    margin-top: 22px;
    font-size: 0.97rem;
}

article .question, .guide .question {
    font-size: 1rem;
}

article p, .guide p {
    margin-bottom: 18px;
    color: var(--text);
    opacity: 0.88;
}

article img, .guide img {
    margin-bottom: 22px;
    border: 1px solid var(--border-lit);
    border-radius: var(--radius-md);
}

/* ── Review blocks ────────────────────────────────────────── */
article .review, .guide .review {
    display: block;
    float: left;
    width: 100%;
    margin: 16px 0;
    padding: 6px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

/* Invisible anchor placed above each review box.
   Shifts the browser's jump-to point up by the sticky header height
   so the target comment is fully visible after navigation. */
.comment-anchor {
    display: block;
    position: relative;
    top: -110px;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

article .review p, .guide .review p {
    margin: 0;
    padding: 10px 14px;
    background: var(--bg-hover);
    border: 1px solid var(--border-lit);
    border-radius: var(--radius-sm);
    color: var(--text);
}

article .review .admin-post, .guide .review .admin-post {
    color: var(--bg);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
}

article .review .pinned, .guide .review .pinned {
    color: var(--bg);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
}

article .review .reply, .guide .review .reply {
    float: right;
    color: var(--gold);
    font-size: 0.82rem;
}

article code, .guide code {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--teal);
    word-break: break-all;
}

article #comment-section, .guide #comment-section {
    display: block;
    width: 100%;
    float: left;
}

article .error, .guide .error {
    color: var(--danger);
}

/* ── Payment Modals ───────────────────────────────────────── */
#blockoPayModal .modal-footer { display: none !important; }
#blocko-merchant-ratings,
#blocko-merchant-ratings-tooltip { display: none !important; }
#blockoPayModal.modal .modal-header .modal-desc { white-space: normal !important; }

/* ── Checkout ─────────────────────────────────────────────── */
.checkout {
    width: 100%;
}

.checkout table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.checkout table tbody tr {
    border-bottom: 1px solid var(--border);
}

.checkout table tbody tr:last-of-type {
    border-bottom: none;
}

.checkout table tbody tr th {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.checkout table tbody tr td {
    line-height: 40px;
    font-weight: 600;
    color: var(--text);
}

.checkout #total {
    margin: 40px 0;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.checkout .add-shipment input {
    min-width: unset;
    border: none;
    background: var(--gold);
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}

.checkout .add-shipment input:hover {
    background: var(--teal);
    box-shadow: 0 0 16px rgba(78, 205, 196, 0.3);
}

/* ── Send Bitcoin ─────────────────────────────────────────── */
.send-bitcoin {
    width: 100%;
}

.send-bitcoin p {
    margin-bottom: 10px;
    color: var(--text);
}

.send-bitcoin .payment-address {
    display: block;
    padding: 22px;
    text-align: center;
    border: 3px solid var(--danger);
    border-radius: var(--radius-md);
    background: rgba(224, 58, 62, 0.08);
    font-weight: 700;
    color: var(--danger);
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
}

.send-bitcoin table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.send-bitcoin table tbody tr {
    border-bottom: 1px solid var(--border);
}

.send-bitcoin table tbody tr:last-of-type {
    border-bottom: none;
}

.send-bitcoin table tbody tr td {
    line-height: 40px;
    font-weight: 400;
    vertical-align: text-top;
    color: var(--text);
}

.send-bitcoin table tbody tr td:first-of-type {
    min-width: 180px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.send-bitcoin #download-letter {
    padding: 14px 22px;
    font-size: 1rem;
    background: var(--gold);
    color: var(--bg);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}

.send-bitcoin #download-letter:hover {
    background: var(--teal);
    box-shadow: 0 0 16px rgba(78, 205, 196, 0.3);
}

.send-bitcoin .point {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.send-bitcoin .point .remove {
    text-decoration: line-through;
    text-decoration-color: var(--danger);
    opacity: 0.6;
}

.send-bitcoin ol, .send-bitcoin ul {
    padding-left: 20px;
}

.send-bitcoin ol ol,
.send-bitcoin ol ul,
.send-bitcoin ul ol,
.send-bitcoin ul ul {
    padding-left: 20px;
}

/* ── Countries ────────────────────────────────────────────── */
#countries h2 {
    margin-top: 28px;
    color: var(--gold);
}

#countries ul {
    margin-left: 20px;
    color: var(--text);
}

/* ── Aside / Sidebar ──────────────────────────────────────── */
aside {
    display: block;
    width: 100%;
    clear: both;
    padding: 28px 20px;
    border-top: 1px solid var(--border);
}

/* Two-column grid inside the aside */
aside .aside-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    width: 100%;
}

aside .aside-col {
    min-width: 0; /* prevent grid blowout */
}

aside .aside-col-left {
    padding-right: 10px;
    border-right: 1px solid var(--border-lit);
}

aside .aside-col-right {
    padding-left: 4px;
}

aside ul {
    list-style: none;
}

aside .important-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.88rem;
}

aside .important-list li strong {
    color: var(--gold);
}

aside h2:first-child {
    margin-top: 0;
}

aside h2 {
    padding-bottom: 6px;
    margin-top: 28px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--border-lit);
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

aside .aside-col h2:first-child {
    margin-top: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
aside .testimonial {
    display: block;
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-lit);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

aside .testimonial:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

aside .quote-symbol {
    display: inline-block;
    float: left;
    margin-right: 12px;
}

aside .quote-symbol::before {
    content: '"';
    color: var(--gold);
    font-size: 2.5em;
    font-weight: 800;
    line-height: 0.6;
    display: block;
}

aside .comment {
    display: inline-block;
    float: left;
    margin-top: -4px;
    margin-left: 12px;
    width: calc(100% - 50px);
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.5;
}

aside .author {
    display: block;
    text-align: right;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    margin-top: 6px;
    clear: both;
}

/* ── Inventory Badges ─────────────────────────────────────── */
aside .high, aside .medium, aside .low {
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

aside .high {
    background: rgba(97, 187, 70, 0.18);
    color: var(--success);
    border: 1px solid rgba(97, 187, 70, 0.4);
}

aside .medium {
    background: rgba(253, 184, 39, 0.15);
    color: var(--warn);
    border: 1px solid rgba(253, 184, 39, 0.4);
}

aside .low {
    background: rgba(224, 58, 62, 0.15);
    color: var(--danger);
    border: 1px solid rgba(224, 58, 62, 0.4);
}

/* ── Packages (product pages) ─────────────────────────────── */
.packages {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    margin: 24px 0;
    gap: 14px;
    padding: 0 16px;
}

.packages .offer {
    width: 32%;
    min-width: 210px;
    text-align: center;
    border: 1px solid var(--border-lit);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.packages .offer:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.packages .offer h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    padding: 20px 16px 16px;
    color: var(--gold);
    background: linear-gradient(180deg, var(--bg-hover), var(--bg-card));
    border-bottom: 1px solid var(--border);
}

.packages .offer > div:first-of-type {
    padding: 16px;
    border-top: 1px solid var(--border);
}

.packages .offer > div:first-of-type ul {
    list-style: none;
}

.packages .offer > div:first-of-type ul li {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.packages .offer > div:first-of-type ul li:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.packages .offer .buy {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    transition: background var(--transition), box-shadow var(--transition);
}

.packages .offer .buy a {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    color: var(--bg);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.packages .offer .buy:hover {
    background: linear-gradient(135deg, var(--teal-dim), var(--teal));
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

#usd .offer  { border-top: 3px solid #4caf80; }
#eur .offer  { border-top: 3px solid #9c7fc8; }
#gbp .offer  { border-top: 3px solid #d4a642; }
#chf .offer  { border-top: 3px solid #4ec9d4; }

/* ── Important / Warning ──────────────────────────────────── */
.important {
    color: var(--danger);
}

h2.important {
    color: var(--danger) !important;
}

p.important {
    background: rgba(224, 58, 62, 0.08);
    border-left: 3px solid var(--danger);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.attention-bg {
    background: linear-gradient(135deg, var(--danger), #ff5e62);
    color: #fff;
    padding: 2px 1px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(224, 58, 62, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ── Product Page ─────────────────────────────────────────── */
.product-page h2 {
    margin-top: 26px;
    color: var(--gold);
}

.product-page h1 + p {
    padding-bottom: 22px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.product-page .point {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.product-page .point .remove {
    text-decoration: line-through;
    text-decoration-color: var(--danger);
    opacity: 0.6;
}

.product-page ol, .product-page ul {
    padding-left: 20px;
}

.product-page ol ol,
.product-page ol ul,
.product-page ul ol,
.product-page ul ul {
    padding-left: 20px;
}

/* ── Column utility ───────────────────────────────────────── */
.column {
    display: flex;
    flex-direction: column;
}

/* ── Forms ────────────────────────────────────────────────── */
form div {
    display: block;
    width: 100%;
}

form label {
    display: inline-block;
    float: left;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

form input,
form textarea,
form select {
    display: inline-block;
    float: left;
    max-width: 100%;
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

form textarea {
    min-height: 180px;
    max-height: 380px;
    resize: vertical;
}

form #captcha-image {
    margin-bottom: 10px;
}

form #submit {
    display: inline-block;
    min-width: unset;
    float: right;
    padding: 12px 24px;
    font-size: 1rem;
    background: var(--gold);
    color: var(--bg);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

form #submit:hover {
    background: var(--teal);
    box-shadow: 0 0 16px rgba(78, 205, 196, 0.35);
    transform: translateY(-1px);
}

/* ── Pagination ───────────────────────────────────────────── */
.easyPaginateNav {
    margin-bottom: 44px;
}

.easyPaginateNav a {
    padding: 5px 10px;
    color: var(--gold);
    border: 1px solid var(--border-lit);
    border-radius: var(--radius-sm);
    margin: 2px;
    display: inline-block;
    transition: background var(--transition), color var(--transition);
}

.easyPaginateNav a:hover {
    background: var(--gold);
    color: var(--bg);
}

.easyPaginateNav .current {
    font-weight: 700;
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.easyPaginateNav .page {
    display: inline-block;
}

/* ── Scroll-to-top ────────────────────────────────────────── */
#scroll-up {
    display: inline-block;
    position: fixed;
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    color: var(--bg);
    font-size: 1rem;
    font-weight: 700;
    background: var(--gold);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.35);
    letter-spacing: 0.05em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    z-index: 400;
    text-transform: uppercase;
    font-size: 0.72rem;
}

#scroll-up:hover {
    background: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(78, 205, 196, 0.4);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    display: inline-block;
    width: 100%;
    padding: 0 22px 50px;
    color: var(--text-muted);
    text-align: center;
    background: #08080f;
    border-top: 1px solid var(--border-lit);
}

footer h2 {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.9rem;
}

footer nav {
    display: block;
    padding: 28px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

footer nav ul {
    display: inline-flex;
    list-style: none;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

footer nav ul li a {
    border: 1px solid var(--border-lit);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all var(--transition);
}

footer nav ul li a:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

footer nav ul li a:active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--bg);
}

footer a {
    display: block;
    margin-top: 16px;
}

footer .hidden {
    display: none;
}

/* ── Pixel ────────────────────────────────────────────────── */
#pixel {
    width: 1px;
}

/* ── Verify badge (fixed bottom-left) ────────────────────── */
.embed_os {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 300;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.embed_os:hover {
    opacity: 1;
}

.img3 {
    width: 90px;
    border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Burger menu (CSS-only, no JavaScript)
══════════════════════════════════════════════════════════ */

/* Hide the checkbox trigger — it's only a state holder */
#nav-toggle {
    display: none;
}

/* Burger button hidden on desktop */
.burger {
    display: none;
}

@media screen and (max-width: 880px) {

    /* Hide nav links by default on mobile */
    header nav ul,
    ul.navigation {
        display: none;
    }

    /* Show burger button on mobile */
    .burger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        position: fixed;
        top: 14px;
        right: 14px;
        padding: 10px 12px;
        background: var(--bg-card);
        border: 1px solid var(--border-lit);
        border-radius: var(--radius-md);
        cursor: pointer;
        z-index: 1000;
        /* Make it look and feel like a button */
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .burger:hover {
        border-color: var(--gold);
    }

    /* The three hamburger lines */
    .burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    /* ── When checkbox is checked: show full-screen nav overlay ── */
    #nav-toggle:checked ~ ul.navigation {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 80px 20px 40px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 8, 16, 0.98);
        z-index: 900;
        gap: 10px;
        text-align: center;
    }

    #nav-toggle:checked ~ ul.navigation li {
        float: none !important;
        width: 100%;
        margin: 0;
    }

    #nav-toggle:checked ~ ul.navigation li a {
        font-size: 1.2rem !important;
        padding: 14px 40px !important;
        display: block;
        width: 100%;
        border-radius: var(--radius-md) !important;
        border-color: rgba(240, 192, 64, 0.3) !important;
    }

    /* ── When checkbox is checked: animate burger → ✕ ── */
    #nav-toggle:checked ~ .burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    #nav-toggle:checked ~ .burger span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    #nav-toggle:checked ~ .burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    footer nav ul {
        flex-direction: column;
        align-items: center;
    }

    footer nav ul li {
        float: none;
    }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
══════════════════════════════════════════════════════════ */
@media screen and (max-width: 790px) {
    header nav ul li,
    ul.navigation li {
        margin-top: 8px;
    }

    header .status-bar {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
══════════════════════════════════════════════════════════ */
@media screen and (max-width: 680px) {
    body {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.3rem;
        margin: 16px 0 16px 14px;
    }

    article {
        width: 100%;
        padding: 18px 14px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    aside {
        width: 100%;
        padding: 18px 14px;
    }

    aside .comment {
        width: calc(100% - 44px);
        margin-top: 0;
    }

    aside .author {
        margin-top: 6px;
    }

    .packages {
        flex-direction: column;
        padding: 0 10px;
    }

    .packages .offer {
        width: 100%;
        min-width: unset;
    }

    header {
        padding: 0 14px;
    }

    #header-image {
        max-height: 180px;
    }

    #scroll-up {
        right: 10px;
        bottom: 10px;
        padding: 10px 13px;
    }

    /* Mobile tap targets */
    header nav ul li a,
    footer nav ul li a {
        padding: 9px 16px;
        font-size: 0.9rem;
    }

    form input,
    form textarea,
    form select {
        font-size: 1rem;
        padding: 12px 14px;
    }

    form #submit {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .checkout table tbody tr td,
    .send-bitcoin table tbody tr td {
        line-height: 1.6;
        padding: 8px 4px;
    }

    .send-bitcoin table tbody tr td:first-of-type {
        min-width: unset;
        display: block;
        font-weight: 600;
    }

    #pgp {
        display: none;
    }

    #pgp + code {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════════════ */
@media print {
    body {
        background: none
    }

    header, footer, #header-image, .save, .no-print {
        display: none
    }
}

/* ── Review page enhancements ────────────────────────── */
article .review {
    padding: 14px 18px;
    position: relative;
    overflow: hidden;
}

article .review > br:first-of-type {
    display: none;
}

article .review p {
    margin: 6px 0 4px;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Dynamic review: structured meta header */
.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.review-num {
    color: var(--text-faint);
    font-size: 0.72rem;
    font-weight: 400;
}

.review-user {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
}

.review-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 6px;
}

.review-meta .reply {
    float: none !important;
    margin-left: auto;
    color: var(--teal);
    font-size: 0.75rem;
}

/* Pulsing gold NEW badge */
.badge-new {
    display: inline-block;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    vertical-align: middle;
    animation: pulse-new 2.5s ease-in-out infinite;
}

@keyframes pulse-new {
    0%, 100% { box-shadow: 0 0 0 0 rgba(240,192,64,0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(240,192,64,0); }
}

/* Today's comments: gold left border glow */
.review-today {
    border-left: 3px solid var(--gold) !important;
    background: linear-gradient(
        to right,
        rgba(240,192,64,0.06),
        var(--bg-card)
    ) !important;
}

@media screen and (max-width: 680px) {
    article .review {
        padding: 12px;
    }
    .review-meta {
        gap: 6px;
    }
}