:root {
    --bento-radius: 20px;
    --transition-base: 0.25s ease;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: radial-gradient(#272727, #606060);
    color: #eaeaea;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

main {
    z-index: 10;
    position: relative;
    flex: 1 0 auto;
}

a:hover {
    color: #ffffff;
}

.policy-page {
    z-index: 10;
    padding: 0;
    margin: 0;
}

.policy-page-content {
    display: flex;
    margin: 10px;
    padding: 15px 0 15px 0;
    justify-items: center;
    justify-content: center;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: moveSpheres 20s infinite alternate ease-in-out;
}

.sphere-1 {
    background: #7ece00;
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
}

.sphere-2 {
    background: #00bfff;
    top: 40%;
    left: 60%;
    width: 250px;
    height: 250px;
}

.sphere-3 {
    background: #ff9f00;
    top: 70%;
    left: 30%;
    width: 200px;
    height: 200px;
}

@keyframes moveSpheres {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-50px);
    }
}

.policy-container {
    position: relative;
    z-index: 2;
    margin: 10px;
    background-color: rgba(0, 0, 0, 0.55);
    border-radius: var(--bento-radius);
    padding: 24px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    animation: policyFadeIn 0.5s ease-out forwards;
}

@keyframes policyFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.policy-title {
    justify-self: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.policy-section {
    margin-bottom: 20px;
}

.policy-section h3 {
    color: #7ece00;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-section p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.65;
    margin: 0;
}

a {
    color: #7ece00;
    text-decoration: none;
}
@media (max-width: 768px) {
    .policy-container {
        padding: 15px;
    }

    .policy-title {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }
}
