/* ============================================
   GoldRush - Landing Page Styles
   WoW-Inspired Premium Design
   ============================================ */

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

:root {
    /* WoW Gold Palette */
    --gold: #ffd100;
    --gold-dark: #c9a227;
    --gold-darker: #8b6914;
    --gold-light: #ffe066;
    --gold-glow: rgba(255, 209, 0, 0.4);

    /* Metal Colors */
    --silver: #c0c0c0;
    --copper: #cd7f32;
    --bronze: #b87333;

    /* WoW Quality Colors */
    --quality-poor: #9d9d9d;
    --quality-common: #ffffff;
    --quality-uncommon: #1eff00;
    --quality-rare: #0070dd;
    --quality-epic: #a335ee;
    --quality-legendary: #ff8000;

    /* Dark Theme - Rich Leather/Parchment */
    --bg-darkest: #0d0b09;
    --bg-dark: #1a1410;
    --bg-medium: #2d241c;
    --bg-light: #3d322a;
    --bg-lighter: #4a3f35;
    --bg-card: #252019;

    /* Text */
    --text-primary: #f0e6d3;
    --text-secondary: #a89b8c;
    --text-muted: #6d5f52;

    /* Accents */
    --accent-success: #1eff00;
    --accent-danger: #ff4444;
    --accent-info: #0070dd;

    /* Borders */
    --border-gold: #c9a227;
    --border-subtle: rgba(201, 162, 39, 0.2);
    --border-dark: #1a1410;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 30px rgba(255, 209, 0, 0.15);
    --shadow-gold-intense: 0 0 60px rgba(255, 209, 0, 0.25);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darkest);
}

body {
    font-family: var(--font-body);
    background: var(--bg-darkest);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: rgba(201, 162, 39, 0.4);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-lighter);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Gold Text Utility
   ============================================ */
.gold-text {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 209, 0, 0.3);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 11, 9, 0.98) 0%, rgba(13, 11, 9, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 11, 9, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gold);
}

.nav-logo .logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 209, 0, 0.5));
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-darker) 100%);
    color: var(--bg-darkest);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(45, 36, 28, 0.8) 0%, var(--bg-darkest) 70%);
    z-index: -2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 209, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 209, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 209, 0, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 209, 0, 0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 209, 0, 0.4), transparent);
    background-size: 200px 200px;
    animation: particles 20s linear infinite;
    z-index: -1;
    opacity: 0.5;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-darkest);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-gold-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold-dark);
}

.btn-outline:hover {
    background: var(--gold-dark);
    color: var(--bg-darkest);
}

.btn-icon {
    font-size: 1.1em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 209, 0, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-right: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(10px); opacity: 0.5; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding) 0;
}

.alt-bg {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-medium) 50%, var(--bg-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
}

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

.feature-card.featured {
    border-color: var(--gold-dark);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, var(--bg-card) 100%);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-dark);
    color: var(--bg-darkest);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-medium) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

/* ============================================
   How It Works Preview
   ============================================ */
.how-preview {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.step-arrow {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold-dark);
    z-index: 1;
}

.step:last-child .step-arrow {
    display: none;
}

.steps-cta {
    text-align: center;
}

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    padding: 4rem 0;
    background: var(--bg-darkest);
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 3rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold-dark);
    opacity: 0.5;
    line-height: 1;
}

.quote-card blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 1rem 0;
}

.quote-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    margin: 2rem auto 0;
}

/* ============================================
   Regions Section
   ============================================ */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.region-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.region-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.region-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

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

.realm-count {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gold);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 60%),
        var(--bg-dark);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darkest);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo span:last-child {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

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

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

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

.footer-copyright {
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* ============================================
   Page Header (for sub-pages)
   ============================================ */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background:
        radial-gradient(ellipse at center top, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        var(--bg-darkest);
}

.page-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Content Sections (for sub-pages)
   ============================================ */
.content-section {
    padding: 5rem 0;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-card.highlight {
    border-color: var(--gold-dark);
    position: relative;
}

.content-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: 12px 12px 0 0;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.content-card h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.content-card p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Guide Steps (How It Works page)
   ============================================ */
.guide-steps {
    max-width: 800px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--gold-dark) 0%, transparent 100%);
    margin-top: 1rem;
}

.guide-step:last-child .step-line {
    display: none;
}

.step-details {
    flex: 1;
    padding-bottom: 2rem;
}

.step-details h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.step-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-list-simple {
    list-style: none;
    margin: 1rem 0;
}

.feature-list-simple li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

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

.step-tip,
.step-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.step-tip {
    background: rgba(30, 255, 0, 0.05);
    border: 1px solid rgba(30, 255, 0, 0.2);
}

.step-warning {
    background: rgba(255, 200, 0, 0.05);
    border: 1px solid rgba(255, 200, 0, 0.2);
}

.tip-icon,
.warning-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-tip span,
.step-warning span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Tips Grid (How It Works page)
   ============================================ */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}

