* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

body {
    background: linear-gradient(135deg, #09001a 0%, #160033 50%, #0d012a 100%);
    overflow-x: hidden;
}

.terms-container {
    max-width: 900px;
    margin: 10rem auto 5rem auto;
    padding: 3rem 2rem;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 60px rgba(123,92,255,0.2);
    transition: all 0.3s ease;
}

.terms-container:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 80px rgba(123,92,255,0.3);
}

.terms-container h1 {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
}

.terms-container h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #cbbcff;
}

.terms-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #dcd6ff;
}

.terms-container ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-link {
    color: #7b5cff;
    text-decoration: underline;
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
