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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #181818;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.rive-container {
    width: 500px;
    height: 587px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

#riveCanvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: #181818;
}

@media (max-width: 768px) {
    .rive-container {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 500 / 587;
    }
}