.tip-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
}

.tip-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

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

/* ============================================
   FAQ (How It Works page)
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-dark);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.visual-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 209, 0, 0.4);
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v-stat {
    padding: 0.75rem;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 8px;
}

.v-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.v-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
}

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

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

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

/* Tech Showcase */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-info .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.tech-name {
    font-weight: 600;
    color: var(--gold);
}

.tech-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.code-window {
    background: var(--bg-darkest);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.code-header {
    background: var(--bg-medium);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca40; }

.code-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-content {
    padding: 1.5rem;
    font-family: 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow-x: auto;
    margin: 0;
}

.code-content code {
    color: inherit;
}

/* Team Message */
.team-message {
    max-width: 700px;
    margin: 0 auto;
}

.message-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.message-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.message-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.signature-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.signature-team {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   Support Page Styles
   ============================================ */
.support-header {
    background:
        radial-gradient(ellipse at center top, rgba(255, 100, 100, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        var(--bg-darkest);
}

.support-intro {
    max-width: 700px;
    margin: 0 auto;
}

.support-message {
    text-align: center;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ff6b6b;
}

.support-message h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.support-message p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Donation Grid */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.donation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.donation-card.featured {
    border-color: var(--silver);
}

.donation-card.legendary {
    border-color: var(--quality-legendary);
}

.donation-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--silver);
    color: var(--bg-darkest);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.donation-header {
    padding: 2rem 1.5rem;
    text-align: center;
}

.donation-header.copper {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, var(--bg-card) 100%);
}

.donation-header.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, var(--bg-card) 100%);
}

.donation-header.gold {
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.15) 0%, var(--bg-card) 100%);
}

.donation-header.legendary-bg {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.15) 0%, var(--bg-card) 100%);
}

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

.donation-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.donation-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.donation-body {
    padding: 1.5rem;
}

.donation-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.donation-perks {
    list-style: none;
    margin-bottom: 1.5rem;
}

.donation-perks li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
}

.donation-perks li:last-child {
    border-bottom: none;
}

.donation-btn {
    width: 100%;
    justify-content: center;
}

.btn-legendary {
    border-color: var(--quality-legendary);
    color: var(--quality-legendary);
}

.btn-legendary:hover {
    background: var(--quality-legendary);
    color: var(--bg-darkest);
}

/* Custom Donation */
.custom-donation {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.custom-donation h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.custom-donation p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.custom-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.currency-symbol {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
}

.custom-input {
    width: 150px;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
}

.custom-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--gold-dark);
}

.payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon svg {
    width: 32px;
    height: 32px;
}

.payment-icon.paypal {
    background: rgba(0, 48, 135, 0.2);
    color: #0070ba;
}

.payment-icon.crypto {
    background: rgba(247, 147, 26, 0.2);
    color: #f7931a;
}

.payment-icon.kofi {
    background: rgba(255, 94, 91, 0.2);
    color: #ff5e5b;
}

.payment-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

.payment-btn {
    width: 100%;
    justify-content: center;
}

.payment-note {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.5rem;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.payment-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.help-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}

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

.help-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

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

/* Thank You Card */
.thank-you-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    padding: 3rem;
}

.thank-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.thank-you-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thank-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.thank-signature span {
    display: block;
}

.thank-signature span:first-child {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .about-hero,
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-visual {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darkest);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link,
    .nav-btn {
        display: block;
        padding: 1rem 0;
        text-align: center;
    }

    .nav-btn {
        margin-top: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    .guide-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-indicator {
        flex-direction: row;
        gap: 1rem;
    }

    .step-line {
        width: auto;
        height: 2px;
        flex: 1;
        margin-top: 0;
        background: linear-gradient(90deg, var(--gold-dark) 0%, transparent 100%);
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

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