/* ==========================================================================
   AION 2 GUÍAS - DESIGN SYSTEM & STYLESHEET
   Aesthetics: MMORPG Celestial Fantasy, Deep Dark Obsidian, Gold & Aether Cyan
   ========================================================================== */

:root {
    --bg-base: #06090e;
    --bg-surface: #0c121d;
    --bg-surface-elevated: #131d2e;
    --bg-glass: rgba(12, 18, 29, 0.75);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold-glow: rgba(245, 158, 11, 0.35);

    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-cyan: #06b6d4;
    --color-cyan-light: #38bdf8;
    --color-aether: #818cf8;
    --color-red: #ef4444;
    --color-green: #10b981;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 25px rgba(245, 158, 11, 0.2);
    --shadow-glow-cyan: 0 0 25px rgba(6, 182, 212, 0.2);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

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

body.aion-body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ambient glow orbs in background */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}
.orb-1 { width: 500px; height: 500px; background: #06b6d4; top: -100px; left: -100px; }
.orb-2 { width: 600px; height: 600px; background: #f59e0b; top: 300px; right: -200px; }
.orb-3 { width: 450px; height: 450px; background: #818cf8; bottom: 100px; left: 20%; }

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Header & Nav */
.aion-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}
.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.logo-wings {
    font-size: 1.5rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}
.logo-wings .wing-right {
    transform: scaleX(-1);
    margin-left: -5px;
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
}
.brand-highlight {
    color: var(--color-gold);
}
.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    color: var(--color-cyan-light);
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.2rem;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-cyan));
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-search-form {
    position: relative;
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-icon {
    position: absolute;
    left: 0.85rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.header-search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 0.45rem 1rem 0.45rem 2.2rem;
    color: #fff;
    font-size: 0.85rem;
    width: 210px;
    transition: all 0.3s ease;
}
.header-search-input:focus {
    outline: none;
    width: 270px;
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.btn-admin-access {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid var(--border-glass);
    color: var(--color-gold-light);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.btn-admin-access:hover {
    background: linear-gradient(135deg, var(--color-gold), #d97706);
    color: #000;
    border-color: transparent;
    box-shadow: var(--shadow-glow-gold);
}

/* Main & Hero */
.aion-main {
    flex: 1;
    z-index: 1;
}

.hero-section {
    position: relative;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(14, 23, 42, 0.85) 0%, rgba(6, 9, 14, 0.95) 100%), url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1920&q=80') center/cover;
    border-bottom: 1px solid var(--border-glass);
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}
.highlight-gold {
    color: var(--color-gold);
    background: linear-gradient(135deg, #fef08a, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-search-box {
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.search-field {
    display: flex;
    align-items: center;
    background: rgba(18, 26, 43, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.6rem 0.5rem 1.4rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.search-field:focus-within {
    border-color: var(--color-cyan);
    box-shadow: var(--shadow-glow-cyan);
}
.search-field .field-icon {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-right: 0.75rem;
}
.search-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
}
.btn-search-hero {
    background: linear-gradient(135deg, var(--color-gold), #d97706);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-search-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.hero-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.hero-cat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.cat-pill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}
.cat-pill {
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}
.cat-pill:hover, .cat-pill.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}
.cat-pill.active {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    background: rgba(245, 158, 11, 0.1);
}

/* Container & Sections */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-cyan-light);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
}
.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
    margin-left: 2rem;
    margin-bottom: 0.75rem;
}

/* Featured Section */
.section-featured {
    margin-bottom: 4rem;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.8rem;
}
.featured-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.featured-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold-glow);
    box-shadow: var(--shadow-glow-gold);
}
.featured-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-card:hover .featured-image-wrapper img {
    transform: scale(1.05);
}
.card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-surface) 0%, transparent 60%);
}
.card-cat-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.featured-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.difficulty-badge {
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-size: 0.72rem;
    text-transform: uppercase;
}
.diff-principiante { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.diff-intermedio { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.diff-avanzado { background: rgba(239, 68, 68, 0.15); color: #f87171; }

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}
.card-title a:hover {
    color: var(--color-cyan-light);
}
.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--color-gold);
}

