:root {
    --adothria-gold: #dda85c;
    --adothria-gold-hover: #f0c080;
    --dark-bg: #2a3f4b;
    --darker-bg: #1e2f38;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding: 0 20px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: var(--adothria-gold);
}
a:hover {
    color: var(--adothria-gold-hover);
}

/* Top navigation */
.topnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(30, 47, 56, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    margin: 0 -20px 32px;
    padding: 12px 20px;
}

.topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topnav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--adothria-gold);
    font-weight: 600;
    font-size: 16px;
}

.topnav-brand i {
    font-size: 18px;
}

.topnav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-left: auto;
}

.topnav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.topnav-links a:hover {
    color: var(--adothria-gold);
    background: rgba(221, 168, 92, 0.08);
}

.topnav-links a.active {
    color: var(--adothria-gold);
    background: rgba(221, 168, 92, 0.12);
}

.topnav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    background: var(--adothria-gold);
    color: var(--darker-bg);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s ease;
}

.topnav-cta:hover {
    background: var(--adothria-gold-hover);
    color: var(--darker-bg);
}

/* Page header */
header.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 20px 20px 0;
}

.logo {
    width: 616px;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 12px rgba(221, 168, 92, 0.3));
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--adothria-gold);
    text-shadow: 0 2px 8px rgba(221, 168, 92, 0.3);
}

.intro {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 20px;
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 10px;
}

/* Sections */
section {
    margin-bottom: 50px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--adothria-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(221, 168, 92, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

h3 {
    color: var(--adothria-gold);
}

.section-icon {
    font-size: 28px;
    color: var(--adothria-gold);
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

img.section-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

img.nav-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
}

img.h1-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

img.see-also-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Prose content (SEO copy on topic pages) */
.prose {
    max-width: 900px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

.prose p {
    margin-bottom: 16px;
}

.prose h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}

.prose ul {
    margin: 12px 0 16px 24px;
}

.prose li {
    margin-bottom: 8px;
}

.prose a {
    color: var(--adothria-gold);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Card Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.resource-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.resource-card-link {
    display: flex;
    gap: 20px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    align-items: center;
    width: 100%;
    flex: 1;
}

.resource-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.resource-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 168, 92, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--adothria-gold);
}

.resource-card:hover h3 {
    color: var(--adothria-gold-hover);
}

.resource-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.resource-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: var(--adothria-gold);
}

/* Featured Resource (Adothria) */
.resource-card.featured {
    background: linear-gradient(135deg, rgba(221, 168, 92, 0.1) 0%, var(--card-bg) 100%);
    border: 1px solid rgba(221, 168, 92, 0.25);
}

.resource-card.featured:hover {
    border-color: rgba(221, 168, 92, 0.5);
    box-shadow: 0 12px 32px rgba(221, 168, 92, 0.2);
}

/* List Style for Single Items */
.resource-list {
    list-style: none;
}

.resource-list li {
    list-style: none;
    margin-bottom: 16px;
}

.resource-list-link {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.list-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
}

.list-content {
    flex: 1;
}

.resource-list-link:hover {
    transform: translateX(4px);
    border-color: rgba(221, 168, 92, 0.4);
    cursor: pointer;
}

.resource-list-link .link-title {
    color: var(--adothria-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease;
    display: block;
}

.resource-list-link:hover .link-title {
    color: var(--adothria-gold-hover);
}

/* News cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.news-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 168, 92, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.news-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--darker-bg);
}

.news-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.news-card-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-source {
    color: var(--adothria-gold);
    font-weight: 600;
}

.news-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--adothria-gold);
    line-height: 1.35;
    margin: 0;
}

.news-card-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    flex: 1;
}

.news-source-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(221, 168, 92, 0.25);
    background: linear-gradient(135deg, rgba(221, 168, 92, 0.08) 0%, var(--card-bg) 100%);
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    flex-wrap: wrap;
}

.news-source-band a {
    color: var(--adothria-gold);
    font-weight: 600;
    text-decoration: none;
}

.news-source-band a:hover {
    color: var(--adothria-gold-hover);
    text-decoration: underline;
}

.news-fallback {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA band */
.cta-band {
    margin: 48px 0 24px;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(221, 168, 92, 0.15) 0%, var(--card-bg) 100%);
    border: 1px solid rgba(221, 168, 92, 0.3);
    border-radius: 14px;
    text-align: center;
}

