:root {
            --bg: #050505;
            --text: #ffffff;
            --accent: #00f3ff;
            --nav-height: 90px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body { 
            background-color: var(--bg); 
            color: var(--text); 
            font-family: 'Lexend', sans-serif; 
            overflow-x: hidden;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 8%;
            height: var(--nav-height);
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(15px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
.logo-container {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-container img {
    height: 100%;       
    width: auto;        
    max-width: 200px;   
    object-fit: contain; 
    transition: transform 0.3s ease;
}

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

        .nav-links { list-style: none; display: flex; }
        .nav-links li { margin-left: 35px; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--text); 
            font-size: 0.85rem; 
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s ease;
            opacity: 0.6;
        }
        .nav-links a:hover { opacity: 1; color: var(--accent); }

        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            object-fit: cover;
            filter: brightness(0.3);
        }

        .hero-content {
            text-align: center;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -3px;
        }

        .neon-btn {
            padding: 18px 45px;
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-family: 'Lexend', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.4s;
            letter-spacing: 2px;
            margin-top: 20px;
        }

        .neon-btn:hover {
            background: var(--accent);
            color: #000;
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.5);
        }

    footer {
    padding: 60px 0 30px;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
}

.page-header {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    margin-top: var(--nav-height); 
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.header-content p {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(30%) blur(2px);
}

.about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #050505 80%);
}

.about-hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
}

.sub-title {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 700;
}

.about-hero-content h1 {
    font-size: 5rem;
    margin: 10px 0 30px;
    text-transform: uppercase;
    font-weight: 900;
}

.about-hero-content h1 span {
    color: solid;
    -webkit-text-stroke: 1px #fff;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
}

.story-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.mission-statement h3 {
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
    position: relative;
}

.lead-text {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-right: 1px solid rgba(0, 243, 255, 0.1);
    border-left: 4px solid var(--accent);
    backdrop-filter: blur(5px);
    font-size: 1.1rem;
    line-height: 2.0;
    margin-bottom: 300px;
}


.single-game-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 8%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; 
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #050505 20%, transparent 100%);
}

.game-feature-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.game-main-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px 0 20px;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.status-tag {
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.game-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 600px;
}

.game-poster {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5), 0 0 20px rgba(0, 243, 255, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.primary-btn {
    background: var(--accent);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.secondary-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}


.video-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
}

.close-video {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 3001;
    transition: 0.3s;
}

.close-video:hover {
    color: var(--accent);
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 15px; 
    margin-bottom: 30px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    color: #ffffff;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
    padding: 10px; 
}

.social-link:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent));
}

.copyright {
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.news-section {
    padding: 100px 5%;
    background-color: #050505;
}

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

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.section-title span {
    color: var(--accent);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    color: #333;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-content h3 {
    margin: 15px 0;
    font-size: 1.4rem;
}

.news-content p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent);
}

.news-modal-style {
    max-width: 800px; 
    background: #0a0a0a;
    border: 1px solid var(--accent);
}

.news-full-text {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 20px;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);

    display: none; 
    justify-content: center;
    align-items: center;
}

.news-modal-style {
    width: 90%;
    max-width: 800px;
    max-height: 80vh; 
    overflow-y: auto; 
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid var(--accent);
    position: relative;
}

.view-all-news-container {
    text-align: center;
    margin-top: 50px; 
}

.view-all-btn {
    font-family: 'Lexend', sans-serif;
    display: inline-block;
    padding: 14px 32px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: #000000;
    background-color: var(--accent); 
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transform: translateY(-2px); 
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    margin: 20px 0;
    border-radius: 4px;
    overflow: hidden;
}

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



