/* css/waiver.css — Styles for waiver.html */

.ds-waiver__container {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Warning banner ─────────────────────────────────────────────────────── */
.ds-waiver__warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.4);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 36px;
}

.ds-waiver__warning i {
    font-size: 1.4rem;
    color: #f87171;
    flex-shrink: 0;
    margin-top: 2px;
}

.ds-waiver__warning p {
    margin: 0;
    color: #f87171;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
}

/* ── Content sections ───────────────────────────────────────────────────── */
.ds-waiver__section {
    background: var(--ds-card-bg);
    border: 1px solid var(--ds-glass-effect);
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 20px;
}

.ds-waiver__section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    color: var(--ds-secondary-color);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ds-glass-effect);
}

.ds-waiver__section p {
    color: var(--ds-gray-text);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.ds-waiver__section p:last-of-type {
    margin-bottom: 0;
}

/* ── Numbered list ──────────────────────────────────────────────────────── */
.ds-waiver__list {
    padding-left: 24px;
    margin: 12px 0 0;
    color: var(--ds-gray-text);
    font-size: 0.92rem;
    line-height: 1.8;
}

.ds-waiver__list li {
    margin-bottom: 10px;
}

.ds-waiver__list li:last-child {
    margin-bottom: 0;
}

/* ── Definition list (terms) ────────────────────────────────────────────── */
.ds-waiver__terms {
    margin: 12px 0 0;
}

.ds-waiver__term {
    padding: 14px 0;
    border-bottom: 1px solid var(--ds-glass-effect);
}

.ds-waiver__term:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ds-waiver__term dt {
    font-weight: 700;
    color: var(--ds-light-text);
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.ds-waiver__term dd {
    margin: 0;
    color: var(--ds-gray-text);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ── Acknowledgement block ──────────────────────────────────────────────── */
.ds-waiver__section--acknowledgement {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(157, 78, 221, 0.06);
    border-color: rgba(157, 78, 221, 0.25);
}

.ds-waiver__ack-icon {
    font-size: 1.5rem;
    color: var(--ds-primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.ds-waiver__section--acknowledgement p {
    margin: 0;
    color: var(--ds-light-text);
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
}

/* ── CTA buttons ────────────────────────────────────────────────────────── */
.ds-waiver__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-bottom: 20px;
}

.ds-waiver__actions .ds-btn i {
    margin-right: 6px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ds-waiver__section {
        padding: 20px 18px;
    }

    .ds-waiver__section-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ds-waiver__section {
        padding: 16px 14px;
    }

    .ds-waiver__actions {
        flex-direction: column;
        align-items: center;
    }
}
