/* Guide page: accordion layout and content styles */

.guide-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.guide-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.guide-page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.guide-page-header p {
    color: #b0b0b0;
    font-size: 1rem;
}

.category-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 15px;
    border-bottom: 2px solid #E53935;
    padding-bottom: 8px;
    display: inline-block;
}

details.guide-accordion {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

details.guide-accordion[open] {
    border-color: #E53935;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.15);
}

details.guide-accordion summary {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s;
    list-style: none;
}

details.guide-accordion summary::-webkit-details-marker {
    display: none;
}

details.guide-accordion summary:hover {
    background-color: #252526;
}

details.guide-accordion summary::after {
    content: '+';
    font-size: 20px;
    color: #E53935;
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 12px;
}

details.guide-accordion[open] summary::after {
    content: '-';
}

.guide-content {
    padding: 20px 22px;
    background-color: #252526;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.guide-content p {
    margin-bottom: 14px;
}

.guide-content p:last-child {
    margin-bottom: 0;
}

.guide-content ul {
    margin-left: 20px;
    margin-bottom: 14px;
}

.guide-content li {
    margin-bottom: 6px;
}

.highlight-box {
    background-color: rgba(229, 57, 53, 0.1);
    border-left: 4px solid #E53935;
    padding: 12px 16px;
    margin: 15px 0;
    color: #e6e6e6;
    border-radius: 0 4px 4px 0;
}