.menu-toggle {
    display: none; 
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2000;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        height: 100vh;
        width: 70%; 
        background: #050505;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease; 
        z-index: 1000;
        border-left: 1px solid rgba(0, 243, 255, 0.2);
    }

    .nav-links.active {
        right: 0; 
    }

    .nav-links li {
        margin: 25px 0; 
    }

    .game-feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 50px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-hero-content h1, 
    .game-main-title {
        font-size: 3rem; 
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .story-card, .lead-text {
        padding: 20px;
        margin-bottom: 20px;
    }

    .video-container {
        width: 95%; 
    }
    
    .close-video {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .poster-area {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .game-poster {
        max-width: 85%; 
        height: auto;
    }

    .single-game-hero {
        height: auto; 
        min-height: 100dvh;
        padding-top: 40px;
        padding-bottom: 80px;
        overflow: visible; 
    }

    .hero {
        height: 100dvh;
        min-height: 600px;
    }

    .about-hero {
    height: auto; 
    min-height: 100dvh;
    padding-top: 140px; 
    padding-bottom: 80px; 
    align-items: flex-start; 
}

    .page-header {
        height: auto;
        padding: 40px 20px;
    }

    .game-feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 20px;
    }

    .logo-container img {
        max-width: 160px;
    }

    .video-container {
        width: 95%;
        margin-top: 20px;
    }

    .video-container video {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }

    .sub-title {
        white-space: nowrap; 
        letter-spacing: 2px;
        font-size: clamp(0.5rem, 3.5vw, 0.9rem);
        display: block; 
    }

    .featured-news-card {
        display: flex !important;
        flex-direction: column !important; 
        gap: 20px !important; 
        padding: 20px !important; 
        text-align: center !important; 
    }

    .featured-img-wrapper {
        width: 100% !important;
    }

    .slider-arrow {
        display: none !important;
    }

    .news-slider-container {
        padding: 0 !important;
        overflow: visible !important;
    }

    .news-slider-track {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        transform: none !important;
    }

    .news-slider-track .grid-news-card {
        flex: 1 1 100% !important;
        width: 100% !important;
    }
}

@media (max-height: 500px) and (orientation: landscape) {

    nav {
        height: 60px; 
    }
    .logo-container {
        height: 35px; 
    }

    .hero {
        height: 100dvh !important;
        overflow: hidden !important; 
        padding: 0 !important;
    }

    .about-hero, .single-game-hero {
        height: auto !important;
        min-height: 100dvh !important;
        padding-top: 80px !important; 
        padding-bottom: 40px !important;
        align-items: flex-start !important;
        overflow: visible !important;
    }

    .about-hero-content, .game-feature-content {
        margin-top: 20px !important;
        margin-bottom: 40px !important;
    }

    .hero-content h1, .about-hero-content h1, .game-main-title {
        font-size: 2.5rem !important;
        margin-bottom: 10px;
    }

    .game-feature-content {
        grid-template-columns: 1fr 1fr; 
        gap: 20px;
        text-align: left;
    }
    
    .game-poster {
        max-width: 100%;
    }
}


.news-page-hero {
    min-height: 100vh;
    padding: 120px 10% 80px;
    background: #050505;
}

.news-hub-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Lexend', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 3px;
    font-weight: 800; 
    color: #ffffff; 
    text-align: center;
}

.page-title span {
    color: var(--accent);
    font-weight: 800;
    -webkit-text-stroke: none;
    
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5),
                 0 0 20px rgba(0, 243, 255, 0.2);
}

.featured-news-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    align-items: center;
}

.featured-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.news-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: bold;
}

.featured-text h2 {
    font-size: 2rem;
    margin: 10px 0 20px;
}

.featured-text p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--accent);
}

.news-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 60px 0;
}

.secondary-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-news-card {
    background: rgba(255, 255, 255, 0.01);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    transition: 0.3s ease;
}

.grid-news-card:hover {
    border-top-color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
}

.news-date {
    font-size: 0.8rem;
    color: #666;
}

.grid-news-card h3 {
    margin: 15px 0;
    font-size: 1.3rem;
}

.grid-news-card p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.grid-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.grid-link:hover {
    text-decoration: underline;
}


.news-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; 
    padding: 0 50px; 
}


.news-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}


.news-slider-track .grid-news-card {
    flex: 0 0 calc(50% - 15px); 
    box-sizing: border-box;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent);
    border: 2px solid var(--accent);
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 20%;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
}

.left-arrow { left: 5px; }
.right-arrow { right: 5px; }


.btn-steam {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #171a21; 
    border: 1px solid #2a475e;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

