* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #F8F3EB;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    min-height: 100vh;
    padding: 70px 8%;
}


/* Logo + text section */

.top-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.left {
    flex: 1;
}

.left h1 {
    margin: 0 0 28px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(54px, 5vw, 80px);
    letter-spacing: -2px;
    line-height: 1;
}

.left p {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}


/* Logo */

.right {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artwork {
    width: min(350px, 100%);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}


/* Player */

.player {
    width: 100%;
    margin-bottom: 40px;
}

.player iframe {
    width: 100%;
    min-height: 150px;
    height: 150px;
    border: none;
}


/* History */

.history {
    width: 100%;
}


/* Comments */

#HCB_comment_box {
    margin-top: 40px;
}


/* Bottom row */

.bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}


/* Visitor counter */

.visitor-counter {
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 20px;
}


/* Contact */

.contact {
    text-align: right;
    font-size: 16px;
    color: #555;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 900px) {

    .page {
        padding: 50px 25px;
    }

    .top-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .left p {
        margin-left: auto;
        margin-right: auto;
    }

    .artwork {
        width: 100%;
        max-width: 400px;
    }

    .bottom-info {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .visitor-counter {
        justify-content: center;
    }

    .contact {
        text-align: center;
    }

}