/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Topbar */
.topbar {
    position: relative; /* ✅ wichtig für mobile-menu absolute positioning */
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 40px;

    border-bottom: 1px solid #ff0000;

    /* Blur + translucent background */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* Left */
.left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    color: white;
    letter-spacing: 3px;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    padding-bottom: 6px;
    transition: color 0.2s ease;
}

/* Underline (from center) */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;
    background: #ff0000;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

/* Hover */
.nav-links a:hover {
    color: #ff0000;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Active */
.nav-links a.active::after {
    transform: scaleX(1);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.55fr 520px;
    align-items: start;

    padding: 80px 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 90px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-right {
    display: flex;
    justify-content: flex-end;

    position: relative;
    top: 10px;
    margin-right: -70px;
}

/* Video */
.video-wrapper {
    width: 520px;
    aspect-ratio: 16 / 9;

    border-radius: 12px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.22);

    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 0, 0, 0.08),
        0 0 40px rgba(255, 0, 0, 0.10);

    transform: translateY(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease; /* ✅ fixed */
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper:hover {
    transform: translateY(0px);
    border: 1px solid rgba(255, 0, 0, 0.35);
    box-shadow:
        0 22px 80px rgba(0, 0, 0, 0.85),
        0 0 60px rgba(255, 0, 0, 0.14);
}

/* Hero Text */
.game-title {
    font-size: 50px;
    letter-spacing: 5px;
    line-height: 1.05;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.game-subtitle {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Generic button (optional) */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Primary button (optional) */
.btn.primary {
    background: #012ba8;
    color: #ffffff;
    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.15s ease,
        box-shadow 0.25s ease;
}

.btn.primary:hover {
    color: #ff0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* -------- Steam Wishlist Button -------- */
.steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: linear-gradient(135deg, #0b1c2c, #112f4a);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 10px;
    text-decoration: none;
    color: white;

    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;

    transition:
        transform 0.15s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border 0.25s ease;
}

.steam-icon {
    width: 18px;
    height: 18px;
    filter: brightness(1.2);
}

.steam-btn:hover {
    transform: translateY(-3px);

    background: linear-gradient(135deg, #132f4d, #1b4468);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.6),
        0 0 18px rgba(0,170,255,0.25);

    border: 1px solid rgba(0,170,255,0.4);
}

.steam-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* --------- Description text --------- */
.game-description {
    max-width: 860px;
    margin-top: 36px;
    padding: 0;
}

.game-description .lead {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.98;
    margin-bottom: 18px;
}

.game-description .lead strong {
    color: #ff0000;
    font-weight: 700;
}

.game-description p {
    font-size: 15px;
    line-height: 1.85;
    opacity: 0.85;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

/* Section title */
.features-title {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
}

/* Feature list as a clean “card” */
.features-list {
    list-style: none;
    padding: 14px 16px;
    margin-bottom: 22px;

    border: 1px solid rgba(255, 0, 0, 0.25);
    background: rgba(255, 0, 0, 0.03);
    border-radius: 12px;
}

.features-list li {
    margin-bottom: 10px;
    opacity: 0.9;
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-family: Arial, sans-serif;
}

/* Final hook line */
.final-line {
    margin-top: 22px;
    padding-left: 14px;

    border-left: 2px solid rgba(255, 0, 0, 0.7);

    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.5px;
    opacity: 0.92;
}

/* Burger */
.burger {
    display: none; /* desktop hidden */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.burger span {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.25s ease;
}

/* Mobile Dropdown */
.mobile-menu {
    position: absolute;
    top: 60px;
    right: 20px;

    background: rgba(0,0,0,0.95);
    border: 1px solid rgba(255,0,0,0.3);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    padding: 14px 18px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease; /* ✅ fixed */
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: #ff0000;
}

/* ✅ show menu via JS toggle */
.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px 30px;
        max-width: 1200px;
    }

    .hero-right {
        margin-right: 0;
        top: 0;
        justify-content: center;
    }

    .video-wrapper {
        width: 100%;
        max-width: 560px;
    }

    .game-description {
        max-width: 100%;
        margin-top: 26px;
    }

    .nav-links {
        display: none; /* desktop nav off */
    }

    .burger {
        display: flex; /* burger on */
    }
}

@media (max-width: 720px) {
    .topbar {
        padding: 12px 20px;
        gap: 16px;
    }

    .game-title {
        font-size: 38px;
        letter-spacing: 3px;
        max-width: 900px;
    }
}
