:root {
    --steam-dark: #171a21;
    --steam-blue: #66c0f4;
    --steam-bg: #1b2838;
    --rdr-red: #c20000;
    --rdr-dark: #1a0505;
    --text: #c7d5e0;
    --white: #ffffff;
    
    --font-head: 'Rye', serif;
    --font-ui: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--steam-dark);
    color: var(--text);
    font-family: var(--font-ui);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Backgrounds */
.bg-cinematic {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.hdqwalls.com/download/red-dead-redemption-2-4k-game-bGdmaWyUmZqaraWkpJRmbmdlrWZlbWU.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -2;
}
.smoke-effect {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(23, 26, 33, 0.9) 0%, rgba(27, 40, 56, 0.95) 100%);
    z-index: -1;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navbar */
.nav {
    background: rgba(23, 26, 33, 0.95);
    border-bottom: 1px solid #2a475e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.nav__container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; color: var(--white); }
.logo__steam { font-size: 14px; color: var(--steam-blue); text-transform: uppercase; letter-spacing: 1px; }

.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a:not(.btn-nav) { font-size: 14px; font-weight: 500; text-transform: uppercase; color: #c7d5e0; }
.nav__links a:not(.btn-nav):hover { color: var(--steam-blue); }

.btn-nav {
    background: linear-gradient(to bottom, #47bfff 5%, #1a44c2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 13px;
}
.btn-nav:hover { background: linear-gradient(to bottom, #47bfff 5%, #1a44c2 160%); }

/* Hero */
.hero { padding: 100px 0; }
.hero__content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.steam-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(102, 192, 244, 0.1); color: var(--steam-blue);
    padding: 6px 12px; border-radius: 4px; font-size: 13px; font-weight: 700;
    margin-bottom: 20px; border: 1px solid rgba(102, 192, 244, 0.3);
}

h1 {
    font-family: var(--font-head);
    font-size: 64px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.red-glow { color: var(--rdr-red); text-shadow: 0 0 20px rgba(194, 0, 0, 0.6); }

.hero__desc { font-size: 18px; margin-bottom: 40px; max-width: 550px; color: #a3b3c1; }

/* Hero Offer & Promo */
.hero__offer { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; }

.price-block { display: flex; flex-direction: column; }
.old-price { text-decoration: line-through; color: #666; font-size: 16px; }
.new-price { font-size: 36px; font-weight: 700; color: #a4d007; line-height: 1; } /* Steam Sale Green */

.promo-block {
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px dashed #444;
    cursor: pointer;
    transition: 0.2s;
}
.promo-block:hover { border-color: var(--steam-blue); background: rgba(102, 192, 244, 0.1); }
.promo-label { font-size: 10px; color: #888; letter-spacing: 1px; }
.promo-code { font-size: 20px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; }
.promo-hint { font-size: 11px; color: var(--steam-blue); margin-top: 2px; }

.hero__actions { display: flex; gap: 15px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px; border-radius: 4px; font-weight: 700; text-transform: uppercase;
    cursor: pointer; font-size: 16px; letter-spacing: 0.5px;
}
.btn--steam {
    background: linear-gradient(90deg, #21a2ff 0%, #2134d4 100%);
    color: white;
    box-shadow: 0 0 20px rgba(33, 162, 255, 0.3);
}
.btn--steam:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(33, 162, 255, 0.5); }
.btn--outline {
    background: transparent;
    border: 2px solid #4c6b8a;
    color: #fff;
}
.btn--outline:hover { border-color: var(--steam-blue); color: var(--steam-blue); }

/* Steam Card Visual */
.steam-card-visual {
    background: #16202d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.steam-card-visual:hover { transform: scale(1.02); }
.steam-header img { width: 100%; display: block; }
.steam-body { padding: 20px; background: linear-gradient(to bottom, #16202d 0%, #0e141d 100%); }
.tags { display: flex; gap: 8px; margin-bottom: 15px; }
.tags span { background: #243346; color: #67c1f5; font-size: 12px; padding: 2px 6px; border-radius: 2px; }
.reviews { margin-bottom: 15px; font-size: 13px; }
.review-summary { color: #66c0f4; font-weight: 700; }
.review-count { color: #556772; }
.steam-desc { font-size: 13px; color: #acb2b8; line-height: 1.5; }
.steam-footer { background: #000; padding: 10px 20px; display: flex; justify-content: flex-end; }
.gift-badge { color: #a4d007; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 5px; }

/* Info Sections */
.section { padding: 80px 0; border-top: 1px solid #2a475e; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 36px; color: var(--white); margin-bottom: 15px; }
.red-divider { width: 80px; height: 4px; background: var(--rdr-red); margin: 0 auto 20px; }
.section-head p { color: #8b9cae; font-size: 18px; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card {
    background: rgba(0,0,0,0.2); border: 1px solid #2a475e; padding: 30px;
    border-radius: 8px; transition: 0.3s;
}
.info-card:hover { background: rgba(102, 192, 244, 0.05); border-color: var(--steam-blue); }
.info-card i { font-size: 32px; color: var(--steam-blue); margin-bottom: 20px; }
.info-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: #8b9cae; }

/* Skyress Info */
.flex-row { display: flex; gap: 60px; align-items: center; }
.text-col { flex: 1; }
.text-col h2 { font-size: 32px; color: var(--white); margin-bottom: 20px; }
.text-col p { margin-bottom: 20px; color: #acb2b8; }
.benefits-list { margin-bottom: 30px; }
.benefits-list li { display: flex; gap: 10px; margin-bottom: 12px; color: #c7d5e0; }
.benefits-list i { color: #a4d007; }
.link-arrow { color: var(--steam-blue); font-weight: 700; font-size: 16px; }
.link-arrow:hover { text-decoration: underline; }

.stats-col { display: flex; gap: 20px; }
.stat-box { background: #16202d; padding: 20px 30px; text-align: center; border-radius: 8px; border: 1px solid #2a475e; }
.stat-num { font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.stat-label { font-size: 13px; color: #66c0f4; text-transform: uppercase; }

/* Game Details */
.game-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.game-video { aspect-ratio: 16/9; border: 1px solid #2a475e; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.game-text-content h3 { font-family: var(--font-head); font-size: 28px; color: var(--rdr-red); margin-bottom: 20px; }
.game-text-content p { margin-bottom: 15px; font-size: 15px; }
.pc-features { margin-top: 20px; list-style: none; }
.pc-features li { margin-bottom: 10px; display: flex; gap: 10px; color: #fff; }
.pc-features i { color: var(--steam-blue); }

/* CTA */
.cta-footer { background: linear-gradient(to right, #1a0505, #2a475e); text-align: center; padding: 100px 0; }
.cta-content h2 { font-family: var(--font-head); font-size: 42px; margin-bottom: 10px; }
.highlight { color: var(--a4d007); font-weight: 700; background: #000; padding: 2px 8px; }
.btn--large { font-size: 20px; padding: 20px 50px; margin-top: 30px; }
.small-note { margin-top: 20px; font-size: 13px; color: #aaa; opacity: 0.7; }

/* Footer */
.footer-global { background: #171a21; padding: 40px 0; text-align: center; border-top: 1px solid #2a475e; }
.footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #666; }
.footer-copy { font-size: 12px; color: #444; }

/* Toast */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--steam-blue); color: #000; padding: 12px 24px; border-radius: 4px; font-weight: 700; opacity: 0; transition: 0.3s; z-index: 200; display: flex; gap: 10px; align-items: center; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (max-width: 900px) {
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__offer { justify-content: center; }
    .hero__actions { justify-content: center; }
    .hero__right { display: none; } /* Hide visual on mobile for simpler layout */
    .info-grid { grid-template-columns: 1fr; }
    .flex-row { flex-direction: column; text-align: center; }
    .game-layout { grid-template-columns: 1fr; }
    .stats-col { width: 100%; justify-content: center; }
    .nav__links { display: none; }
}
