* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: system-ui;
    background: #09091a;
    color: #fff;
    overflow-x: hidden
}

#bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #ff4fa0, #09091a 70%);
    z-index: -2
}

.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(transparent, rgba(255, 255, 255, .04));
    backdrop-filter: blur(2px);
    z-index: -1
}

/* .glass {
    margin: 30px auto;
    max-width: 950px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 0 40px rgba(255, 80, 160, .25)
} */

.hero {
    text-align: center
}

h1 {
    font-size: 56px;
    text-shadow: 0 0 20px #ff79c6
}

button {
    padding: 14px 22px;
    border: none;
    border-radius: 40px;
    background: #ff5aa9;
    color: #fff;
    cursor: pointer
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px
}

.cards img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    transition: .6s;
    transform-style: preserve-3d
}

.cards img:hover {
    transform: perspective(900px) rotateY(12deg) scale(1.06);
    box-shadow: 0 0 30px #ff6bb5
}

dialog {
    border: none;
    border-radius: 20px;
    padding: 24px
}

.audio-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

dialog {
    border: none;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    margin: auto; /* Center */
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.6);
}