body {
    background-image: url('background.png');
    background-repeat: repeat;
    background-size: 200px;
    font-family: 'Fredoka', sans-serif;
    color: #4a3b2a;
    text-align: center;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fca311;
    /* Match the vibrant yellow/orange */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.overlay-content {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 0px #14213d;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 40px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.4);
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.header-group {
    margin-bottom: 30px;
}

.title-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
}

h1 {
    margin: 0;
}

.title-stack span {
    font-size: 4rem;
    /* Adjusted for 2 lines */
    line-height: 1.1;
    color: #fca311;
    text-shadow:
        4px 4px 0px #14213d,
        8px 8px 0px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 2rem;
    /* Bigger */
    color: #4a3b2a;
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 800;
    /* Bolder */
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid #14213d;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .card {
        padding: 20px;
        border-radius: 20px;
    }

    .title-stack span {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .overlay-content {
        font-size: 2.5rem;
    }
}