.cta-band h2 {
    border: none;
    padding: 0;
    margin-bottom: 12px;
    justify-content: center;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 18px;
    font-size: 16px;
}

.cta-band-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--adothria-gold);
    color: var(--darker-bg);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.cta-band-button:hover {
    background: var(--adothria-gold-hover);
    color: var(--darker-bg);
    transform: translateY(-1px);
}

/* "See also" cross-page nav at bottom */
.see-also {
    margin-top: 60px;
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.see-also h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.see-also-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.see-also-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.see-also-grid a:hover {
    border-color: rgba(221, 168, 92, 0.4);
    color: var(--adothria-gold);
}

.see-also-grid i {
    color: var(--adothria-gold);
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--adothria-gold);
}

.footer-note {
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .section-icon { font-size: 24px; min-width: 28px; }
    img.section-icon { width: 28px; height: 28px; min-width: 28px; }
    img.h1-icon { width: 36px; height: 36px; }
    .intro { font-size: 16px; }
    .resource-grid { grid-template-columns: 1fr; }
    .logo { width: 353px; }
    header.page-header { margin-bottom: 40px; padding: 10px 10px 0; }
    section { margin-bottom: 40px; }
    .resource-logo { width: 72px; height: 72px; }
    .list-logo { width: 40px; height: 40px; }
    .topnav-links { gap: 2px; }
    .topnav-links a { padding: 6px 9px; font-size: 13px; }
}

@media (max-width: 480px) {
    body { padding: 0 15px 15px; }
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    .section-icon { font-size: 20px; min-width: 24px; }
    img.section-icon { width: 24px; height: 24px; min-width: 24px; }
    img.h1-icon { width: 30px; height: 30px; }
    .resource-card-link {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
        align-items: center;
        text-align: center;
    }
    .resource-logo { width: 64px; height: 64px; }
    .list-logo { width: 36px; height: 36px; }
    .footer-links a { display: block; margin: 10px 0; }
    .topnav { padding: 10px 15px; margin: 0 -15px 24px; }
    .topnav-inner { gap: 10px; }
    .topnav-brand { font-size: 14px; }
}

/* =========================================================================
   Trade listings — the live feed pulled from adothria.com/api/trading.
   List style (not cards), matching Adothria's own marketplace list view.
   ========================================================================= */

/* Stats band under the hero */
.trade-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 28px auto 0;
    max-width: 760px;
}

.trade-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(221, 168, 92, 0.1) 0%, var(--card-bg) 100%);
    border: 1px solid rgba(221, 168, 92, 0.25);
    border-radius: 12px;
}

.trade-stat img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.trade-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--adothria-gold);
    line-height: 1;
}

.trade-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.55);
}

/* The list */
.trade-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.trade-list li {
    list-style: none;
}

