/* ---------- Reset & base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

/* ---------- Header bar ---------- */
.site-header {
    width: 100%;
}

.header-bar {
    width: 100%;
    height: 143px;
    background-image: url('images/bkg-bar-tile.png');
    background-repeat: repeat-x;
    background-position: center top;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo {
    display: block;
    height: 130px;
    width: auto;
    transform-origin: center center;
    transition: transform 0.35s ease-out, filter 0.35s ease-out;
    filter: drop-shadow(0 0 12px rgba(255, 120, 30, 0.55))
            drop-shadow(0 0 24px rgba(255, 120, 30, 0.35));
}

.logo-link:hover .logo,
.logo-link:focus-visible .logo {
    transform: scale(1.08) rotate(5deg);
    animation: logo-pulse-glow 1.4s ease-in-out infinite;
}

@keyframes logo-pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(255, 120, 30, 0.55))
                drop-shadow(0 0 24px rgba(255, 120, 30, 0.35));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 150, 50, 0.9))
                drop-shadow(0 0 40px rgba(255, 140, 40, 0.65))
                drop-shadow(0 0 60px rgba(255, 120, 30, 0.35));
    }
}

.header-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom,
        #ff8a1e 0%,
        #ff6a00 50%,
        #cc4f00 100%);
    box-shadow: 0 1px 3px rgba(255, 110, 0, 0.4);
}

/* ---------- Navigation / glossy buttons ---------- */
.site-nav {
    width: 100%;
    background-color: #0a0a0a;
    padding: 22px 0;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
}

.nav-button {
    display: inline-block;
    padding: 10px 28px;
    min-width: 110px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);

    border: 1px solid #b8430a;
    border-radius: 10px;

    background-color: #ff7a1a;
    background-image: linear-gradient(to bottom,
        #ffd089 0%,
        #ff8a2a 45%,
        #ff6a00 55%,
        #cc4f00 100%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.6);

    transition: transform 0.15s ease-out,
                box-shadow 0.15s ease-out,
                background-image 0.15s ease-out;
}

.nav-button:hover,
.nav-button:focus {
    transform: scale(1.06);
    background-image: linear-gradient(to bottom,
        #ffe1a8 0%,
        #ffa04a 45%,
        #ff7a1a 55%,
        #d85800 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.18),
        0 4px 10px rgba(255, 120, 30, 0.45);
    outline: none;
}

.nav-button:active {
    transform: scale(1.02);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.35),
        0 1px 2px rgba(0, 0, 0, 0.6);
}

/* ---------- Body container & subtle tile texture ---------- */
.site-body {
    position: relative;
    flex: 1;
    width: 100%;
    background-color: #0a0a0a;
    padding: 60px 24px 80px;
    min-height: 60vh;
    overflow: hidden;
}

.site-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top,
        rgba(255, 120, 30, 0.08) 0%,
        rgba(255, 120, 30, 0.02) 35%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.site-body > * {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    text-align: center;
    padding: 20px 0 30px;
    margin-bottom: 40px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 820px;
    height: 420px;
    background: radial-gradient(ellipse at center,
        rgba(255, 130, 40, 0.32) 0%,
        rgba(255, 120, 30, 0.12) 40%,
        transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
}

.content-card {
    position: relative;
    z-index: 1;
    padding: 48px 40px 44px;
    border: 1px solid #232323;
    border-radius: 14px;
    background-color: rgba(20, 20, 20, 0.72);
    background-image: linear-gradient(to bottom,
        rgba(31, 31, 31, 0.78) 0%,
        rgba(22, 22, 22, 0.72) 50%,
        rgba(16, 16, 16, 0.72) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 120, 30, 0.04);
    text-align: left;
}

.content-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at center 45%,
        rgba(255, 130, 40, 0.22) 0%,
        rgba(255, 120, 30, 0.08) 40%,
        transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.content-card > * {
    position: relative;
    z-index: 1;
}

.hero-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.about-title {
    font-size: clamp(27px, 4.25vw, 44px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 36px;
    align-items: center;
}

.about-image-link {
    display: block;
    line-height: 0;
    animation: about-image-breathe 3s ease-in-out infinite;
    transform-origin: center center;
}

.about-image {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease-out, filter 0.4s ease-out;
    transform-origin: center center;
}

@keyframes about-image-breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 120, 30, 0.35))
                drop-shadow(0 0 20px rgba(255, 120, 30, 0.15));
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 22px rgba(255, 135, 45, 0.7))
                drop-shadow(0 0 44px rgba(255, 120, 30, 0.35));
    }
}

