/* ============================================
   VARIABLES & THEME
   ============================================ */
:root {
    --primary: #d4af37;
    --primary-dark: #b8960e;
    --primary-glow: rgba(212, 175, 55, 0.25);
    --background: #080812;
    --bg-2: #0d0d1f;
    --card-bg: #12122a;
    --card-hover: #181836;
    --foreground: #e8e8f4;
    --foreground-muted: #9090b8;
    --border: #1e1e3a;
    --border-bright: #2e2e5a;
    --accent: #d4af37;
    --accent-foreground: #0d0d1f;
    --secondary: #7c3aed;
    --danger-extreme: #ef4444;
    --danger-moderate: #f59e0b;
    --danger-safe: #22c55e;

    --font-display: 'Cinzel', serif;
    --font-body: 'Crimson Pro', serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 0.5rem;
    --radius-lg: 1rem;
    --transition: 200ms ease;
    --transition-slow: 400ms ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 0.75rem; }
p:last-child { margin-bottom: 0; }

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

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ============================================
   HEADER
   ============================================ */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(8, 8, 18, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-bright);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.logo-icon { font-size: 1.2em; }

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* GUIDE BUTTON */
.guide-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--accent-foreground);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 12px var(--primary-glow);
    white-space: nowrap;
}
.guide-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.guide-btn-label { display: none; }
@media (min-width: 500px) { .guide-btn-label { display: inline; } }

/* LANGUAGE SWITCHER */
.language-switcher { display: flex; gap: 0.3rem; }
.lang-btn {
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--foreground-muted);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-btn.active { background: var(--primary); color: var(--accent-foreground); border-color: var(--primary); }

/* ============================================
   GUIDE OVERLAY (Modal)
   ============================================ */
.guide-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(8, 8, 18, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
    overflow-y: auto;
    padding: 1.5rem 1rem;
}
.guide-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.guide-modal {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.guide-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(90deg, rgba(212,175,55,0.12) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-bright);
}
.guide-modal-title { font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--primary); }
.guide-close-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-bright);
    background: transparent;
    color: var(--foreground-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.guide-close-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }

/* Guide Tabs */
.guide-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    gap: 0;
}
.guide-tab {
    flex-shrink: 0;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--foreground-muted);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.guide-tab:hover { color: var(--primary); }
.guide-tab.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(212,175,55,0.05); }

/* Guide Content */
.guide-content { padding: 1.5rem; }
.guide-panel { display: none; }
.guide-panel.active { display: block; animation: fadeIn 0.3s ease; }

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

.guide-panel-intro {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(124,58,237,0.05));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.guide-panel-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.guide-panel-intro h3 { color: var(--primary); margin-bottom: 0.5rem; }
.guide-panel-intro p { color: var(--foreground-muted); margin: 0; }

/* Guide Steps */
.guide-steps { display: flex; flex-direction: column; gap: 1rem; }
.guide-step {
    display: flex;
    gap: 1rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color var(--transition);
}
.guide-step:hover { border-color: var(--primary-dark); }
.guide-step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--primary);
    color: var(--accent-foreground);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.guide-step-content { flex: 1; }
.guide-step-title { font-family: var(--font-display); font-size: 0.95rem; color: var(--primary); margin-bottom: 0.35rem; }
.guide-step-desc { font-size: 0.92rem; color: var(--foreground-muted); margin: 0; }
.guide-step-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 600;
    margin-top: 0.5rem;
}
.badge-tier { background: rgba(212,175,55,0.15); color: var(--primary); border: 1px solid rgba(212,175,55,0.3); }
.badge-tip { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.badge-warn { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

/* Professions Grid */
.professions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.profession-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}
.profession-card:hover {
    border-color: var(--primary);
    background: var(--card-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--primary-glow);
}
.profession-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.profession-name { font-family: var(--font-display); font-size: 0.95rem; color: var(--primary); margin-bottom: 0.4rem; }
.profession-desc { font-size: 0.82rem; color: var(--foreground-muted); }

/* ============================================
   FULL PAGE OVERLAY
   ============================================ */
.fullpage-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: var(--background);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.fullpage-overlay.open { transform: translateX(0); }

.fullpage-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(8,8,18,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-bright);
}
.fullpage-header h2 { color: var(--primary); font-size: clamp(1.1rem, 3vw, 1.6rem); }

.fullpage-back-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--foreground-muted);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.fullpage-back-btn:hover { border-color: var(--primary); color: var(--primary); }

.fullpage-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    inset: 0;
    background: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663244214689/CP2xbP6jZ7YquxKLmra3zY/biome-steppe-Hzd9bGzAkigiRx6SatXPpd.webp') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,18,0.88) 0%, rgba(8,8,18,0.7) 50%, rgba(124,58,237,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 720px;
}
.hero-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--foreground-muted);
    margin-bottom: 1.5rem;
}
.hero-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent-foreground);
    box-shadow: 0 4px 16px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--foreground);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================
   PRIME TIME TRACKER
   ============================================ */
