:root {
    --primary: #2A2F4F;
    --secondary: #6b79e7;
    --accent: #8f73ea;
    --background: #8997ff;
}

@keyframes gradient {
    0% {
        background-position: 80% 0%;
    }

    50% {
        background-position: 20% 100%;
    }

    100% {
        background-position: 80% 0%;
    }
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    padding: 1rem;
    background: transparent;
    position: relative;
    background: linear-gradient(149deg, rgba(24, 187, 156, 1) 0%, rgba(106, 57, 175, 1) 42%, rgba(187, 24, 148, 1) 72%, rgba(115, 53, 134, 1) 100%);
    animation: gradient 10s infinite linear;
    background-size: 400%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.title-box {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 15px;
    transform: rotate(-1deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h2 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
    font-family: 'Comfortaa', cursive;
    position: relative;
    padding-left: 1.5rem;
}

h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 80%;
    background: var(--accent);
    border-radius: 4px;
}

.clause {
    margin: 1rem 0;
    padding: 1rem;
    border-left: 3px solid var(--accent);
    background: rgba(233, 216, 253, 0.1);
    transition: transform 0.3s ease;
}

.clause:hover {
    transform: translateX(10px);
}

.icon {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: var(--secondary);
}

.disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 235, 238, 0.3);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer:before {
    content: '★';
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    top: -10px;
    left: -10px;
}

@media (min-width: 768px) {
    .container {
        padding: 3rem;
        margin: 2rem auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .clause {
        padding: 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.6s ease-out forwards;
}

.iop{
    transition: 0.7s;
    text-decoration: none;
    color: var(--secondary);
    padding: 8px;
}
.iop:hover{
    transition: 0.7s;
}