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

html,
body {
    width: 100%;
    min-height: 100%;
    background-color: #d9c59a;
    font-family: Arial, Helvetica, sans-serif;
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #d9c59a;
}

.hero {
    width: 100%;
    height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.button-section {
    width: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.play-button {
    background-color: #0d9aa5;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 30px;
    font-weight: bold;
    padding: 22px 60px;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
}

.play-button:hover {
    background-color: #087d86;
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vh - 120px);
    }

    .button-section {
        min-height: 120px;
        padding: 18px;
    }

    .play-button {
        width: 90%;
        font-size: 24px;
        padding: 20px;
    }
}
