/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --border: #1e1e2e;
    --border-hover: #2a2a3e;
    --text-primary: #e8e8f0;
    --text-secondary: #9090a8;
    --text-muted: #606078;
    --accent: #f7931a;
    --accent-light: #fbb04e;
    --accent-dark: #e07800;
    --accent-glow: rgba(247, 147, 26, 0.15);
    --gradient: linear-gradient(135deg, #f7931a 0%, #ffd700 50%, #f7931a 100%);
    --gradient-text: linear-gradient(135deg, #f7931a, #ffd700, #f7931a);
    --green: #22c55e;
    --green-bg: rgba(34, 197, 94, 0.08);
    --red: #ef4444;
    --red-bg: rgba(239, 68, 68, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1100px;
    --nav-height: 72px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
}

.logo:hover { color: var(--text-primary); }

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 700;
}

.logo-text strong {
    color: var(--accent);
}

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

.nav-links a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--accent);
    background: var(--accent-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
#pageContainer {
    padding-top: var(--nav-height);
}

.page {
    display: block;
    animation: fadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cards as links */
a.card,
a.card:hover {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 0rem;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 2rem;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-glow);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Visual – High-Quality Flat SVG Coin spinning in 3D */
.hero-visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.btc-svg-coin {
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    animation: spin3d 8s linear infinite;
    transform-style: preserve-3d;
}

@keyframes spin3d {
    0%   { transform: translateY(0)     rotateX(15deg) rotateY(0deg);   filter: drop-shadow(0 20px 40px rgba(247,147,26,0.3)) brightness(1); }
    25%  { transform: translateY(-8px)  rotateX(15deg) rotateY(90deg) scaleX(0.15);  filter: drop-shadow(0 25px 45px rgba(247,147,26,0.35)) brightness(1.1); }
    50%  { transform: translateY(-15px) rotateX(15deg) rotateY(180deg); filter: drop-shadow(0 30px 50px rgba(247,147,26,0.4)) brightness(1.2); }
    75%  { transform: translateY(-8px)  rotateX(15deg) rotateY(270deg) scaleX(0.15); filter: drop-shadow(0 25px 45px rgba(247,147,26,0.35)) brightness(1.1); }
    100% { transform: translateY(0)     rotateX(15deg) rotateY(360deg); filter: drop-shadow(0 20px 40px rgba(247,147,26,0.3)) brightness(1); }
}


/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

/* ========================================
   SECTION INTRO
   ======================================== */
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-intro p {
    color: var(--text-secondary);
}

/* ========================================
   PAGE HERO IMAGES
   ======================================== */
.page-hero-image {
    width: 100%;
    max-width: var(--max-width);
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    display: block;
}

@media (min-width: 768px) {
    .page-hero-image {
        height: 350px;
    }
}

/* ========================================
   CARD GRID (home overview)
   ======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--bg-card-hover);
    border-color: rgba(247, 147, 26, 0.5);
    box-shadow: 0 15px 40px rgba(247, 147, 26, 0.15), 0 5px 15px rgba(0,0,0,0.5);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-link {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

/* ========================================
   HOME: STATS GRID
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 147, 26, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-box-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-box-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-box-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   HOME: COMPANY MARQUEE
   ======================================== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    /* Create a fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
    gap: 4rem;
    align-items: center;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.company-logo:hover {
    color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); } /* -50% of the total width minus half the gap to loop perfectly */
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-header-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent-glow);
    border: 1px solid rgba(247, 147, 26, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-header-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */
.content-block {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.content-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.content-block p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 750px;
}

.content-block p strong {
    color: var(--text-primary);
}

/* Highlight Box */
.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-box.accent {
    border-left-color: var(--accent);
    background: var(--accent-glow);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    flex-shrink: 0;
}

.highlight-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-text strong {
    color: var(--text-primary);
}

/* Example Box */
.example-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-box h4 {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.example-box p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Fact List */
.fact-list {
    list-style: none;
    margin: 1rem 0;
}

.fact-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.fact-list li strong {
    color: var(--text-primary);
}

/* ========================================
   STEP LIST (Blockchain steps)
   ======================================== */
.step-list {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent);
    font-size: 1rem;
}

.step-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.step-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   FACTS GRID
   ======================================== */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.fact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.fact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.fact-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   ADVANTAGES GRID
   ======================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
}