.about-image-link:hover .about-image,
.about-image-link:focus-visible .about-image {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 24px rgba(255, 140, 50, 0.75))
            drop-shadow(0 0 48px rgba(255, 120, 30, 0.35));
}

.about-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-divider {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 120, 30, 0.25) 50%,
        transparent 100%);
    margin: 32px 0 28px;
}

.quick-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #c0c0c0;
}

.quick-facts li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 1px;
    color: #ff7a1a;
    font-size: 11px;
    text-shadow: 0 0 8px rgba(255, 120, 30, 0.7);
}

.quick-facts li:last-child {
    margin-bottom: 0;
}

.contact-section {
    margin-bottom: 28px;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
}

.contact-image {
    max-width: 400px;
    margin-top: 16px;
}

/* ---------- News listing ---------- */
.news-heading {
    font-size: clamp(27px, 4.25vw, 44px);
}

.news-article-title {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.25;
    padding: 6px 0 10px;
    margin-bottom: 16px;
    color: #f5f5f5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.news-preview {
    margin-bottom: 28px;
}

.news-preview:last-child {
    margin-bottom: 0;
}

.news-date {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff9a3c;
    margin-bottom: 8px;
    opacity: 0.85;
}

.news-preview-title {
    font-size: 22px;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-preview-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease-out, text-shadow 0.15s ease-out;
}

.news-preview-title a:hover {
    color: #ffc285;
    text-shadow: 0 0 8px rgba(255, 150, 60, 0.6);
}

.news-preview-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 12px;
}

.news-read-more {
    color: #ff9a3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 120, 30, 0.4);
    padding-bottom: 2px;
    transition: color 0.15s ease-out, border-color 0.15s ease-out, text-shadow 0.15s ease-out;
}

.news-read-more:hover {
    color: #ffc285;
    border-color: #ffc285;
    text-shadow: 0 0 8px rgba(255, 150, 60, 0.6);
}

/* ---------- News article ---------- */
.news-body {
    font-size: 16px;
    line-height: 1.7;
    color: #b8b8b8;
}

.news-body p {
    margin-bottom: 16px;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 32px;
    align-items: start;
}

.news-image-wrap {
    line-height: 0;
}

.news-image {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(255, 130, 40, 0.28);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 4px 14px rgba(0, 0, 0, 0.55);
}

.news-divider {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 120, 30, 0.25) 50%,
        transparent 100%);
    margin: 32px 0;
}

.news-share {
    text-align: center;
}

/* ---------- Games grid ---------- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: start;
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease-out;
}

.game-card:hover,
.game-card:focus-visible {
    transform: scale(1.04);
}

.game-cover {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease-out;
}

.game-card:hover .game-cover,
.game-card:focus-visible .game-cover {
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.7),
        0 0 28px rgba(255, 120, 30, 0.4);
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #ff9a3c;
    text-align: center;
    text-shadow:
        0 0 8px rgba(255, 130, 40, 0.85),
        0 0 18px rgba(255, 120, 30, 0.5),
        0 0 32px rgba(255, 120, 30, 0.25);
    margin: 18px 0 0;
    padding: 0 4px;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 70%);
    pointer-events: none;
    transition: left 0s;
    z-index: 1;
}

.game-card:hover::after,
.game-card:focus-visible::after {
    transition: left 0.7s ease-out;
    left: 130%;
}

/* ---------- Game detail page (Woodrow) ---------- */
.game-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.game-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

