* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: white;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    gap: 60px;
}

.left {
    flex: 1;
}

.left h1 {
    font-size: clamp(45px, 5vw, 75px);
    font-weight: 700;
    margin: 0 0 30px;
    letter-spacing: -2px;
}

.left p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 650px;
    color: #444;
}

.player {
    margin-top: 40px;
    max-width: 550px;
}

.player iframe {
    width: 100%;
    height: 150px;
    border: none;
}


.right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: min(600px, 100%);
    aspect-ratio: 1 / 1;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 30px;
}

.artwork {
    width: min(600px, 100%);
    border-radius: 15px;
}

/* Mobile */
@media (max-width: 900px) {

    .page {
        flex-direction: column;
        padding: 40px 25px;
    }

    .right {
        width: 100%;
    }

}