.advantage-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.advantage-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(247, 147, 26, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    line-height: 1;
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.advantage-card p strong {
    color: var(--accent-light);
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
    max-width: var(--max-width);
    margin: 0 auto;
}

.comparison-table h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--bg-card);
}

th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

td {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

tr:last-child td { border-bottom: none; }

tr:hover { background: rgba(255, 255, 255, 0.02); }

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

td.good {
    color: var(--green);
    background: var(--green-bg);
}

td.bad {
    color: var(--red);
    background: var(--red-bg);
}

/* ========================================
   MYTHS (Accordion)
   ======================================== */
.myths-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.myth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.myth-card:hover {
    border-color: var(--border-hover);
}

.myth-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.myth-label {
    flex-shrink: 0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--red-bg);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.myth-label.truth {
    background: var(--green-bg);
    color: var(--green);
    border-color: rgba(34, 197, 94, 0.2);
}

.myth-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
}

.myth-toggle {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 300;
}

.myth-card.open .myth-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.myth-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.myth-card.open .myth-body {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.myth-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 0.75rem;
}

.myth-body p strong {
    color: var(--text-primary);
}

/* ========================================
   TIMELINE (Einstieg)
   ======================================== */
.steps-timeline {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: calc(1.5rem + 19px);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-step {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent);
    font-size: 1rem;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-content p strong {
    color: var(--text-primary);
}

/* Resource List */
.resource-list {
    list-style: none;
    margin: 0.5rem 0;
}

.resource-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.resource-list li strong {
    color: var(--accent);
}

/* Exchange Grid */
.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.exchange-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}

.exchange-card:hover {
    border-color: var(--border-hover);
}

.exchange-card h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.exchange-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Wallet Types */
.wallet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.wallet-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.wallet-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.wallet-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.wallet-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.wallet-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.wallet-card p strong {
    color: var(--text-primary);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ========================================
   PAGE NAVIGATION
   ======================================== */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 3rem auto 4rem;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid var(--border);
}

/* ========================================
   FOOTER
   ======================================== */
#footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 0 0;
    margin-top: 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

#footer h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

#footer ul {
    list-style: none;
}

#footer ul li {
    margin-bottom: 0.5rem;
}

#footer ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

#footer ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-legal-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer-legal-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent);
}