.prime-time-section {
    background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, rgba(124,58,237,0.07) 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.prime-time-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 620px;
    margin: 0 auto;
}
.prime-time-header {
    background: linear-gradient(90deg, rgba(212,175,55,0.2), rgba(124,58,237,0.15));
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.prime-time-header h3 { font-size: 1.1rem; color: var(--primary); margin: 0; }
.prime-time-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 500px) { .prime-time-content { flex-direction: row; align-items: center; } }
.time-display { flex: 1; }
.time-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.time-item { flex: 1; }
.time-label { font-size: 0.75rem; color: var(--foreground-muted); font-family: var(--font-display); letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.current-time { font-family: var(--font-mono); font-size: 1.4rem; color: var(--foreground); }
.time-divider { color: var(--border-bright); font-size: 1.5rem; }
.danger-level {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(34,197,94,0.15);
    color: var(--danger-safe);
    border: 1px solid rgba(34,197,94,0.3);
}
.danger-level.moderate { background: rgba(245,158,11,0.15); color: var(--danger-moderate); border-color: rgba(245,158,11,0.3); }
.danger-level.extreme { background: rgba(239,68,68,0.15); color: var(--danger-extreme); border-color: rgba(239,68,68,0.3); animation: pulse-danger 1.5s ease infinite; }
@keyframes pulse-danger { 0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,0.3)} 50%{box-shadow:0 0 0 6px rgba(239,68,68,0)} }
.time-info { font-size: 0.85rem; color: var(--foreground-muted); }
.time-info p { margin-bottom: 0.3rem; }
.time-info strong { color: var(--foreground); }

/* ============================================
   SECTION NAV
   ============================================ */
.section-nav {
    position: sticky;
    top: 56px;
    z-index: 100;
    background: rgba(8,8,18,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}
.nav-tabs::-webkit-scrollbar { display: none; }
.nav-tab {
    flex-shrink: 0;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--foreground-muted);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-tab:hover { color: var(--primary); }
.nav-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content { padding: 2rem 0 4rem; }
.section-block { margin-bottom: 4rem; scroll-margin-top: 120px; }
.section-header { margin-bottom: 1.75rem; }
.section-header h2 { color: var(--foreground); margin-bottom: 0.5rem; }
.section-header p { color: var(--foreground-muted); font-size: 1rem; }

/* ============================================
   BUILDS
   ============================================ */
.builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.build-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}
.build-card:hover { border-color: var(--primary-dark); background: var(--card-hover); transform: translateY(-3px); }
.build-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary); margin-bottom: 0.3rem; }
.build-type { font-size: 0.78rem; font-family: var(--font-mono); color: var(--foreground-muted); margin-bottom: 1rem; }
.build-item { font-size: 0.9rem; padding: 0.35rem 0; border-bottom: 1px solid var(--border); color: var(--foreground); }
.build-item:last-child { border-bottom: none; }

/* ============================================
   BIOMES
   ============================================ */
.biomes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.biome-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border-top: 3px solid;
}
.biome-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.biome-image { position: relative; height: 140px; overflow: hidden; }
.biome-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.biome-card:hover .biome-image img { transform: scale(1.05); }
.biome-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.biome-name { font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.biome-city { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.biome-content { padding: 1.25rem; }
.biome-description { font-size: 0.88rem; color: var(--foreground-muted); margin-bottom: 1rem; }
.resource-group { margin-bottom: 0.6rem; }
.resource-label { font-size: 0.72rem; font-family: var(--font-mono); color: var(--foreground-muted); letter-spacing: 0.08em; margin-bottom: 0.3rem; }

/* ============================================
   BADGE SYSTEM
   ============================================ */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 500;
    margin: 0.15rem 0.15rem 0.15rem 0;
}
.badge-primary { background: rgba(212,175,55,0.15); color: var(--primary); border: 1px solid rgba(212,175,55,0.35); }
.badge-outline { background: rgba(255,255,255,0.05); color: var(--foreground-muted); border: 1px solid var(--border-bright); }
.badge-safe { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.badge-moderate { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.badge-dangerous { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

/* ============================================
   TIERS
   ============================================ */
.tiers-container { display: flex; flex-direction: column; gap: 1rem; }
.tier-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.tier-card:hover { border-color: var(--border-bright); }
.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    flex-wrap: wrap;
}
.tier-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--primary); }
.tier-location { font-size: 0.85rem; color: var(--foreground-muted); margin-top: 0.2rem; }
.tier-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: flex-start; }
.tier-body { padding: 1.25rem 1.5rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .tier-body { grid-template-columns: 1fr 1fr; } }
.tier-section-title { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--foreground-muted); text-transform: uppercase; margin-bottom: 0.6rem; }
.resources-badges { display: flex; flex-wrap: wrap; gap: 0.2rem; }
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.tips-list li { font-size: 0.88rem; color: var(--foreground-muted); padding-left: 1rem; position: relative; }
.tips-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-size: 0.7rem; top: 0.1em; }

