/* Guide Content Styles */
.guide-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.guide-content header {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-light);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.guide-content h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.guide-section {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.guide-section h2 {
    color: var(--purple-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.guide-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.guide-section ul, 
.guide-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-section li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.troubleshoot-item {
    margin-bottom: 2rem;
}

.guide-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

/* Links within guide content */
.guide-section a {
    color: var(--purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-section a:hover {
    color: var(--text);
}

/* Notice styles for all guides */
.stand-notice,
.fsl-notice {
    background: rgba(24, 16, 32, 0.85);
    color: #e0d7ff;
    border: 1.5px solid #a259ff;
    border-radius: 12px;
    padding: 18px 28px;
    margin: 16px auto 28px auto;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px 0 rgba(80, 40, 120, 0.13);
    backdrop-filter: blur(2px);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    max-width: 900px;
    justify-content: center;
}

.stand-notice strong,
.fsl-notice strong {
    color: #a259ff;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 8px;
    text-shadow: 0 1px 4px rgba(80,40,120,0.18);
}

/* Remove all card-related styles from guides.css - they should only be in main.css */