/* ---------------------------------------------------------
   Creator Guide — collapsible neon panels
   (matches your sidebar mental model, but with cards)
--------------------------------------------------------- */

.guide-wrapper{
    max-width: 1100px;
    margin: 0 auto;
}

.guide-hero{
    text-align:center;
    margin: 10px 0 18px 0;
}

.guide-title{
    font-size: 2rem;
    color: #00AFFF;
    text-shadow: 0 0 12px #0088cc;
    margin: 0 0 6px 0;
}

.guide-subtitle{
    margin: 0;
    color: #9ecff5;
    opacity: 0.9;
    font-size: 0.95rem;
}

.guide-tree{
    margin-top: 18px;
}

.guide-block{
    margin-bottom: 14px;
}

.guide-label{
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    color: #00AFFF;
    text-shadow: 0 0 8px #0088cc;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0,175,255,0.08);
    border: 1px solid rgba(0,175,255,0.18);
    transition: 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
}

.guide-label:hover{
    background: rgba(0,175,255,0.14);
    border-color: rgba(0,175,255,0.30);
    box-shadow: 0 0 18px rgba(0,175,255,0.12);
}

.guide-label .left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width: 0;
    justify-content: flex-start;
    text-align: left;
}

.guide-label .hint{
    font-size: 0.85rem;
    font-weight: normal;
    opacity: 0.8;
    color: #d5ecff;
    text-shadow: none;
    white-space: nowrap;
}

.guide-content{
    margin-left: 14px;
    margin-top: 10px;
    display: none; /* collapsed by default */
}

.guide-content-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.guide-card{
    background: #05070A;
    border-radius: 12px;
    border: 1px solid #00AFFF33;
    box-shadow: 0 0 18px #00AFFF22;
    padding: 16px 16px;
    transition: 0.2s ease;
}

.guide-card:hover{
    box-shadow: 0 0 25px #00AFFF55;
}

.guide-card h4{
    margin: 0 0 8px 0;
    color: #00AFFF;
    text-shadow: 0 0 8px #0077bb;
}

.guide-card p{
    margin: 0 0 10px 0;
    color: #d5ecff;
    opacity: 0.95;
    line-height: 1.5;
}

.guide-list{
    margin: 8px 0 0 18px;
    color: #d5ecff;
    opacity: 0.95;
}

.guide-actions{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* NOTE:
   We intentionally do NOT define guide-btn / guide-btn-ghost here.
   Buttons should use the canonical theme classes:
   .neon-btn and .neon-btn-ghost
*/

.guide-note{
    font-size: 0.9rem;
    color: #9ecff5;
    opacity: 0.85;
}

.guide-arrow {
    display: inline-block;
    width: 16px;
    text-align: center;
    transition: transform 0.15s ease;
}

.guide-label.open .guide-arrow {
    transform: rotate(90deg);
}

@media (max-width: 720px){
    .guide-content{ margin-left: 0; }
    .guide-label{ padding: 10px 10px; }
    .guide-label .hint{ display:none; }
}