
/* Styling for Terms of Service page matching λντωϊκα design language */
body {
    font-family: 'Inter', system-ui, sans-serif;
    scroll-behavior: smooth;
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.term-title {
    color: #374151;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.term-section {
    background-color: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.term-section:hover {
    transform: translateX(3px);
    transition: 0.3s ease;
}

.code-snippet {
    background: linear-gradient(135deg, #e0e7ef, #f5f7fa);
    border: 2px dashed #94a3b8;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    font-family: 'Courier New', monospace;
    position: relative;
}

.code-snippet::before {
    content: '⚠️';
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    color: #ef4444;
    font-size: 1.5rem;
}

.button-cta {
    background: linear-gradient(to right, #3b82f6, #6366f1);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.button-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}

.footer-link {
    color: #475569;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #3b82f6;
}

.highlight {
    background-color: #dbeafe;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    display: inline-block;
}

.note {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 3rem 0;
}

.pagination button {
    padding: 0.6rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background-color: #e0e7ef;
}

.current {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

@media (max-width: 768px) {
    .term-section {
        padding: 1.25rem;
    }

    .code-snippet {
        font-size: 0.95rem;
    }
}
