html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;


    background-color: #120016;
}

button {
    font-family: inherit;
    border: 0;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.content-container {
    max-width: 1220px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-block {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: linear-gradient(135deg, #2C003E, #6A0DAD);
}

.main-container {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    color: #F3E5F5;
}

.main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    position: relative;
}

.main-container h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FF4E8E, #FF6FD8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.main-container h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FF6FD8;
    margin: 20px auto 0;
    border-radius: 2px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px #FF6FD8;
    }
    to {
        box-shadow: 0 0 20px #FF6FD8;
    }
}

.pre-h {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #D05EFF;
    letter-spacing: 1.5px;
}

.description-h {
    width: 80%;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.6;
    color: #F8CFFD;
    background: rgba(255, 111, 216, 0.07);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 111, 216, 0.2);
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list > li {
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(145deg, #3C1A4E, #4B276B);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.terms-list > li:hover {
    transform: scale(1.03);
    border-color: #FF6FD8;
}

.li-header {
    font-size: 32px;
    font-weight: 800;
    color: #FF4E8E;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 111, 216, 0.5);
}

.li-text {
    font-size: 18px;
    color: #F8CFFD;
    line-height: 1.6;
}

.email-address {
    color: #FF9EE2;
    font-weight: bold;
    text-decoration: underline;
}

.nested-ul {
    list-style: circle;
    padding-left: 30px;
}

.nested-ul > li {
    margin-bottom: 8px;
    font-size: 17px;
    color: #F3E5F5;
}

@media (max-width: 768px) {
    .content-container{
        margin: 0 20px;
    }
    .main-container h1 {
        font-size: 20px;
    }

    .pre-h {
        font-size: 18px;
    }

    .description-h {
        font-size: 16px;
        width: 90%;
    }

    .li-header {
        font-size: 20px;
    }

    .li-text {
        font-size: 16px;
    }
}
