/* ========================================
   AGB Page - Dark Theme
   ======================================== */

.agb-main {
    min-height: calc(100vh - 200px);
    padding: calc(80px + 4rem) clamp(1.5rem, 8vw, 6rem) 4rem;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.agb-main h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.agb-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.agb-section-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.agb-section-title:first-of-type {
    margin-top: 0;
}

.agb-subpoints {
    display: block;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.agb-main h2 {
    font-size: 1.35rem;
    color: var(--color-text-primary);
    margin: 2rem 0 1rem 0;
}

.agb-main ol,
.agb-main ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

/* Highlight important terms */
.agb-content strong {
    color: var(--color-text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .agb-main {
        padding: calc(70px + 2rem) 1.25rem 2rem;
    }

    .agb-main h1 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: 1.5rem;
    }

    .agb-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .agb-section-title {
        font-size: 1.1rem;
        margin-top: 2rem;
    }

    .agb-main h2 {
        font-size: 1.15rem;
    }

    .agb-subpoints {
        margin-left: 0.5rem;
    }

    .agb-main ol,
    .agb-main ul {
        margin-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .agb-main {
        padding: calc(65px + 1.5rem) 1rem 1.5rem;
    }

    .agb-main h1 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .agb-content {
        font-size: 0.9rem;
    }

    .agb-section-title {
        font-size: 1rem;
        margin-top: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .agb-main h2 {
        font-size: 1.05rem;
    }

    .agb-main ol,
    .agb-main ul {
        margin-left: 1rem;
    }
}
