* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }
body { background: #0d0f17; color: #e0e0e0; padding: 20px; background: linear-gradient(135deg, #1a0b0b 0%, #0d0f17 100%); }

.container { width: 100%; max-width: 1200px; margin: auto; background: #151a2d; border-radius: 10px; border: 1px solid #4a1a1a; overflow: hidden; }

.header { 
    text-align: center; 
    padding: 60px 20px 40px 20px; 
    border-bottom: 2px solid #8B0000; 
}
.hero-artwork { margin-bottom: 35px; }
.hero-img { 
    max-width: 550px; 
    width: 90%; 
    height: auto;
    border-radius: 12px; 
    border: 3px solid #8B0000; 
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4); 
    transition: transform 0.4s ease;
}
.hero-img:hover { transform: scale(1.02); }
.title-main { font-size: 3rem; letter-spacing: 6px; margin: 10px 0; font-weight: 900; }
.title-bg { 
    background: rgba(139, 0, 0, 0.6); 
    color: #ffffff; 
    padding: 2px 10px; 
    border-radius: 5px; 
    display: inline-block; 
}
.tagline { font-size: 1.2rem; opacity: 0.8; margin-top: 15px; color: #e0e0e0; }

.content-grid { display: flex; flex-wrap: wrap; gap: 20px; padding: 30px; align-items: stretch; }
.col-left { flex: 1.5; min-width: 320px; display: flex; flex-direction: column; gap: 20px; }
.col-right { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }

.card { background: #1a1f35; border-radius: 10px; padding: 20px; border: 1px solid #2a3453; transition: transform 0.2s ease; }
.section-label { color: #ffffff; border-bottom: 2px solid #8B0000; margin-bottom: 15px; padding-bottom: 10px; font-size: 1.2rem; }
.widget-container { border-radius: 8px; overflow: hidden; height: 500px; background: #202225; }

.label-tiktok, .label-youtube, .label-steam, .label-itch, .label-reddit, .label-x, .label-credits { 
    color: #fff; 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.btn-link { 
    text-decoration: none; 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 20px; 
    border-radius: 8px; 
    font-weight: 700; 
}
.btn-tiktok { background: linear-gradient(135deg, #0a1f4a, #6b1a2b); }
.btn-youtube { background: linear-gradient(135deg, #6a0000, #380000); }
.btn-reddit { background: linear-gradient(135deg, #ff4d6d, #8b0000); }
.btn-x { background: linear-gradient(135deg, #1a1a1a, #4d4d4d); }
.btn-credits { background: linear-gradient(135deg, #2a1a4a, #1a0b2a); border: 1px solid #8B0000; }
.btn-itch { background: linear-gradient(135deg, #fa5c5c, #9c2e2e); }
.btn-link img { width: 25px; }

.steam-card { flex-grow: 1; display: flex; flex-direction: column; }
.steam-status-wrap { flex-grow: 1; position: relative; display: flex; align-items: center; justify-content: center; background: #1b2838; border-radius: 8px; overflow: hidden; min-height: 150px; }
.steam-placeholder { display: flex; align-items: center; gap: 10px; opacity: 0.15; filter: grayscale(1); }
.steam-placeholder img { width: 40px; }

.lock-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); display: flex; align-items: center; justify-content: center; }
.lock-box { border: 2px solid #ff2a2a; padding: 15px; color: #ff2a2a; font-weight: 800; background: #000; text-align: center; }

.itchio-fullwidth { width: 100%; padding: 0 30px 30px 30px; }
.itch-card { width: 100%; }
.itch-card .btn-link { width: 100%; }

.credits-nav-card { flex-grow: 0; width: 100%; }

.site-footer { text-align: center; padding: 25px; border-top: 1px solid #8B0000; background: #1a0b0b; font-size: 0.9rem; }
.site-footer a { color: #ff6666; text-decoration: none; }
.legal { margin-top: 10px; opacity: 0.6; }

@media (max-width: 800px) { 
    .content-grid { flex-direction: column; } 
}