* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    font-family: Arial, sans-serif;
    font-size: 15px;
    padding-top: 70px;
    background-color: #000;
    background-image: url("Assets/background.avif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    color: pink;
    line-height: 1.4;
}

html {
    cursor: url("Assets/cur2.avif"), auto !important;
}

p {
    margin: 10px 0;
    font-family: "Courier New", monospace;
    text-align: center;
    text-shadow: 1px 1px 2px black;
}

img {
    max-width: 100%;
    object-fit: cover;
    display: block;
    margin: 15px auto;
    border-radius: 8px;
    pointer-events: none;
}

#container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}

.topLeft {
    flex: 1 1 40%;
    background-image: url("Assets/box.avif");
    background-size: cover;
    background-position: center;
    border: 4px solid pink;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.topRight {
    flex: 1 1 55%;
    padding: 20px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid pink;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 20px pink;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    pointer-events: auto;
    -webkit-user-drag: none;
}

.avatar:hover {
    box-shadow: 0 0 40px #ff66ff, 0 0 70px rgba(255, 102, 255, 0.8);
    border-color: #ff66ff;
    transform: scale(1.1);
}

.box,
.extended {
    border: 1px solid #000;
    margin: 15px 0;
    padding: 20px;
    text-align: center;
    background-image: url("Assets/box.avif");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    text-shadow: 1px 1px 2px black;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.player {
    border: 1px solid #000;
    margin: 20px 0 0 0;
    padding: 15px;
    text-align: center;
    background-image: url("Assets/spiral.webp");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    text-shadow: 1px 1px 2px black;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

h2 {
    font-size: 2.8em;
    margin: 10px 0;
    text-shadow: 0 0 15px violet;
}

h4 {
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px black;
    font-size: 1.4em;
}

audio {
    width: 100%;
    margin: 10px 0;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.45);
    accent-color: #ff66ff;
    filter: invert(1) hue-rotate(180deg) saturate(0.9) brightness(0.95);
}

@media (max-width: 768px) {

    .topLeft,
    .topRight {
        flex: 1 1 100%;
    }

    body {
        padding-top: 120px;
    }
}