/* Agreement Page Styles */
.agreement-content {
    flex: 1;
    overflow-y: auto;
    padding: 50px 20px 100px;
}

.agreement-title {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.agreement-section {
    margin-bottom: 32px;
}

.agreement-section-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.agreement-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.agreement-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.agreement-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    font-style: italic;
}

.scroll-indicator {
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-indicator.hidden {
    display: none;
}

.agreement-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.accept-btn {
    width: 100%;
    background: var(--bg-card);
    border: none;
    border-radius: 24px;
    padding: 16px 24px;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.accept-btn:active:not(:disabled) {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.12);
}

.accept-btn:disabled {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    cursor: not-allowed;
}