/* ---------- Buy Now CTA ---------- */
.buy-now-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    align-self: center;
    padding: 16px 28px 16px 32px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 1px solid #b8430a;
    border-radius: 10px;
    background-color: #ff7a1a;
    background-image: linear-gradient(to bottom,
        #ffd089 0%,
        #ff8a2a 45%,
        #ff6a00 55%,
        #cc4f00 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    animation: buy-now-pulse 3s ease-in-out infinite;
    transition: transform 0.2s ease-out;
}

.buy-now-icon {
    height: 26px;
    width: auto;
    flex-shrink: 0;
}

@keyframes buy-now-pulse {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.55),
            inset 0 -2px 4px rgba(0, 0, 0, 0.15),
            0 2px 4px rgba(0, 0, 0, 0.6),
            0 0 16px rgba(255, 135, 45, 0.65),
            0 0 32px rgba(255, 120, 30, 0.35);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.55),
            inset 0 -2px 4px rgba(0, 0, 0, 0.15),
            0 2px 4px rgba(0, 0, 0, 0.6),
            0 0 28px rgba(255, 145, 55, 0.95),
            0 0 52px rgba(255, 125, 35, 0.6),
            0 0 80px rgba(255, 120, 30, 0.35);
    }
}

.buy-now-button:hover,
.buy-now-button:focus-visible {
    transform: scale(1.06);
    animation-play-state: paused;
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    .buy-now-button {
        animation: none;
    }
}

.game-title-block {
    flex: 1;
    min-width: 0;
}

.game-subtitle {
    color: #ff9a3c;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.85;
}

.game-title-block h1 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.game-body-row {
    display: grid;
    grid-template-columns: 1fr 325px;
    gap: 36px;
    align-items: start;
}

.game-meta {
    background: rgba(10, 10, 10, 0.35);
    border: 1px solid #232323;
    border-radius: 10px;
    padding: 16px;
}

.game-meta-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 130, 40, 0.22);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.platform-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}

.game-about p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.game-about p:last-child {
    margin-bottom: 0;
}

.game-about .game-tagline {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
    color: #ff9a3c;
    margin: 0 0 22px;
    text-shadow: 0 0 12px rgba(255, 130, 40, 0.5);
}

.game-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #c0c0c0;
}

.game-feature-list li:last-child {
    margin-bottom: 0;
}

.game-feature-list li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 1px;
    color: #ff7a1a;
    font-size: 11px;
    text-shadow: 0 0 8px rgba(255, 120, 30, 0.7);
}

.game-achievements-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.ticker-wrap {
    overflow: hidden;
    padding: 18px 0;
    border-radius: 10px;
    background: linear-gradient(to right,
        rgba(20, 20, 20, 0.6) 0%,
        rgba(20, 20, 20, 0.15) 10%,
        rgba(20, 20, 20, 0.15) 90%,
        rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.ticker {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: ticker-scroll-ltr 60s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 84px;
}

.ticker-item img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    border: 1px solid rgba(255, 130, 40, 0.22);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
    background: #000;
}

.ticker-item-name {
    font-size: 11px;
    color: #a0a0a0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

@keyframes ticker-scroll-ltr {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker {
        animation: none;
    }
}

.game-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.game-specs-os-name {
    font-size: 14px;
    font-weight: 700;
    color: #d0d0d0;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.5px;
}

.game-specs-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ff9a3c;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 130, 40, 0.2);
}

.game-specs-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 18px;
    margin: 0;
}

.game-specs-list dt {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 14px;
}

.game-specs-list dd {
    color: #d0d0d0;
    margin: 0;
    font-size: 14px;
}

.game-specs-note {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: #888;
    font-style: italic;
    line-height: 1.5;
}

