/* Guide Pages Styling */

.guide-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.7;
}

.guide-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.guide-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.guide-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.guide-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.guide-section h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.guide-section h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

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

.guide-section ul, .guide-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.guide-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.guide-section li strong {
    color: var(--text-primary);
}

/* Special Content Boxes */
.highlight-box, .tip-box, .technique-box, .measurement-box, 
.depth-analysis, .width-metrics, .movement-analysis, 
.immersion-factors, .correlation-analysis, .hrtf-analysis,
.scoring-formula, .platform-box, .music-concepts, 
.workflow-stage, .recording-methods, .vr-requirements,
.sync-considerations, .gaming-features, .engine-components,
.testing-methods, .immersive-overview, .tech-box,
.analysis-overview {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.highlight-box {
    border-left: 4px solid var(--success);
    background: rgba(40, 167, 69, 0.05);
}

.tip-box {
    border-left: 4px solid var(--info-color);
    background: rgba(23, 162, 184, 0.05);
}

.technique-box, .measurement-box {
    border-left: 4px solid var(--warning-color);
    background: rgba(255, 193, 7, 0.05);
}

.challenge-box, .mistake-box {
    border-left: 4px solid var(--danger);
    background: rgba(220, 53, 69, 0.05);
    margin: 1.5rem 0;
}

.challenge-box h3, .mistake-box h3 {
    color: var(--danger);
    margin-top: 0;
}

.formula-box {
    background: var(--dark-bg);
    color: var(--light-text);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.formula-box p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Movement Patterns and Depth Techniques */
.movement-patterns, .depth-techniques {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05));
}

/* Score Interpretation */
.score-interpretation ul {
    list-style: none;
    padding-left: 0;
}

.score-interpretation li {
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 4px;
    background: rgba(108, 117, 125, 0.1);
}

/* Checklist Styling */
.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--text-secondary));
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-hover);
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    font-size: 1.5rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--card-bg);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--primary-color);
}

/* Issue Solution Boxes */
.issue-solution {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning-color);
}

/* Design Principles */
.design-principles {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success);
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-content {
        padding: 1rem 0.5rem;
    }
    
    .guide-header h1 {
        font-size: 2rem;
    }
    
    .guide-subtitle {
        font-size: 1.1rem;
    }
    
    .guide-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guide-section h2 {
        font-size: 1.5rem;
    }
    
    .guide-section h3 {
        font-size: 1.2rem;
    }
    
    .highlight-box, .tip-box, .technique-box, .measurement-box,
    .depth-analysis, .width-metrics, .movement-analysis,
    .immersion-factors, .correlation-analysis, .hrtf-analysis,
    .scoring-formula, .platform-box, .music-concepts,
    .workflow-stage, .recording-methods, .vr-requirements,
    .sync-considerations, .gaming-features, .engine-components,
    .testing-methods, .immersive-overview, .tech-box,
    .analysis-overview {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .cta-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .guide-content {
        max-width: none;
        padding: 0;
    }
    
    .cta-box {
        display: none;
    }
    
    .guide-header {
        border-bottom: 2px solid var(--text-color);
    }
    
    .guide-section h2 {
        border-bottom: 1px solid var(--text-color);
    }
    
    .highlight-box, .tip-box, .technique-box, .measurement-box,
    .depth-analysis, .width-metrics, .movement-analysis,
    .immersion-factors, .correlation-analysis, .hrtf-analysis,
    .scoring-formula, .platform-box, .music-concepts,
    .workflow-stage, .recording-methods, .vr-requirements,
    .sync-considerations, .gaming-features, .engine-components,
    .testing-methods, .immersive-overview, .tech-box,
    .analysis-overview {
        border: 1px solid var(--text-color);
        background: none !important;
        box-shadow: none;
    }
}

 