* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: "Jersey 25", sans-serif;
    color: white;
}

/* ===== Background ===== */

body {
    background-color: #383453;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("media/background.png");
    background-repeat: repeat;
    opacity: 0.5;
    z-index: -1;
}

/* ===== Layout ===== */

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */

.top-header {
    background: #0b0a18;
    padding: 20px 0;
    text-align: center;

    /* Shadow */
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.logo {
    width: 130px;
    cursor: pointer;
}

/* ===== Container ===== */

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    text-align: center;
    flex: 1;
}

/* ===== Title ===== */

.title img {
    width: 420px;
    max-width: 95%;
    margin: 60px 0 20px 0;
}

/* ===== Steam Link ===== */

.steam-link {
    margin-bottom: 20px;
}

.steam-link img {
    position: absolute;
    margin-top: -65px;
    margin-left: -25px;
    width: 60px;
    transition: transform 0.2s ease;
}

.steam-link img:hover {
    transform: scale(1.08);
}

/* ===== YouTube ===== */

.video-section iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.65);
}

/* ===== Text ===== */

.description {
    margin: 40px 0;
    line-height: 1.6;
    text-align: left;
    font-size: 24px;
    color: #BDBDBD;
}

.description p {
    margin-bottom: 20px;
}

/* ===== Gameplay ===== */

.game-section {
    margin: 60px 0;
    text-align: left;
}

.game-section h3 {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 24px;
    color: #FFFFFF;
}

.game-section video {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.65);
}

/* ===== Frog Footer ===== */

.frog-footer {
    margin-top: auto;
    text-align: center;
}

.frog {
    width: 200px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}