.tos-container {
    max-width: 900px;
    margin: 120px auto 60px;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.tos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tos-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.tos-date {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.tos-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.tos-section {
    margin-bottom: 2.5rem;
}

.tos-section:last-child {
    margin-bottom: 0;
}

.tos-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.tos-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tos-section ul {
    list-style: none;
    margin: 1rem 0;
}

.tos-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.tos-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.tos-alert {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid;
}

.tos-alert svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.tos-alert strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tos-alert p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.tos-alert ul {
    margin: 0.75rem 0 0 0;
}

.tos-alert li {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.tos-alert.warning {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.tos-alert.warning svg {
    color: #fbbf24;
}

.tos-alert.danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.tos-alert.danger svg {
    color: #f87171;
}

.tos-alert.info {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.tos-alert.info svg {
    color: #60a5fa;
}

.tos-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tos-footer p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.tos-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-tos {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.btn-tos:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
}

.btn-tos.secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-tos.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .tos-container {
        margin-top: 100px;
    }
    
    .tos-header h1 {
        font-size: 2rem;
    }
    
    .tos-content {
        padding: 2rem 1.5rem;
    }
    
    .tos-actions {
        flex-direction: column;
    }
}
