body {
    background: #030712;
}

.terms-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #282725 0%, #df1a24 50%, #282725 100%);
    background-attachment: fixed;
    position: relative;
    color: #f9fafb;
    padding: 4rem 1.5rem 3rem;
}

.terms-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(223, 26, 36, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(223, 26, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.terms-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terms-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.terms-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #fecaca;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.terms-text {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: #e5e7eb;
}

.terms-list {
    margin: 0 0 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.85;
    color: #e5e7eb;
}

.terms-list li {
    margin-bottom: 0.5rem;
}

.terms-highlight {
    font-weight: 600;
    color: #fecaca;
}


