body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    background-color: transparent;
}

.content {
    max-width: 800px;
    width: 100%;

    border-radius: 24px;
    padding: 2rem 3rem;
    overflow-y: auto;
    max-height: 90vh;
}

h1 {
    font-family: 'Bangers', cursive;
    font-size: 48px;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 24px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 18px;
    margin-bottom: 1rem;
    line-height: 1.5;
}

ol,
ul {
    font-size: 18px;
    line-height: 1.8;
}

a {
    color: #f0f0f0;
    text-decoration: underline;
}

a:hover {
    opacity: 0.8;
}

button {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 24px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s;
    width: 100%;
    max-width: 300px;
}

button:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem 2rem;
        max-height: 85vh;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 20px;
    }

    p,
    ol,
    ul {
        font-size: 16px;
    }

    button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }

    .content {
        padding: 1rem 1.5rem;
        border-radius: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 18px;
    }

    p,
    ol,
    ul {
        font-size: 14px;
    }

    ol,
    ul {
        margin-left: 1.5rem !important;
    }
}