/* ============================================
   ORE FACTORY SQUAD — Modern Game Landing Page
   Color palette: Gold/Amber (from logo) + Industrial Dark
   ============================================ */

:root {
    /* Primary Colors - Logo Aligned */
    --gold: #D4A843;
    --gold-light: #E8C164;
    --gold-dark: #B8922E;
    --gold-deep: #9A7A24;
    --amber: #C4922E;
    --white-warm: #F2EDE4;
    --white-cool: #E8E4DC;

    /* Backgrounds */
    --bg-deep: #0A0A0A;
    --bg-dark: #111111;
    --bg-card: #171717;
    --bg-card-hover: #1E1E1E;
    --bg-surface: #222222;

    /* Text */
    --text-primary: #F2EDE4;
    --text-secondary: #A09888;
    --text-muted: #6B6156;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C4922E, #E8C164);
    --gradient-gold-dark: linear-gradient(135deg, #9A7A24, #D4A843);
    --gradient-warm: linear-gradient(135deg, #C4922E 0%, #E8C164 50%, #D4A843 100%);
    --gradient-surface: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(196, 146, 46, 0.03));

    /* Spacing */
    --section-pad: clamp(48px, 6vw, 80px);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ============ Reset & Base ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* Utility */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ Particle Canvas ============ */
#particles {
    display: none;
}

/* ============ Navbar ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 6px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1vw, 12px);
}

.btn-steam {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.5vw, 8px);
    padding: clamp(5px, 1vw, 8px) clamp(10px, 2vw, 20px);
    background: var(--gradient-gold);
    color: #0A0A0A;
    font-weight: 700;
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    border-radius: 50px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-steam:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.35);
}

.btn-presskit {
    display: flex;
    align-items: center;
    gap: clamp(3px, 0.5vw, 6px);
    padding: clamp(5px, 1vw, 8px) clamp(8px, 1.5vw, 18px);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-presskit svg {
    width: clamp(12px, 1.5vw, 18px);
    height: clamp(12px, 1.5vw, 18px);
}

.btn-steam svg {
    width: clamp(14px, 1.5vw, 20px);
    height: clamp(14px, 1.5vw, 20px);
}

.btn-presskit:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============ Hero Section ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 100px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.85) 70%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-bg-effects {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0A0A0A;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.4);
}

.btn-secondary {
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-light);
    border: 1px solid rgba(212, 168, 67, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.45);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 168, 67, 0.15);
}

/* Hero Steam Widget */
.hero-steam-widget {
    max-width: 646px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-steam-widget iframe {
    display: block;
    width: 100%;
    min-height: 190px;
    border: none;
    border-radius: var(--radius-lg);
}

/* Hero Bottom Actions */
.hero-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.hero-action-primary {
    background: var(--gradient-gold);
    color: #0A0A0A;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.hero-action-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.45);
    color: #0A0A0A;
}

.hero-action-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-action-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--text-primary);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.hero-scroll-indicator span {
    animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 30px; }
    50% { opacity: 0.3; height: 15px; }
}

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.18);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ About Section ============ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(212, 168, 67, 0.06);
}

.about-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover .about-card-image img {
    transform: scale(1.08);
}

.about-card-content {
    padding: 28px;
}

.about-card-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.about-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ Features Section ============ */
.features {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.gameplay-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    padding: 20px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 60px;
}

.bar-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.bar-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bar-arrow {
    color: rgba(212, 168, 67, 0.3);
}

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

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .feature-card-bg {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: var(--radius-md);
    color: var(--gold);
}

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 4px 12px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ Gallery Section ============ */
.gallery {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.gallery-showcase {
    max-width: 960px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 3;
}

.gallery-main:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: rgba(212, 168, 67, 0.4);
    border-color: rgba(212, 168, 67, 0.5);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    z-index: 3;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 168, 67, 0.3) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, 0.3);
    border-radius: 2px;
}

.gallery-thumb {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.25);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.thumb-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: white;
    pointer-events: none;
    transition: background 0.3s;
}

.gallery-thumb:hover .thumb-play-icon {
    background: rgba(0, 0, 0, 0.15);
}

/* ============ Co-op Section ============ */
.coop {
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(212, 168, 67, 0.03) 50%, var(--bg-deep) 100%);
}

.coop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coop-text .section-tag {
    margin-bottom: 16px;
}

.coop-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.coop-text > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.coop-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coop-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.coop-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 50%;
    color: var(--gold);
    flex-shrink: 0;
}

/* Characters Showcase */
.coop-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.characters-showcase {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
}

.character-card {
    position: relative;
    width: 130px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.character-card:nth-child(2) {
    transform: translateY(-20px);
}

.character-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 67, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.character-card:nth-child(2):hover {
    transform: translateY(-30px);
}

.character-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
}

.character-info {
    padding: 12px 16px;
    text-align: center;
    background: linear-gradient(0deg, rgba(212, 168, 67, 0.06), transparent);
}

.character-role {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============ System Specs ============ */
.specs-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
}

.specs-column h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.specs-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.specs-column li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.specs-column li strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

.specs-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

/* ============ Steam Widget Section ============ */
.steam-section {
    padding-bottom: calc(var(--section-pad) * 0.8);
}

.steam-widget-wrap {
    max-width: 680px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.steam-widget-wrap iframe {
    display: block;
    width: 100%;
    min-height: 190px;
    border: none;
    border-radius: var(--radius-lg);
}

/* ============ Footer ============ */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============ Scroll Animations ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero-bottom-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumb {
        width: 90px;
    }

    .gameplay-bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 8px 6px;
        padding: 16px 20px;
        border-radius: var(--radius-md);
        margin-bottom: 32px;
        justify-items: center;
        align-items: center;
    }

    .bar-step {
        gap: 6px;
    }

    .bar-step:nth-of-type(1) { grid-area: 1 / 1; }
    .bar-step:nth-of-type(2) { grid-area: 1 / 3; }
    .bar-step:nth-of-type(3) { grid-area: 2 / 1; }
    .bar-step:nth-of-type(4) { grid-area: 2 / 3; }

    .bar-arrow:nth-of-type(1) { grid-area: 1 / 2; }
    .bar-arrow:nth-of-type(2) { display: none; }
    .bar-arrow:nth-of-type(3) { grid-area: 2 / 2; }

    .bar-number {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .bar-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .bar-arrow svg {
        width: 14px;
    }


    .coop-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .coop-text .section-title {
        text-align: center;
    }

    .coop-text > p {
        text-align: center;
    }

    .characters-showcase {
        gap: 6px;
    }

    .character-card {
        width: 100px;
    }

    .character-card img {
        height: 160px;
    }

    .character-card:nth-child(2) {
        transform: translateY(-12px);
    }

    .specs-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .specs-divider {
        width: 100%;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-links {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .characters-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-items: center;
    }

    .character-card {
        width: 100%;
        max-width: 140px;
    }

    .character-card img {
        height: 200px;
    }

    .character-card:nth-child(2) {
        transform: none;
    }

    .character-card:nth-child(2):hover {
        transform: translateY(-10px);
    }


    .nav-logo-img {
        height: 38px;
    }
}