/* Guides Grid (Regular) */
.section-all-guides {
    margin-bottom: 4rem;
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.guide-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.guide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.guide-card-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.guide-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.guide-card:hover .guide-card-thumb img {
    transform: scale(1.05);
}
.thumb-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.guide-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-top-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
.guide-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}
.guide-card-title a:hover {
    color: var(--color-cyan-light);
}
.guide-card-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.guide-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-glass);
}
.badge-diff {
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}
.link-read-guide {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-cyan-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.link-read-guide:hover {
    color: #fff;
    gap: 0.55rem;
}

/* Atreia Info Banner */
.atreia-info-banner {
    background: linear-gradient(135deg, rgba(19, 29, 46, 0.85), rgba(6, 9, 14, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-glow-gold);
    position: relative;
    overflow: hidden;
}
.info-banner-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}
.info-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
}
.info-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem;
    color: #fff;
}
.info-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}
.info-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary-aion {
    background: linear-gradient(135deg, var(--color-gold), #d97706);
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.btn-primary-aion:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}
.btn-secondary-aion {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary-aion:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}
.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-cyan-light);
}
.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Guide Detail View */
.guide-hero-banner {
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-glass);
    padding: 4rem 1.5rem 3rem;
}
.guide-hero-container {
    max-width: 1100px;
    margin: 0 auto;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .separator { font-size: 0.65rem; }
.breadcrumb-nav .current { color: var(--text-secondary); max-width: 350px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.guide-header-badge-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.guide-cat-pill, .guide-diff-pill, .guide-featured-pill {
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.guide-featured-pill {
    background: linear-gradient(135deg, var(--color-gold), #d97706);
    color: #000;
}
.guide-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}
.guide-hero-excerpt {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 850px;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.guide-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: rgba(12, 18, 29, 0.75);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    backdrop-filter: blur(8px);
}
.meta-author-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.meta-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.meta-value {
    font-size: 0.9rem;
    color: #fff;
}
.meta-divider {
    width: 1px;
    height: 28px;
    background: var(--border-glass);
}

/* Guide Layout & Content Typography */
.guide-layout-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
}
.guide-article-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-subtle);
}
.guide-body-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e2e8f0;
}
.guide-body-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-glass);
    position: relative;
}
.guide-body-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}
.guide-body-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-cyan-light);
    margin: 1.8rem 0 0.8rem;
}
.guide-body-content p {
    margin-bottom: 1.2rem;
}
.guide-body-content ul, .guide-body-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.guide-body-content li {
    margin-bottom: 0.5rem;
}

/* Content Callout Boxes */
.callout-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    align-items: flex-start;
}
.callout-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--color-gold);
    color: #fef3c7;
}
.callout-box.info {
    background: rgba(6, 182, 212, 0.1);
    border-left: 4px solid var(--color-cyan);
    color: #cffafe;
}
.callout-icon {
    font-size: 1.3rem;
    margin-top: 0.2rem;
}
.callout-box.warning .callout-icon { color: var(--color-gold); }
.callout-box.info .callout-icon { color: var(--color-cyan); }
.callout-body { flex: 1; font-size: 0.95rem; }

/* Content Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.data-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.85rem 1rem;
    text-align: left;
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    border-bottom: 1px solid var(--border-glass);
}
.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
}
.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Tier Container */
.tier-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}
.tier-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
}
.tier-label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.tier-s .tier-label { background: #ef4444; }
.tier-a .tier-label { background: #f59e0b; }
.tier-b .tier-label { background: #3b82f6; }
.tier-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.tier-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.tier-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Share Bar */
.guide-share-bar {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.share-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.share-buttons {
    display: flex;
    gap: 0.6rem;
}
.btn-share {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-glass);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-share:hover { background: rgba(255,255,255,0.15); }

/* Sidebar Widgets */
.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.sidebar-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.widget-nav-list {
    list-style: none;
}
.widget-nav-list li {
    margin-bottom: 0.75rem;
}
.widget-nav-list a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.widget-nav-list a:hover { color: var(--color-cyan-light); }

.category-info-widget {
    text-align: center;
}
.widget-cat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}
.category-info-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.category-info-widget p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}
.btn-widget-link {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}
.btn-widget-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faction-reminder {
    border-color: rgba(245, 158, 11, 0.2);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(6, 9, 14, 0.95));
}
.faction-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}
.faction-header h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}
.faction-reminder p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.btn-faction-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* Related Guides Section */
.related-guides-section {
    background: var(--bg-surface-elevated);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 1.5rem;
}
.related-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
.aion-footer {
    background: #04060a;
    border-top: 1px solid var(--border-glass);
    margin-top: auto;
}
.footer-top {
    padding: 4rem 1.5rem 3rem;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
}
.brand-col .footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
}
.domain-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.badge-domain {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--color-cyan-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.2rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.65rem;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}
.factions-widget {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faction-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-md);
}
.faction-card.elios .faction-icon { color: #facc15; }
.faction-card.asmodians .faction-icon { color: #c084fc; }
.faction-card h5 { font-size: 0.85rem; color: #fff; margin-bottom: 0.1rem; }
.faction-card p { font-size: 0.72rem; color: var(--text-muted); }
.admin-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.btn-footer-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: #fff;
}
.btn-footer-admin:hover {
    background: var(--color-gold);
    color: #000;
}
.footer-bottom {
    background: #020306;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a:hover { color: #fff; }

/* Filter Status Bar */
.filter-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    margin-bottom: 2rem;
}
.status-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-cyan-light);
    font-size: 0.9rem;
}
.btn-clear-filter {
    font-size: 0.82rem;
    color: #fff;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

/* Responsive queries */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .info-banner-content { grid-template-columns: 1fr; }
    .guide-layout-container { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .header-search-input { width: 140px; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; gap: 0.8rem; text-align: center; }
    .atreia-info-banner { padding: 1.5rem; }
    .info-stats { grid-template-columns: 1fr; }
}