:root {
    --bg-grey: #282828;
    --bg-purple: #3d2c5e;
    --primary-yellow: #fcb034;
    --accent-purple: #5e4b8b;
    --text-white: #ffffff;
    --brick-red: #c92a2a;
    --btn-shadow: #000000;
    --text-muted: #aaaaaa;
    --border: rgba(255, 255, 255, 0.12);
    --surface: rgba(255, 255, 255, 0.05);
    --surface-dark: rgba(0, 0, 0, 0.25);
}

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

body {
    background: var(--bg-grey);
    background: linear-gradient(to bottom, var(--bg-grey) 10%, var(--bg-purple) 100%);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    min-height: 100vh;
}

/* ── Header ── */
header {
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 3px solid #000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.78rem;
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    background: rgba(252, 176, 52, 0.08);
}

.nav-links a.active {
    color: #000;
    background: var(--primary-yellow);
    border-color: #000;
    box-shadow: 2px 2px 0 #000;
}

/* ── Hero ── */
.hero {
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 3px solid #000;
    padding: 3.5rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(252, 176, 52, 0.08);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(94, 75, 139, 0.2);
    pointer-events: none;
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.hero-logo {
    display: block;
    margin: 0 auto 1.25rem;
    height: 84px;
    width: auto;
    max-width: 330px;
    object-fit: contain;
}

.badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: #000;
    font-family: 'Russo One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 0.75rem;
}

.hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── Content ── */
.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.intro {
    font-size: 1rem;
    color: #ccc;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(252, 176, 52, 0.25);
    line-height: 1.8;
}

section {
    margin-bottom: 2.25rem;
    background: var(--surface-dark);
    border: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-yellow);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--primary-yellow);
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.3);
    flex-shrink: 0;
}

p {
    color: #ccc;
    margin-bottom: 0.75rem;
}

ul, ol {
    padding-left: 1.25rem;
    color: #ccc;
    margin-bottom: 0.75rem;
}

ul li, ol li {
    margin-bottom: 0.4rem;
}

strong {
    color: var(--text-white);
}

a {
    color: var(--primary-yellow);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.callout {
    background: rgba(252, 176, 52, 0.08);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.7;
}

/* Non-returnable items (refund page) */
.no-return-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
    overflow-x: auto;
}

.no-return-item {
    flex: 1 1 0;
    background: rgba(201, 42, 42, 0.15);
    border: 2px solid rgba(201, 42, 42, 0.4);
    border-radius: 8px;
    padding: 0.6rem 0.5rem;
    font-size: 0.72rem;
    color: #f5a0a0;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Trademark note (T&C page) */
.trademark-note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 1.25rem 0 0;
    font-style: italic;
    line-height: 1.6;
}

/* ── Footer ── */
footer {
    width: 100%;
    margin-top: auto;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

footer p {
    color: #aaa !important;
    margin-bottom: 0;
}

footer i {
    color: var(--brick-red);
}

footer a {
    color: #aaa !important;
    text-decoration: none !important;
}

footer a:hover {
    color: #aaa !important;
    text-decoration: none !important;
}

.legal-text {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 8px;
    line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }

    .nav-links { gap: 0.5rem; }

    .hero { padding: 2.5rem 1.25rem 2rem; }

    .content { padding: 2rem 1.25rem 4rem; }

    section { padding: 1.25rem; }

    footer { padding: 1.5rem 1.25rem; }
}
