/* ============================================
   TERMS PAGE STYLES - MetaCoin Invest
   Золотая тема как в about.css
============================================ */

/* Terms Hero Section */
.terms-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0a0a14 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.terms-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.terms-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Main Content */
.terms-main {
    background: #0a0a14;
    padding: 80px 20px;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Terms Sections */
.terms-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.terms-section:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}

.terms-section h2 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-section h3 {
    font-size: 1.2rem;
    color: #FFA500;
    margin: 25px 0 15px;
    font-weight: 600;
}

.terms-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.terms-list {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.terms-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.terms-list li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Terms Footer Box */
.terms-footer-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.terms-footer-box p {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .terms-hero h1 {
        font-size: 2.2rem;
    }
    
    .terms-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 100px 20px 60px;
    }
    
    .terms-hero h1 {
        font-size: 1.8rem;
    }
    
    .terms-main {
        padding: 60px 20px;
    }
    
    .terms-section {
        padding: 25px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-footer-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 1.5rem;
    }
    
    .terms-subtitle {
        font-size: 0.95rem;
    }
    
    .terms-section {
        padding: 20px;
    }
    
    .terms-section p {
        font-size: 0.95rem;
    }
}