/* =========================================
   About/Guide Modal Tabs & Body
   ========================================= */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    gap: 0;
}

.tab-btn {
    flex: 1;
    padding: 12px 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
    background: rgba(129, 140, 248, 0.1);
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
    color: #ddd;
    line-height: 1.6;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    border-left: 4px solid var(--accent-primary);
    padding-left: 12px;
}

.tab-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--accent-primary);
    font-size: 15px;
}

.tab-content p {
    margin-bottom: 12px;
    color: #bbb;
}

.tab-content ul,
.tab-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.tab-content li {
    margin-bottom: 10px;
    color: #ccc;
}

.tab-content strong {
    color: var(--accent-primary);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
}

.faq-item h4 {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 14px;
}

.faq-item p {
    margin: 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
}