/* ==========================================
   TERMS PAGE 2100 - FUTURISTIC DESIGN
   ========================================== */

/* Hero Section 2100 */
.terms-hero-2100 {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        var(--bg-primary) 50%, 
        rgba(59, 130, 246, 0.05) 100%);
}

.terms-hero-2100 .hero-bg-2100 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.terms-hero-2100 .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 15s ease-in-out infinite;
}

.terms-hero-2100 .orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -50px;
}

.terms-hero-2100 .orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.terms-hero-2100 .hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.terms-hero-2100 .hero-container-2100 {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.terms-hero-2100 .breadcrumb-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.terms-hero-2100 .breadcrumb-2100 a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.terms-hero-2100 .breadcrumb-2100 a:hover {
    color: #8b5cf6;
}

.terms-hero-2100 .breadcrumb-2100 .separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.terms-hero-2100 .breadcrumb-2100 .current {
    color: #8b5cf6;
    font-weight: 500;
}

.terms-hero-2100 .hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.terms-hero-2100 .hero-badge-2100 i {
    font-size: 1rem;
}

.terms-hero-2100 .hero-title-2100 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.terms-hero-2100 .hero-title-2100 span {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-hero-2100 .hero-meta-2100 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.terms-hero-2100 .meta-item-2100 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.terms-hero-2100 .meta-item-2100 i {
    color: #8b5cf6;
}

/* Content Section */
.terms-content-2100 {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.terms-content-2100 .terms-container-2100 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

/* Sidebar */
.terms-sidebar-2100 {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.terms-sidebar-2100 .sidebar-nav-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
}

.terms-sidebar-2100 .sidebar-nav-2100 h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.terms-sidebar-2100 .sidebar-links-2100 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.terms-sidebar-2100 .sidebar-link-2100 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.terms-sidebar-2100 .sidebar-link-2100:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.terms-sidebar-2100 .sidebar-link-2100.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    color: #8b5cf6;
    font-weight: 500;
}

.terms-sidebar-2100 .sidebar-link-2100 i {
    font-size: 0.85rem;
    width: 20px;
}

/* Main Content */
.terms-main-2100 {
    min-width: 0;
}

/* Section Cards */
.terms-section-2100 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.terms-section-2100:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
}

.terms-section-2100 .section-header-2100 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.terms-section-2100 .section-number-2100 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5cf6;
    flex-shrink: 0;
}

.terms-section-2100 .section-header-2100 h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.terms-section-2100 .section-content-2100 {
    color: var(--text-secondary);
    line-height: 1.8;
}

.terms-section-2100 .section-content-2100 p {
    margin-bottom: 16px;
}

.terms-section-2100 .section-content-2100 p:last-child {
    margin-bottom: 0;
}

/* Terms List */
.terms-list-2100 {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.terms-list-2100 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.terms-list-2100 li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-list-2100 li i {
    color: #8b5cf6;
    font-size: 0.8rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.terms-list-2100 li span {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Prohibited List */
.terms-prohibited-2100 {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.terms-prohibited-2100 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.terms-prohibited-2100 li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-prohibited-2100 li i {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.terms-prohibited-2100 li span {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Highlight Box */
.terms-highlight-2100 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.terms-highlight-2100 p {
    margin: 0 !important;
    color: var(--text-primary);
    font-weight: 500;
}

.terms-highlight-2100 i {
    color: #8b5cf6;
    margin-right: 8px;
}

/* Contact Box */
.terms-contact-2100 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-top: 16px;
}

.terms-contact-2100 .contact-icon-2100 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-contact-2100 .contact-icon-2100 i {
    font-size: 1.2rem;
    color: #8b5cf6;
}

.terms-contact-2100 .contact-info-2100 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.terms-contact-2100 .contact-info-2100 a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-contact-2100 .contact-info-2100 a:hover {
    color: #7c3aed;
}

/* CTA Section */
.terms-cta-2100 {
    padding: 80px 20px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        var(--bg-primary) 50%, 
        rgba(59, 130, 246, 0.05) 100%);
    text-align: center;
}

.terms-cta-2100 .cta-container-2100 {
    max-width: 600px;
    margin: 0 auto;
}

.terms-cta-2100 .cta-icon-2100 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.terms-cta-2100 .cta-icon-2100 i {
    font-size: 2rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-cta-2100 .cta-title-2100 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.terms-cta-2100 .cta-title-2100 span {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-cta-2100 .cta-desc-2100 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.terms-cta-2100 .cta-buttons-2100 {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.terms-cta-2100 .cta-btn-primary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.terms-cta-2100 .cta-btn-primary-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.terms-cta-2100 .cta-btn-secondary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.terms-cta-2100 .cta-btn-secondary-2100:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Light Theme */
[data-theme="light"] .terms-hero-2100 {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.08) 0%, 
        #f8fafc 50%, 
        rgba(59, 130, 246, 0.08) 100%);
}

[data-theme="light"] .terms-hero-2100 .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .terms-hero-2100 .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .terms-section-2100:hover {
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .terms-content-2100 .terms-container-2100 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .terms-sidebar-2100 {
        position: relative;
        top: 0;
    }
    
    .terms-sidebar-2100 .sidebar-links-2100 {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .terms-sidebar-2100 .sidebar-link-2100 {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .terms-hero-2100 {
        min-height: auto;
        padding: 120px 20px 60px;
    }
    
    .terms-hero-2100 .hero-meta-2100 {
        flex-direction: column;
        gap: 12px;
    }
    
    .terms-section-2100 {
        padding: 24px;
    }
    
    .terms-section-2100 .section-header-2100 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .terms-cta-2100 .cta-buttons-2100 {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-cta-2100 .cta-btn-primary-2100,
    .terms-cta-2100 .cta-btn-secondary-2100 {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .terms-sidebar-2100 .sidebar-nav-2100 {
        padding: 16px;
    }
    
    .terms-sidebar-2100 .sidebar-links-2100 {
        gap: 6px;
    }
    
    .terms-sidebar-2100 .sidebar-link-2100 {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .terms-contact-2100 {
        flex-direction: column;
        text-align: center;
    }
}
