:root {
    color-scheme: light;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #788365, #98b593);
    color: #433a3f;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    box-sizing: border-box;
}

.card {
    position: relative;
    overflow: hidden;
    background: rgba(250, 249, 246, 0.8);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    max-width: 760px;
    width: 100%;
    padding: 32px;
    text-align: center;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExY3hvdTdqZXIxMDdrYXhtejAxcDk1cmg5Y3pueWw4cGswdTEyeHhyZiZlcD12MV9pbnRlcm5hbF9naWQmY3Q9Zw/lPoOHG39XAlV4it61H/giphy.gif) center/cover no-repeat;
    opacity: 1.6;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.card>* {
    position: relative;
    z-index: 1;
}

h1 {
    margin: 0 0 12px;
    font-size: 2.8rem;
    /* color: #ba5a31; */
    background: url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExcGNhcXd3eHk2OHhieHk1dGxzeDVnM2RzeWdwYmplaGthMndtZTBmeiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3xz2BRU6WpaxKiPzuE/giphy.gif);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.video-box {
    margin-top: 18px;
}

.video-box iframe {
    width: min(100%, 420px);
    height: 700px;
    border: 0;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .card {
        padding: 24px;
    }

    .video-box iframe {
        width: 100%;
        height: 560px;
    }
}
