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

html, body {
    background-color: #0E1B32;
    font-family: 'Aktiv Grotesk Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

body {
    padding: 1rem;
    min-height: 95vh;
}

.circle-bottom-right {
    right: -220px;
    bottom: -120px;
    width: 450px;
    height: 450px;
}

.circle-top-left {
    z-index: 1;
    left: -140px;
    top: -130px;
    width: 350px;
    height: 350px;
}

.position-absolute {
    position: absolute;
}

@media (max-width: 768px) {
    .circle-bottom-right {
        width: 350px;
        height: 350px;
    }

    .circle-top-left {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .circle-bottom-right {
        width: 200px;
        height: 200px;
        right: -120px;
        bottom: -80px;
    }

    .circle-top-left {
        width: 150px;
        height: 150px;
        left: -60px;
        top: -60px;
    }
}

video-renderer:part(poster) {
    font-family: 'Aktiv Grotesk Trial', sans-serif;
}

video-renderer::part(player) {
    width: 100%;
    height: 70vh;
    border-radius: 8px;
    background: #0E1B32;
    margin-bottom: 1rem;
}

video-renderer::part(button-group) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

video-renderer::part(button) {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-top: 16px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    font-family: 'Aktiv Grotesk Trial', sans-serif;
    margin-top: 1rem;
    background-color: #FF5630;
    color: white;
}