body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(157, 203, 214);

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
}

#container {
    display: flex;
    height: 100vh;
}

.menu-box {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 16px;
}

.menu-box h1 {
    margin-top: 0;
    margin-bottom: 40px;

    font-size: 56px;

    color: rgb(31, 31, 31);

    text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.play-button {
    display: inline-block;

    padding: 18px 42px;

    background: linear-gradient(to bottom, #22c55e, #16a34a);

    color: white;

    text-decoration: none;

    border-radius: 14px;

    font-size: 28px;
    font-weight: bold;

    box-shadow:
        0 6px 14px rgba(0,0,0,0.2);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.play-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(0,0,0,0.25);
}

.play-button:active {
    transform: translateY(0px);
}

.site-footer {
    margin-top: auto;

    width: 100%;

    padding: 14px 0;

    text-align: center;

    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);

    background: rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(6px);
}

.canada-flag {
    position: absolute;

    top: 20px;
    right: 24px;

    font-size: 42px;

    user-select: none;
}

.top-buttons {
    position: absolute;
    top: 20px;
    right: 20px;

    display: flex;
    gap: 10px;

    z-index: 1000;
}

.home-button {
    display: inline-block;

    padding: 14px 22px;

    background: linear-gradient(to bottom, #3b82f6, #2563eb);

    color: white;

    text-decoration: none;

    border-radius: 12px;

    font-size: 18px;
    font-weight: bold;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.home-button:active {
    transform: translateY(0px);
}

@media (max-width: 768px) {

    body {
        padding: 20px;
        overflow-y: auto;
    }

    .menu-box {
        width: 100%;
        max-width: 420px;

        gap: 14px;

        text-align: center;
    }

    .menu-box h1 {
        font-size: 38px;

        margin-bottom: 24px;

        line-height: 1.1;
    }

    .menu-box h2 {
        font-size: 18px;

        margin: 0;

        line-height: 1.3;
    }

    .play-button {
        width: 100%;

        box-sizing: border-box;

        padding: 18px 20px;

        font-size: 24px;

        text-align: center;
    }

    .canada-flag {
        top: 12px;
        right: 14px;

        font-size: 30px;
    }

    .top-buttons {
        top: 12px;
        right: 12px;

        gap: 8px;
    }

    .home-button {
        padding: 10px 16px;

        font-size: 15px;
    }

    .menu-box {
    padding-top: 70px;
    }
}