.trade-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trade-item:hover {
    transform: translateX(4px);
    border-color: rgba(221, 168, 92, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Trade-type badge (WTS / WTB / Service) */
.trade-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 64px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.trade-badge i {
    font-size: 12px;
}

.trade-badge.wts {
    background: rgba(76, 175, 113, 0.16);
    color: #6fd49a;
    border: 1px solid rgba(76, 175, 113, 0.35);
}

.trade-badge.wtb {
    background: rgba(92, 154, 221, 0.16);
    color: #84b6f0;
    border: 1px solid rgba(92, 154, 221, 0.35);
}

.trade-badge.service {
    background: rgba(178, 130, 221, 0.16);
    color: #c39ef0;
    border: 1px solid rgba(178, 130, 221, 0.35);
}

/* Item thumbnail */
.trade-thumb {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.trade-thumb-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Main content (title, item, tags) */
.trade-main {
    flex: 1;
    min-width: 0;
}

.trade-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--adothria-gold);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trade-item:hover .trade-title {
    color: var(--adothria-gold-hover);
}

.trade-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.trade-item-name {
    color: rgba(255, 255, 255, 0.78);
}

.trade-qty {
    color: rgba(255, 255, 255, 0.5);
}

.trade-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Price */
.trade-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 220px;
}

.currency-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.currency-chip img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.trade-each {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.trade-price-free {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Seller */
.trade-seller {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 110px;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.trade-seller-initial {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(221, 168, 92, 0.15);
    border: 1px solid rgba(221, 168, 92, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--adothria-gold);
    flex-shrink: 0;
}

.trade-list-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 18px;
    border: 1px dashed rgba(221, 168, 92, 0.3);
    border-radius: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.trade-list-empty {
    padding: 32px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.trade-updated {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    font-style: italic;
}

/* Responsive: collapse the list row on small screens */
@media (max-width: 768px) {
    .trade-item {
        flex-wrap: wrap;
        gap: 10px 14px;
    }
    .trade-main {
        flex-basis: calc(100% - 150px);
        order: 1;
    }
    .trade-price {
        order: 2;
        max-width: none;
        width: 100%;
        justify-content: flex-start;
        padding-left: 80px;
    }
    .trade-seller {
        order: 3;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .trade-item {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }
    .trade-badge { align-self: flex-start; }
    .trade-thumb, .trade-thumb-placeholder { align-self: flex-start; }
    .trade-main { flex-basis: auto; }
    .trade-price { padding-left: 0; justify-content: flex-start; }
    .trade-seller { justify-content: flex-start; margin-left: 0; }
    .trade-stat { flex: 1 1 100%; justify-content: center; }
}

/* Font Awesome icon used in place of an image in the stats band */
.trade-stat i {
    font-size: 24px;
    color: var(--adothria-gold);
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

/* =========================================================================
   In-game trading guide — step-by-step "how player-to-player trading works"
   with annotated screenshots. Lives on the index pillar below the listings.
   ========================================================================= */
.guide-step {
    margin-bottom: 8px;
}

.guide-step h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin: 28px 0 10px;
}

.guide-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(221, 168, 92, 0.15);
    border: 1px solid rgba(221, 168, 92, 0.4);
    color: var(--adothria-gold);
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

figure.guide-figure {
    margin: 18px 0 28px;
    text-align: center;
}

figure.guide-figure.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.guide-figure img {
    max-width: 100%;
    width: auto;
    max-height: 440px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--darker-bg);
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.guide-figure.split img {
    max-height: 340px;
}

.guide-figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.guide-figure.split figure {
    margin: 0;
}

/* Callout box (RMT/RWT-free notice) */
.notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(221, 168, 92, 0.1) 0%, var(--card-bg) 100%);
    border: 1px solid rgba(221, 168, 92, 0.3);
    border-radius: 12px;
}

.notice i {
    font-size: 28px;
    color: var(--adothria-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.notice h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    figure.guide-figure.split {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   Article / guide pages (how-to-trade, lone-wolf-vs-guild-member)
   ========================================================================= */

/* Inline text CTA — "Read the full guide →" */
.text-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-weight: 600;
    color: var(--adothria-gold);
    text-decoration: none;
}

.text-cta:hover {
    color: var(--adothria-gold-hover);
}

/* Article meta line (e.g. "Brighter Shores guide · Updated June 2026") */
.article-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* Comparison table (Lone Wolf vs Guild Member) */
.table-wrap {
    overflow-x: auto;
    margin: 22px 0;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    min-width: 480px;
}

.compare-table th,
.compare-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.compare-table thead th {
    background: rgba(221, 168, 92, 0.12);
    color: var(--adothria-gold);
    font-weight: 600;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table td:first-child,
.compare-table th:first-child {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.compare-yes {
    color: #6fd49a;
    font-weight: 600;
}

.compare-no {
    color: #e8908f;
    font-weight: 600;
}

/* FAQ list (FAQPage) */
.faq dt {
    font-weight: 600;
    color: var(--adothria-gold);
    margin-top: 18px;
    font-size: 17px;
}

.faq dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}