.footer-legal-links .separator {
    color: var(--border);
    font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-visual {
        order: -1;
    }

    .btc-ring {
        width: 180px;
        height: 180px;
    }

    .btc-symbol {
        font-size: 4rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline::before {
        left: calc(1.5rem + 19px);
    }

    .page-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .page-nav .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .exchange-grid {
        grid-template-columns: 1fr;
    }

    .wallet-types {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
    background: rgba(247, 147, 26, 0.3);
    color: var(--text-primary);
}

/* ========================================
   WALL OF FAME - 8-BIT RETRO STYLE
   ======================================== */
@font-face {
    font-family: 'Press Start 2P';
    src: url('fonts/PressStart2P-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sedgwick Ave Display';
    src: url('fonts/SedgwickAveDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
.wof-scene {
    position: relative;
    padding: 4rem 1.5rem 2rem;
    overflow: hidden;
}

/* Stone Wall Background */
.wof-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(40, 35, 30, 0.6) 98px,
            rgba(40, 35, 30, 0.6) 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 48px,
            rgba(40, 35, 30, 0.5) 48px,
            rgba(40, 35, 30, 0.5) 52px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 48px,
            rgba(40, 35, 30, 0.4) 48px,
            rgba(40, 35, 30, 0.4) 52px,
            transparent 52px,
            transparent 100px
        ),
        linear-gradient(180deg, #1a1510 0%, #1e1912 50%, #15120e 100%);
    image-rendering: pixelated;
    z-index: 0;
}

/* Graffiti Text */
.wof-graffiti {
    position: absolute;
    top: 6rem;
    right: 3rem;
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: clamp(3rem, 7vw, 6rem);
    color: rgba(247, 147, 26, 0.08);
    transform: rotate(-8deg);
    z-index: 1;
    line-height: 1;
    text-shadow:
        3px 3px 0 rgba(247, 147, 26, 0.05),
        -2px -2px 0 rgba(255, 80, 80, 0.04);
    user-select: none;
    pointer-events: none;
}

/* Second graffiti layer for depth */
.wof-scene::after {
    content: 'SLAY YOUR HEROES';
    position: absolute;
    top: 6.2rem;
    right: 2.8rem;
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: clamp(3rem, 7vw, 6rem);
    color: transparent;
    transform: rotate(-8deg);
    z-index: 1;
    line-height: 1;
    -webkit-text-stroke: 2px rgba(247, 147, 26, 0.12);
    user-select: none;
    pointer-events: none;
}

/* Header */
.wof-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.wof-title-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(247, 147, 26, 0.1);
    border: 2px solid rgba(247, 147, 26, 0.3);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-radius: 0;
    box-shadow:
        4px 4px 0 rgba(247, 147, 26, 0.2),
        -2px -2px 0 rgba(247, 147, 26, 0.05);
}

.wof-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.4;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.wof-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Wall Grid */
.wof-wall {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

/* Picture Frame - Ornate 8-bit style */
.wof-frame {
    position: relative;
    transition: transform 0.4s ease;
}

.wof-frame:hover {
    transform: translateY(-4px) rotate(-0.5deg);
}

/* Nail/hook at top */
.wof-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #8a7a6a;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 2px #5a4a3a;
}

/* Wire from nail */
.wof-frame::after {
    content: '';
    position: absolute;
    top: -4px;
    left: calc(50% - 20px);
    width: 40px;
    height: 12px;
    border-bottom: 1px solid rgba(138, 122, 106, 0.4);
    border-radius: 0 0 50% 50%;
    z-index: 2;
}

.wof-frame-inner {
    background: linear-gradient(145deg, #1c1810 0%, #141210 100%);
    padding: 1.75rem;
    text-align: center;
    position: relative;
    /* Ornate pixel frame border */
    border: 4px solid #8a6e3e;
    box-shadow:
        inset 0 0 0 2px #6b5630,
        inset 0 0 0 4px rgba(138, 110, 62, 0.3),
        0 0 0 2px #4a3a20,
        4px 6px 12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(247, 147, 26, 0.25);
}

/* Corner decorations (pixel-art style) */
.wof-frame-inner::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(200, 170, 100, 0.15);
    pointer-events: none;
}

.wof-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: contrast(1.2);
    image-rendering: pixelated;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}

.wof-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

.wof-alias {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.wof-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.wof-link {
    display: inline-block;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    color: var(--accent);
    padding: 0.6rem 0.8rem;
    border: 2px solid rgba(247, 147, 26, 0.5);
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 3px 3px 0 rgba(247, 147, 26, 0.2);
    background: rgba(20, 15, 10, 0.8);
}

.wof-link:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 0 rgba(247, 147, 26, 0);
    transform: translate(3px, 3px);
}

/* Resources Section */
.wof-resources {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-top: 2px solid rgba(138, 110, 62, 0.2);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.wof-resources h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.wof-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.wof-resource-card {
    background: rgba(20, 18, 14, 0.8);
    border: 2px solid rgba(138, 110, 62, 0.2);
    padding: 1.25rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.wof-resource-card:hover {
    border-color: rgba(247, 147, 26, 0.4);
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.wof-resource-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.wof-resource-card h4 {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.wof-resource-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Wall of Fame Responsive */
@media (max-width: 768px) {
    .wof-wall {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wof-graffiti,
    .wof-scene::after {
        font-size: 1.5rem;
        top: 4rem;
        right: 1rem;
    }

    .wof-resources-grid {
        grid-template-columns: 1fr;
    }
}
