* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background-color: #09020e;
    color: #ff0095;
}

html, body {
    min-height: 100%;
}

body {
    padding: 24px;
    line-height: 1.6;
    background-color: #09020e;
}

h1 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-top: 20px;
    margin-left: 20px;
    max-width: 100%;
}

p {
    font-size: 1rem;
    margin-top: 15px;
    margin-left: 20px;
    max-width: 100%;
}

ul {
    margin-top: 10px;
    margin-left: 30px;
    padding-left: 0;
}

li {
    margin-top: 5px;
}

a {
    color: #ff80c0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#audio-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 149, 0.35);
    background: rgba(9, 2, 14, 0.95);
    color: #ff0095;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 10;
}

#volume-slider {
    position: fixed;
    top: 70px;
    right: 18px;
    width: 44px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 0, 149, 0.3);
    border-radius: 2px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #ff0095;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ff0095;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

#volume-slider:hover {
    opacity: 1;
}

@media (max-width: 700px) {
    body {
        padding: 18px;
    }

    h1,
    p {
        margin-left: 0;
        padding-right: 10px;
    }

    ul {
        margin-left: 18px;
    }
}

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

    h1 {
        font-size: 1.45rem;
    }

    p {
        font-size: 0.97rem;
    }

    ul {
        margin-left: 16px;
    }
}

