/* Terms of Use Page Styles */
.terms-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
}

.terms-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-content h2 {
    color: #FFD700;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.terms-content h3 {
    color: #FF6B6B;
    font-weight: 600;
    margin-top: 1.5rem;
}

.terms-content ul {
    padding-left: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-content strong {
    color: #FFD700;
}

.terms-content .alert {
    background: rgba(13, 110, 253, 0.2);
    border: 1px solid rgba(13, 110, 253, 0.3);
    color: white;
}

.terms-content .alert-heading {
    color: #FFD700;
}

.terms-content a {
    color: #7C73FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Dark theme compatibility */
[data-theme="dark"] .terms-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

[data-theme="dark"] .terms-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .terms-content {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .terms-content h2 {
        font-size: 1.5rem;
    }
    
    .terms-content h3 {
        font-size: 1.2rem;
    }
}
