:root {
    --bg-dark: #0a0a0f;
    --bg-card: #14141f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-color: #e53935;
    /* Red belt red */
    --accent-hover: #ff5252;
    --primary-gradient: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(10, 10, 15, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo .accent {
    color: var(--accent-color);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav .btn-primary {
    color: white;
}

/* Buttons */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero */
.hero {
    padding: 120px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #a0a0b0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.about-card p {
    color: var(--text-secondary);
}

/* Product Hero Card */
.products-section {
    background: #0f0f16;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image {
    flex: 1;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product-tag {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-product {
    background: white;
    color: black;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-product:hover {
    background: #e0e0e0;
}

.btn-product.disabled {
    opacity: 0.7;
    cursor: default;
    background: #333;
    color: #888;
}

.btn-product.disabled:hover {
    background: #333;
}

/* Game Detail Sections */
.game-detail-section {
    margin-top: 60px;
}

.game-detail-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.game-detail-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.game-detail-intro p:first-child {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* Wide Feature Block (image + text side-by-side) */
.feature-block.feature-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-block.feature-wide.feature-reverse {
    direction: rtl;
}

.feature-block.feature-wide.feature-reverse > * {
    direction: ltr;
}

.feature-media {
    overflow: hidden;
    background: #1a1a2e;
    min-height: 280px;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-block.feature-wide .feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Compact Feature Block (text only, used in 2-column grid) */
.feature-block.feature-compact {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
}

/* When compact blocks are siblings, show as 2-column grid */
.feature-grid:has(.feature-compact:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
}

/* Also handle the 3 compact blocks (War Chest, NYC, Vegas) */
.feature-grid:has(.feature-compact:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
}

.feature-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.feature-list li {
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    transform: rotate(45deg);
}

.feature-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Highlight Block */
.highlight-block {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(20, 20, 31, 1) 100%);
    border: 1px solid rgba(229, 57, 53, 0.15);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-block h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.highlight-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Features List */
.features-heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 2px;
    background: var(--accent-color);
}

/* Game Tags */
.game-tags {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Contact */
.contact-section {
    text-align: center;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo as link */
a.logo {
    text-decoration: none;
    color: var(--text-primary);
}

/* Product actions row */
.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   GAME DETAIL PAGE — save-new-york.html
   ============================================ */

/* Game Hero Banner */
.game-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.game-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0a0a 40%, #0f0f16 100%);
    z-index: 0;
}

.game-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(229, 57, 53, 0.08) 0%, transparent 60%);
}

.game-hero-content {
    position: relative;
    z-index: 1;
}

.game-hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.game-hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 30%, #a0a0b0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-hero-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.game-hero-date {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.game-hero-date strong {
    color: var(--accent-color);
}

.product-release-date {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.game-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-steam.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.game-hero-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: -30px auto 40px;
    line-height: 1.7;
}

/* ========== Screenshot Gallery ========== */
.gallery-section {
    background: #0f0f16;
}

.gallery-carousel {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-slide {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a12;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #14141f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-btn:hover {
    background: rgba(229, 57, 53, 0.6);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-dot.active {
    background: var(--accent-color);
}

/* ========== Pitch Section ========== */
.pitch-section {
    padding-bottom: 40px;
}

/* ========== Ships Section ========== */
.ships-section {
    background: #0f0f16;
}

.ships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ship-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.3s;
}

.ship-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.2);
}

.ship-icon {
    margin-bottom: 20px;
}

.ship-icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ship-icon-placeholder.interceptor {
    background: linear-gradient(135deg, #2a4a6b, #1a2a3b);
}

.ship-icon-placeholder.warhawk {
    background: linear-gradient(135deg, #4a3a2a, #2a2018);
}

.ship-icon-placeholder.viper {
    background: linear-gradient(135deg, #6b2a2a, #3b1a1a);
}

.ship-icon-placeholder.valkyrie {
    background: linear-gradient(135deg, #2a4a3a, #1a2a22);
}

.ship-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.ship-role {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ship-stats {
    margin-bottom: 16px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    width: 60px;
    text-align: right;
    flex-shrink: 0;
}

.stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.ship-ability {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    min-height: 3em;
}

.ship-ability strong {
    color: var(--text-primary);
}

/* ========== Zones Section ========== */
.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.zone-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zone-header {
    height: 180px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.zone-nyc {
    background: linear-gradient(135deg, #1a2a3e 0%, #0f1520 60%, #2a1a0a 100%);
}

.zone-vegas {
    background: linear-gradient(135deg, #3a1a2a 0%, #1a0f20 60%, #2a1a3a 100%);
}

.zone-header-overlay {
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.zone-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.zone-waves {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.zone-body {
    padding: 24px;
}

.zone-body > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.zone-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.zone-detail-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.zone-detail-group ul {
    list-style: none;
    padding: 0;
}

.zone-detail-group li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.5;
}

.zone-detail-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 2px;
    background: var(--accent-color);
}

.zone-detail-group li strong {
    color: var(--text-primary);
}

/* ========== Destruction Highlight ========== */
.destruction-section {
    padding: 40px 0;
}

/* ========== Arsenal Section ========== */
.arsenal-section {
    background: #0f0f16;
}

.arsenal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.arsenal-group {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
}

.arsenal-group h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.arsenal-group-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.arsenal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.arsenal-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.arsenal-icon.buff {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.2), rgba(229, 57, 53, 0.05));
    color: #ff6b6b;
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.arsenal-icon.mod {
    background: linear-gradient(135deg, rgba(53, 135, 229, 0.2), rgba(53, 135, 229, 0.05));
    color: #6baaff;
    border: 1px solid rgba(53, 135, 229, 0.2);
}

.arsenal-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.arsenal-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ========== Customizer Section ========== */
.customizer-block {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.06) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(229, 57, 53, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.customizer-content {
    padding: 50px;
}

.customizer-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.customizer-unlock {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.customizer-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 30px;
}

.customizer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}

.customizer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.customizer-col ul {
    list-style: none;
    padding: 0;
}

.customizer-col li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.5;
}

.customizer-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 1px;
    transform: rotate(45deg);
}

.customizer-extra {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== Features Icon Grid ========== */
.features-section {
    background: #0f0f16;
}

.features-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-icon-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s;
}

.feature-icon-card:hover {
    transform: translateY(-2px);
}

.feature-icon-symbol {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.feature-icon-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-icon-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== Controls Section ========== */
.controls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.controls-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
}

.controls-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.controls-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.control-key {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.control-action {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.controls-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    font-style: italic;
}

/* ========== Footer CTA ========== */
.cta-section {
    padding: 60px 0 80px;
}

.cta-block {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(229, 57, 53, 0.12);
    border-radius: 16px;
}

.cta-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-block p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Trailer Thumbnail */
.trailer-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.trailer-thumb {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    aspect-ratio: 16 / 9;
    display: block;
}

.trailer-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.trailer-thumb:hover .trailer-thumb-img {
    transform: scale(1.03);
    filter: brightness(0.65);
}

.trailer-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.trailer-play-btn svg {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.8));
    transition: transform 0.2s ease;
}

.trailer-thumb:hover .trailer-play-btn svg {
    transform: scale(1.15);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.2s ease;
}

.video-modal[hidden] {
    display: none;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
}

.video-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.video-modal-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   RESPONSIVE — GAME DETAIL PAGE
   ============================================ */

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .product-card {
        flex-direction: column;
    }

    .product-image {
        min-height: 200px;
    }

    .product-info {
        padding: 30px;
    }

    .product-info h3 {
        font-size: 1.8rem;
    }

    .feature-block.feature-wide {
        grid-template-columns: 1fr;
    }

    .feature-block.feature-wide.feature-reverse {
        direction: ltr;
    }

    .feature-media {
        min-height: 200px;
    }

    .feature-block.feature-wide .feature-content {
        padding: 30px;
    }

    .feature-grid:has(.feature-compact:nth-child(2):last-child),
    .feature-grid:has(.feature-compact:nth-child(3):last-child) {
        grid-template-columns: 1fr;
    }

    .features-columns {
        grid-template-columns: 1fr;
    }

    .highlight-block {
        padding: 30px;
    }

    .game-detail-intro p:first-child {
        font-size: 1.1rem;
    }

    /* Game page responsive */
    .game-hero-title {
        font-size: 3rem;
    }

    .game-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .ships-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zones-grid {
        grid-template-columns: 1fr;
    }

    .arsenal-columns {
        grid-template-columns: 1fr;
    }

    .customizer-features {
        grid-template-columns: 1fr;
    }

    .customizer-content {
        padding: 30px;
    }

    .features-icon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .controls-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 40px 20px;
    }

    .cta-block h2 {
        font-size: 1.8rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .game-hero-title {
        font-size: 2.2rem;
    }

    .ships-grid {
        grid-template-columns: 1fr;
    }

    .features-icon-grid {
        grid-template-columns: 1fr;
    }

    .zone-header {
        height: 120px;
    }
}
