@font-face {
    font-family: "TVC";
    src: url("tvc.ttf") format("truetype");
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "TVC", monospace;
    font-size: 1.2rem;
    color: #e6faff;
    background:
    radial-gradient(circle at top, #2d1b4f 0%, #140b2e 40%, #060311 100%);
}

/* ===== HEADER ===== */

header {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

header h1 {
    margin: 0 0 1rem;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: #ff0000;
    text-shadow: 6px 6px 0 #000000, 0 0 12px rgba(120,200,255,0.8);
}
    
/* ===== MAIN ===== */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.0rem 1.5rem 4rem;
}

/* ===== TOP SECTION (2 → 1 COLUMN) ===== */

.game-top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 800px) {
    .game-top {
    grid-template-columns: 1fr;
    }
}

/* ===== LEFT META PANEL ===== */

.game-meta {
    display: grid;
    align-self: start; /* ← hogy felülre kerüljön a jobb oldali kép magasságától függetlenül */
    grid-template-columns: max-content 1fr;
    row-gap: 0.8rem; /* ← kontrollált sortáv */    
    column-gap: 1.2rem;
    padding: 1.6rem;
    border-radius: 18px;
    background: linear-gradient( 180deg, rgba(50,40,100,0.95), rgba(10,8,30,0.98) );
    box-shadow: inset 0 0 0 2px rgba(120,220,255,0.35), 0 0 30px rgba(120,200,255,0.35);
    grid-template-columns: max-content 1fr;
}

.meta-row {
    display: contents;
    line-height: 
}

.meta-label {
    color: #ffe66d;
    letter-spacing: 0.1em;
    text-align: right;
}

.meta-value {
    color: #d8f6ff;
}

.download {
    display: inline-block;    
    color: #00ffff;
    text-decoration: none;
    letter-spacing: 0.12em;
}

.download:hover {
    text-decoration: underline;
    text-shadow: 0 0 6px rgba(255,230,120,0.6);
}

/* ===== RIGHT IMAGE ===== */

.game-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    image-rendering: pixelated;
    box-shadow: inset 0 0 0 2px rgba(120,220,255,0.35), 0 0 30px rgba(120,200,255,0.35);
}

.content-block img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 12px;
    image-rendering: pixelated;
    box-shadow: 0 0 20px rgba(120,200,255,0.35);
}

.content-block span {
    color: yellow;
}

/* ===== CONTENT ===== */

.game-description {
    margin-bottom: 2.5rem;
    line-height: 1.75;
    color: #d8f6ff;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 0.5rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
    inset 0 0 0 2px rgba(120,220,255,0.35),
    0 0 30px rgba(120,200,255,0.35);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.content-block {
    margin-bottom: 2.5rem;
    line-height: 1.75;
    color: #d8f6ff;
}

.content-block img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 12px;
    image-rendering: pixelated;
    box-shadow: 0 0 20px rgba(120,200,255,0.35);
}

.back {
    display: inline-block;    
    color: #ff00ff;
    text-decoration: none;
    letter-spacing: 0.12em;
}

.videok {
    display: inline-block;
    color: #ffff00;
    text-decoration: none;
    letter-spacing: 0.12em;
}

.videok {
    display: inline-block;
    color: #ff00ff;
    text-decoration: none;
    letter-spacing: 0.12em;
}

.videok:hover {
    text-decoration: underline;
}