/* ============================================
   GATHERING PROGRESSION
   ============================================ */
.gathering-profession-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.gather-prof-btn {
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border-bright);
    background: transparent;
    color: var(--foreground-muted);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
}
.gather-prof-btn:hover { border-color: var(--primary); color: var(--primary); }
.gather-prof-btn.active { background: var(--primary); color: var(--accent-foreground); border-color: var(--primary); }

.gathering-progression { display: none; }
.gathering-progression.active { display: block; animation: fadeIn 0.3s ease; }

.gathering-tier-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    position: relative;
}
.gathering-tier-row::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 48px;
    bottom: -1px;
    width: 2px;
    background: var(--border);
}
.gathering-tier-row:last-child::before { display: none; }
.gathering-tier-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}
.tier-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--border-bright);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--foreground-muted);
    transition: all var(--transition);
}
.gathering-tier-row.current .tier-circle { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }

.gathering-tier-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    margin-left: 0.75rem;
    transition: border-color var(--transition);
}
.gathering-tier-content:hover { border-color: var(--border-bright); }
.gathering-tier-title { font-family: var(--font-display); font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.gathering-equipment { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.equip-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--foreground-muted);
}
.equip-slot { font-size: 0.65rem; color: var(--foreground-muted); font-family: var(--font-mono); }
.gathering-tips-text { font-size: 0.87rem; color: var(--foreground-muted); }

/* ============================================
   T8 MAPS
   ============================================ */
.t8-maps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.t8-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all var(--transition);
}
.t8-card:hover { border-color: var(--primary-dark); background: var(--card-hover); }
.t8-card-title { font-family: var(--font-display); font-size: 0.95rem; color: var(--primary); margin-bottom: 0.875rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.t8-maps-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.t8-maps-list li { font-size: 0.85rem; color: var(--foreground-muted); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.t8-maps-list li:last-child { border-bottom: none; }
.t8-maps-list li::before { content: '📍 '; font-size: 0.7rem; }

/* ============================================
   EVENTS
   ============================================ */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.event-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color var(--transition);
}
.event-card:hover { border-color: var(--border-bright); }
.event-time { font-family: var(--font-mono); font-size: 0.85rem; color: var(--primary); margin-bottom: 0.5rem; }
.event-description { font-size: 0.88rem; color: var(--foreground-muted); margin-bottom: 0.5rem; }
.event-note { font-size: 0.82rem; color: var(--foreground-muted); background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius); padding: 0.5rem 0.75rem; margin-top: 0.5rem; }

/* ============================================
   PRO TIPS
   ============================================ */
.pro-tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}
.card:hover { border-color: var(--border-bright); background: var(--card-hover); }
.card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.card-title { font-family: var(--font-display); font-size: 1rem; color: var(--primary); margin-bottom: 1rem; }
.card-content p { font-size: 0.88rem; color: var(--foreground-muted); padding: 0.3rem 0; border-bottom: 1px solid var(--border); margin: 0; }
.card-content p:last-child { border-bottom: none; }
.card-note { font-size: 0.8rem; color: var(--foreground-muted); margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ============================================
   GUILD PAGE CONTENT
   ============================================ */
.guild-section { margin-bottom: 2.5rem; }
.guild-section h3 { color: var(--primary); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.guild-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.guild-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color var(--transition);
}
.guild-card:hover { border-color: var(--primary-dark); }
.guild-card-title { font-family: var(--font-display); font-size: 0.9rem; color: var(--primary); margin-bottom: 0.5rem; }
.guild-card p { font-size: 0.87rem; color: var(--foreground-muted); margin: 0; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 0.6rem 0.5rem; font-size: 0.88rem; }
.info-table td:first-child { color: var(--foreground-muted); width: 40%; }
.info-table td:last-child { color: var(--foreground); font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--foreground-muted);
}
.footer p { margin-bottom: 0.3rem; }
.footer-author { color: var(--primary); }

/* ============================================
   PROFESSION DETAIL CONTENT
   ============================================ */
.prof-detail-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(124,58,237,0.08));
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}
.prof-detail-icon { font-size: 3rem; }
.prof-detail-meta h3 { color: var(--primary); margin-bottom: 0.35rem; }
.prof-detail-meta p { color: var(--foreground-muted); font-size: 0.92rem; margin: 0; }

.prof-tier-list { display: flex; flex-direction: column; gap: 1.25rem; }
.prof-tier-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary-dark);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.prof-tier-item h4 { font-family: var(--font-display); color: var(--primary); margin-bottom: 0.75rem; font-size: 0.95rem; }
.prof-equip-list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.75rem; }
.prof-equip-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.87rem;
}
.prof-equip-slot { min-width: 90px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--foreground-muted); }
.prof-equip-name { color: var(--foreground); }
.prof-tip { font-size: 0.85rem; color: var(--foreground-muted); background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius); padding: 0.625rem 0.875rem; margin-top: 0.5rem; }
