/* Auradin Guide Page Styles */

:root {
    --fire: #f97316;
    --red: #ef4444;
    --green: #4ade80;
    --blue: #3b82f6;
    --purple: #a855f7;
    --gold: #d4af37;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* Guide Hero */
.guide-hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.guide-hero .badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.guide-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #e8e8e8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.verified-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid #4ade80;
    border-radius: 6px;
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.guide-hero .subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.nav-tab {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-tab:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.nav-tab.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Sections */
.section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section p {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Decision Grid */
.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.decision-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.decision-card.no {
    border: 2px solid #ef4444;
}

.decision-card.yes {
    border: 2px solid #4ade80;
}

.decision-card h4 {
    color: #e8e8e8;
    margin-bottom: 10px;
    font-size: 1rem;
}

.decision-card p {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* Stat Progress Bars */
.stat-progress-item {
    margin-bottom: 20px;
}

.stat-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #e8e8e8;
    font-size: 0.95rem;
}

.stat-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    border-radius: 4px;
    width: 100%;
}

.stat-progress-fill.block { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.stat-progress-fill.crit { background: linear-gradient(90deg, #ef4444, #f87171); }
.stat-progress-fill.cdr { background: linear-gradient(90deg, #a855f7, #c084fc); }
.stat-progress-fill.life { background: linear-gradient(90deg, #4ade80, #86efac); }
.stat-progress-fill.str { background: linear-gradient(90deg, #f97316, #fb923c); }
.stat-progress-fill.speed { background: linear-gradient(90deg, #d4af37, #fbbf24); }

/* Tiers */
.tier {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid;
}

.tier-s { border-color: #fbbf24; }
.tier-a { border-color: #a855f7; }
.tier-b { border-color: #3b82f6; }

.tier h4 {
    color: #e8e8e8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.tier ol, .tier ul {
    margin: 0;
    padding-left: 20px;
    color: #c0c0c0;
}

.tier li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Gear Slot Cards */
.gear-slot-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.gear-slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #e8e8e8;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    font-size: 0.9rem;
}

.stat-value-calc {
    color: #4ade80;
    font-weight: 600;
}

.unique-effect {
    margin-top: 15px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: #d4af37;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guide-hero h1 {
        font-size: 1.8rem;
        flex-direction: column;
    }

    .nav-tabs {
        gap: 8px;
    }

    .nav-tab {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .section {
        padding: 20px;
    }

    .decision-grid {
        grid-template-columns: 1fr;
    }
}
