/* Guide Styles - Modern Gaming Theme */

/* Guide Container */
.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

/* Guide Header */
.guide-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.guide-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guide-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.guide-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.meta-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 179, 0.1);
    border-radius: 8px;
}

/* Guide Sections */
.guide-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.guide-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.guide-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.guide-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 1rem 0 0.5rem;
}

.guide-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Highlight Sections */
.highlight-section {
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 217, 179, 0.2);
}

/* Info Boxes */
.info-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.info-box.success {
    background: rgba(0, 217, 179, 0.1);
    border-color: var(--primary);
}

.info-box.success h3 {
    color: var(--primary);
}

.info-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.info-box.warning h3,
.info-box.warning strong {
    color: #ffc107;
}

.info-box.danger {
    background: rgba(255, 87, 87, 0.1);
    border-color: #ff5757;
}

.info-box.danger strong {
    color: #ff5757;
}

.info-box {
    background: rgba(30, 40, 55, 0.6);
    border-color: var(--primary);
}

.info-box p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.info-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(30, 40, 55, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 217, 179, 0.2);
}

.feature-card h3 {
    color: var(--primary);
    margin-top: 0;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0.8rem 0;
}

.feature-card ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.feature-card li {
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Addon Grid */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.addon-card {
    background: rgba(30, 40, 55, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.addon-card h3 {
    color: var(--primary);
    margin-top: 0;
}

.addon-card ul {
    padding-left: 1.2rem;
}

.addon-card li {
    margin: 0.5rem 0;
}

/* FAQ Items */
.faq-item {
    background: rgba(30, 40, 55, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

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

.faq-item p {
    line-height: 1.6;
}

/* Week Blocks */
.week-block {
    background: rgba(30, 40, 55, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.week-block.highlight {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 217, 179, 0.2);
}

.week-block.major {
    border: 2px solid #ffd700;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
}

.week-header {
    background: linear-gradient(135deg, rgba(0, 217, 179, 0.2), rgba(30, 40, 55, 0.8));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.week-header.early-access {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(30, 40, 55, 0.8));
}

.week-header.heroic-week {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(30, 40, 55, 0.8));
}

.week-header.mythic-week {
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.2), rgba(30, 40, 55, 0.8));
}

.week-header.final-raid {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(30, 40, 55, 0.8));
}

.week-header.cruise {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.2), rgba(30, 40, 55, 0.8));
}

.week-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.week-tag {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.week-tag.season-start {
    background: #ffc107;
}

.week-tag.rto {
    background: #ff5757;
}

.week-tag.upgrade {
    background: #ffd700;
}

/* Checklist */
.checklist-week {
    padding: 1.5rem;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(20, 30, 45, 0.4);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.task-item:hover {
    background: rgba(0, 217, 179, 0.1);
    border-left-color: var(--primary);
}

.task-item input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.task-item label {
    cursor: pointer;
    line-height: 1.6;
    flex: 1;
    color: var(--text-secondary);
}

.task-item.important {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.task-item.important label {
    font-weight: 600;
}

.task-item.track {
    background: rgba(0, 217, 179, 0.15);
    border-left-color: var(--primary);
}

.task-item.track label {
    font-weight: 600;
    color: var(--primary);
}

.task-item.note {
    background: rgba(108, 92, 231, 0.1);
    border-left-color: #6c5ce7;
    font-size: 0.95rem;
}

.task-item input[type="checkbox"]:checked + label {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-container {
        padding: 1rem;
    }

    .guide-header {
        padding: 1.5rem;
    }

    .guide-header h1 {
        font-size: 2rem;
    }

    .guide-section {
        padding: 1.5rem;
    }

    .guide-section h2 {
        font-size: 1.5rem;
    }

    .feature-grid,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .week-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}