.game-meta-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 12px 24px;
    margin: 0;
}

.game-meta-list dt {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 14px;
}

.game-meta-list dd {
    color: #d0d0d0;
    margin: 0;
    font-size: 14px;
}

.game-meta-divider {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 130, 40, 0.25) 50%,
        transparent 100%);
    margin: 18px 0;
}

.game-meta-note {
    font-size: 13px;
    font-weight: 600;
    color: #ff9a3c;
    line-height: 1.5;
    text-align: center;
    text-shadow:
        0 0 8px rgba(255, 130, 40, 0.7),
        0 0 16px rgba(255, 120, 30, 0.35);
    margin: 0;
}

.game-meta-press-link-row {
    margin-top: 16px;
}

/* ---------- In the Press ---------- */
.press-quotes {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.press-quote {
    margin: 0;
    padding: 18px 22px;
    background: rgba(20, 20, 20, 0.35);
    border-left: 3px solid #ff7a1a;
    border-radius: 0 8px 8px 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 4px 14px rgba(0, 0, 0, 0.4);
}

.press-quote p {
    font-size: 16px;
    line-height: 1.6;
    color: #d8d8d8;
    margin: 0 0 12px;
    font-style: italic;
}

.press-quote cite {
    font-size: 13px;
    color: #a0a0a0;
    font-style: normal;
    display: block;
}

/* ---------- Bundle cover (Silicon Kiwi Bundle page) ---------- */
.bundle-cover-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 14px rgba(0, 0, 0, 0.55);
    line-height: 0;
    text-decoration: none;
}

.bundle-cover-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    animation: bundle-cover-shine 3.5s ease-in-out infinite;
    transition: filter 0.3s ease-out;
}

@keyframes bundle-cover-shine {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 130, 40, 0.4))
                drop-shadow(0 0 22px rgba(255, 120, 30, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 24px rgba(255, 140, 50, 0.8))
                drop-shadow(0 0 48px rgba(255, 120, 30, 0.4));
    }
}

.bundle-cover-link:hover .bundle-cover-image,
.bundle-cover-link:focus-visible .bundle-cover-image {
    animation-play-state: paused;
    filter: drop-shadow(0 0 32px rgba(255, 150, 60, 0.95))
            drop-shadow(0 0 60px rgba(255, 120, 30, 0.5));
}

@media (prefers-reduced-motion: reduce) {
    .bundle-cover-image {
        animation: none;
    }
}

/* ---------- Trailer video ---------- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 130, 40, 0.28);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Screenshots slideshow ---------- */
.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 130, 40, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 14px rgba(0, 0, 0, 0.55);
    background: #000;
    margin-bottom: 28px;
}

.slideshow-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideshow-cycle 24s linear infinite;
}

.slideshow-img:nth-child(1) { animation-delay: 0s; }
.slideshow-img:nth-child(2) { animation-delay: 4s; }
.slideshow-img:nth-child(3) { animation-delay: 8s; }
.slideshow-img:nth-child(4) { animation-delay: 12s; }
.slideshow-img:nth-child(5) { animation-delay: 16s; }
.slideshow-img:nth-child(6) { animation-delay: 20s; }

