@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

* {
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0b0b;
    color: white;
    overflow-x: hidden;
}

/* AGREEMENT SECTION */
.agreement-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #0a0a2a 0%, #0f0f2d 50%, #1a1a3a 100%),
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 0, 255, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 0, 255, 0.3), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(0, 255, 255, 0.3), transparent);
    background-size: 
        100% 100%,
        200% 200%, 
        180% 180%, 
        150% 150%, 
        220% 220%, 
        190% 190%;
    background-position: 
        0% 0%,
        0% 0%, 
        100% 100%, 
        50% 50%, 
        0% 100%, 
        100% 0%;
    padding: 4rem 2rem;
    animation: floatParticles 20s ease-in-out infinite, colorShift 10s ease-in-out infinite alternate;
}

/* ANIMATED BACKGROUND EFFECTS */
.agreement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(241, 0, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 162, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite, backgroundMove 20s ease-in-out infinite;
}

.agreement-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(241, 0, 247, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 229, 255, 0.08) 50%, transparent 70%),
        linear-gradient(135deg, transparent 30%, rgba(255, 162, 0, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: moveLines 12s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% {
        background-position: 
            0% 0%,
            0% 0%, 
            100% 100%, 
            50% 50%, 
            0% 100%, 
            100% 0%;
    }
    25% {
        background-position: 
            0% 0%,
            100% 50%, 
            0% 0%, 
            25% 75%, 
            50% 0%, 
            0% 50%;
    }
    50% {
        background-position: 
            0% 0%,
            50% 100%, 
            50% 50%, 
            75% 25%, 
            100% 50%, 
            50% 100%;
    }
    75% {
        background-position: 
            0% 0%,
            0% 50%, 
            100% 0%, 
            50% 50%, 
            25% 100%, 
            75% 0%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes moveLines {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(20px) translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateX(-20px) translateY(20px) rotate(-2deg);
    }
    75% {
        transform: translateX(10px) translateY(-10px) rotate(1deg);
    }
}

@keyframes backgroundMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    33% {
        background-position: 100% 0%, 0% 100%, 0% 100%;
    }
    66% {
        background-position: 0% 100%, 100% 0%, 100% 0%;
    }
}

/* HERO CONTENT */
.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.agreement-title {
    color: transparent;
    -webkit-text-stroke: 2px #00f3ff;
    text-shadow: 0 0 10px #00a2ff, 0 0 20px #00a2ff;
    font-size: clamp(40px, 8vw, 100px);
    line-height: 0.9;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 2rem 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.agreement-title span {
    display: block;
    line-height: 1;
    font-family: "Anton", sans-serif;
}

.agreement-title span:first-child {
    margin-bottom: 10px;
}

.agreement-title span:last-child {
    -webkit-text-stroke: 2px #f0f;
    text-shadow: 0 0 10px #f0a2ff, 0 0 20px #f0a2ff;
    margin-top: -1rem;
}

/* AGREEMENT CONTAINER */
.agreement-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.agreement-content {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00E5FF;
    border-radius: 15px;
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.agreement-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* INTRO TEXT */
.intro-text {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 229, 255, 0.3);
}

.intro-text p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* AGREEMENT SECTION BLOCKS */
.agreement-section-block {
    margin-bottom: 2.5rem;
}

.agreement-section-block:last-of-type {
    margin-bottom: 0;
}

.agreement-section-block h2 {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #00E5FF;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

.agreement-section-block p {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.agreement-section-block p strong {
    color: #FFA200;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 162, 0, 0.5);
}

.agreement-section-block ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.agreement-section-block li {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(14px, 1.6vw, 16px);
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.8;
    text-indent: 0;
}

.agreement-section-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #00E5FF;
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
    line-height: 1.8;
}

.agreement-section-block li strong {
    color: #FFA200;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 162, 0, 0.5);
}

/* AGREEMENT FOOTER */
.agreement-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 229, 255, 0.3);
}

.legal-note {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.8;
    color: rgba(255, 162, 0, 0.9);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 162, 0, 0.5);
    font-style: italic;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .agreement-section {
        padding: 3rem 1.5rem;
    }

    .agreement-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .agreement-section {
        padding: 3rem 1rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .agreement-content {
        padding: 2rem 1.5rem;
    }

    .intro-text {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .agreement-section-block {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .agreement-section {
        padding: 2rem 1rem;
    }

    .hero-content {
        margin-bottom: 1.5rem;
    }

    .agreement-content {
        padding: 1.5rem 1rem;
    }

    .intro-text {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .agreement-section-block {
        margin-bottom: 1.5rem;
    }

    .agreement-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

