body {
    background: #111;
    font-family: Arial;
}

/* HERO */
#tmg-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

#tmg-hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
}

#tmg-hero-play {
    padding: 12px 25px;
    background: #00aaff;
    border: none;
    cursor: pointer;
}

/* ROWS */
.tmg-row {
    margin: 20px;
}

.tmg-row h2 {
    color: white;
}

.tmg-row-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

/* VIDEO CARD */
.tmg-item {
    min-width: 220px;
    cursor: pointer;
    position: relative;
}

.tmg-item img {
    width: 100%;
    border-radius: 10px;
}

.tmg-item:hover {
    box-shadow: 0 0 20px rgba(0,150,255,0.8);
}

/* PLAYER */
#tmg-player {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:black;
    z-index:9999;
}

#tmg-player.hidden {
    display:none;
}

#tmg-iframe {
    width:100%;
    height:100%;
}

#tmg-close {
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:30px;
    cursor:pointer;
}