/* Premium Guide Styling */
body.guide-page {
    background: linear-gradient(135deg, #f0f4ff, #e6e9ff);
}
.guide-wrapper {
    max-width: 860px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.guide-hero {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    text-align: center;
    padding: 2.5rem 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.guide-hero h1 {font-size: 2.2rem; margin: 0; color: #0f172a;}
.guide-hero .tagline {font-size: 1.1rem; color: #475569; margin-top: 0.5rem;}
.guide-card {
    background: rgba(255,255,255,0.9);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s;
    border: 1px solid rgba(255,255,255,0.6);
}
.guide-card:hover {transform: translateY(-3px);}
.guide-card h2 {color: #2563eb; margin: 0 0 0.75rem; font-size: 1.25rem;}
.guide-card p, .guide-card li {color: #334155; line-height: 1.7;}
.guide-card .note {font-style: italic; color: #64748b; font-size: 0.9rem;}
.guide-card ol, .guide-card ul {padding-left: 1.25rem; margin: 0.5rem 0;}
.guide-card li {margin-bottom: 0.4rem;}
.guide-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin: 0.5rem 0 1rem;
}
.guide-lang-label {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 0.5rem;
}
@media (max-width: 600px) {
    .guide-hero h1 {font-size: 1.6rem;}
    .guide-card {padding: 1.1rem 1.25rem; margin-bottom: 1rem;}
    .guide-wrapper {margin: 1rem auto;}
}