@keyframes slideshow-cycle {
    0%   { opacity: 0; }
    2.5% { opacity: 1; }
    20%  { opacity: 1; }
    22.5%{ opacity: 0; }
    100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .slideshow-img {
        animation: none;
    }
    .slideshow-img:nth-child(1) {
        opacity: 1;
    }
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff9a3c;
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(255, 130, 40, 0.5);
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    padding: 6px 0 14px;
    margin-bottom: 14px;
    background-image:
        linear-gradient(100deg,
            transparent 30%,
            rgba(255, 255, 255, 1) 50%,
            transparent 70%),
        linear-gradient(to bottom, #ffffff 0%, #d8d8d8 100%);
    background-size: 200% 100%, 100% 100%;
    background-position: -200% 0, 0 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: title-shine 2.5s linear infinite;
}

@keyframes title-shine {
    0%, 65% {
        background-position: -200% 0, 0 0;
    }
    100% {
        background-position: 200% 0, 0 0;
    }
}

.hero-lead {
    font-size: clamp(20px, 2.4vw, 24px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    color: #e6e6e6;
    max-width: 700px;
    margin: 0 0 26px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.hero-text {
    min-width: 0;
}

.hero-body {
    margin: 0 0 32px;
}

.hero-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 14px;
}

.hero-body p:last-child {
    margin-bottom: 0;
}

.inline-link {
    color: #ff9a3c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 120, 30, 0.4);
    padding-bottom: 1px;
    transition: color 0.15s ease-out, border-color 0.15s ease-out, text-shadow 0.15s ease-out;
}

.inline-link:hover {
    color: #ffc285;
    border-color: #ffc285;
    text-shadow: 0 0 8px rgba(255, 150, 60, 0.6);
}

.hero-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 34px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid #b8430a;
    border-radius: 10px;
    background-color: #ff7a1a;
    background-image: linear-gradient(to bottom,
        #ffd089 0%,
        #ff8a2a 45%,
        #ff6a00 55%,
        #cc4f00 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(255, 120, 30, 0.25);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.18),
        0 4px 10px rgba(0, 0, 0, 0.6),
        0 0 26px rgba(255, 140, 40, 0.55);
}

/* ---------- Footer ---------- */
.site-footer {
    width: 100%;
    background-color: #0a0a0a;
}

.footer-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom,
        #ff8a1e 0%,
        #ff6a00 50%,
        #cc4f00 100%);
    box-shadow: 0 1px 3px rgba(255, 110, 0, 0.4);
}

.footer-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ff9a3c;
    text-align: center;
    text-shadow:
        0 0 8px rgba(255, 130, 40, 0.85),
        0 0 18px rgba(255, 120, 30, 0.5),
        0 0 32px rgba(255, 120, 30, 0.25);
    margin: 0;
    padding: 28px 24px;
}

/* ---------- News section ---------- */
.news {
    margin-bottom: 40px;
}

.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #232323;
    border-radius: 10px;
    overflow: hidden;
    background-color: #141414;
    background-image: linear-gradient(to bottom,
        #1c1c1c 0%,
        #131313 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 14px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
    text-decoration: none;
    color: inherit;
}

.news-card:hover,
.news-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 120, 30, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 22px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(255, 120, 30, 0.18);
    outline: none;
}

.news-thumb-wrap {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid #1f1f1f;
}

.news-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.news-card:hover .news-thumb {
    transform: scale(1.05);
}

.news-body {
    padding: 16px 18px 20px;
    flex: 1;
}

.news-date {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff9a3c;
    margin-bottom: 8px;
    opacity: 0.85;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: #a0a0a0;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-image {
        order: 2;
        max-width: 260px;
        margin: 0 auto;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-image-link {
        order: 2;
        max-width: 200px;
        margin: 0 auto;
    }
    .games-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .game-card {
        max-width: 280px;
        margin: 0 auto;
    }
    .game-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .game-icon {
        width: 64px;
        height: 64px;
    }
    .buy-now-button {
        margin-left: 0;
        align-self: flex-start;
        padding: 12px 22px 12px 24px;
        font-size: 15px;
        gap: 10px;
    }
    .buy-now-icon {
        height: 20px;
    }
    .game-specs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .game-body-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-image-wrap {
        order: 2;
        max-width: 240px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .header-bar {
        height: 110px;
    }
    .logo {
        height: 95px;
    }
    .nav-button {
        min-width: 90px;
        padding: 9px 18px;
        font-size: 14px;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .site-body {
        padding: 40px 16px 60px;
    }
    .content-card {
        padding: 36px 22px 32px;
    }
}
