        body { background-color: #000; color: white; font-family: 'Inter', sans-serif; overflow-x: hidden; }
        
        .hero-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.5);
        }

        .ubisoft-blue { background-color: #0070ff; }
        .steam-color { background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%); color: #66c0f4; border: 1px solid #66c0f4; }
        .itch-color { background-color: #ff2449; color: white; }
        
        .overlay-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 8%;
        }

        .action-container {
            position: absolute;
            bottom: 60px;
            right: 80px;
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .game-poster {
            width: 220px;
            height: 310px;
            object-fit: cover;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 0 40px rgba(0,0,0,0.9);
        }

        /* Glass effect for the description video */
        .feature-vid {
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

/* --- Global Resets (Mirrored from Landing) --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background-color: #0b0b0b; 
    color: #fff; 
    font-family: 'Segoe UI', Tahoma, sans-serif; 
    overflow-x: hidden; 
}

/* --- Navbar Layout --- */
.navbar {
    width: 100%;
    background: rgba(0,0,0,0.95);
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    width: 95%;
    max-width: 1800px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
}

.nav-logo-img {
    height: 100px; /* Adjusted to fit bar */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    margin: 0 15px;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a.active {
    opacity: 1;
    border-bottom: 2px solid var(--red);
    padding-bottom: 5px;
}

.btn-red-nav {
    /* Color and Shape */
    background-color: #ff3131; /* The exact red from your image */
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px; /* Smooth rounded corners from image */
    
    /* Text Styling */
    font-family: 'Inter', sans-serif;
    font-weight: 900; /* Extra bold text to match "Play Now" */
    font-size: 15px;
    letter-spacing: -0.02em;
    
    /* Icon Alignment */
    display: flex;
    align-items: center;
    gap: 12px; /* Spacing between text and icon */
    cursor: pointer;
    transition: background 0.2s ease;
}


/* --- Mega Menu / Dropdown Fixes --- */
.dropdown { 
    position: static; /* Crucial for full-width menu */
}

/* Invisible bridge to stop the menu from closing */
.dropdown::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 25px;
}

.mega-menu {
    display: none; 
    position: absolute;
    top: 100px; /* Matches navbar height */
    left: 0;
    width: 100vw;
    background-color: #ffffff !important;
    padding: 60px 10%;
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-bottom: 4px solid #0070f3;
    justify-content: center;
}

.dropdown:hover .mega-menu,
.mega-menu:hover {
    display: flex !important; /* Trigger side-by-side flex */
}

/* Column Styling for 3-column layout */
.mega-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 40px; 
    border-right: 1px solid #e0e0e0; 
    min-width: 250px;
}

.mega-column:last-child { border-right: none; }

.mega-column h3 {
    color: #888 !important;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.mega-column a {
    color: #000 !important; 
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 800;
    padding: 10px 0;
    display: block;
    transition: 0.2s;
}

.mega-column a:hover { 
    color: #0070f3 !important; 
    padding-left: 5px;
}

/* View All Button inside the menu */
.view-all-btn {
    margin-top: 20px;
    background: #0070f3;
    color: #fff !important;
    padding: 12px 20px !important;
    text-align: center;
    border-radius: 4px;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.view-all-btn:hover {
    background: #005ecb;
}

/* --- Footer --- */
/* footer */

.main-footer {
    background: #000;
    padding: 80px 8% 60px;
    border-top: 1px solid #111;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

/* --- FOOTER GRID --- */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* Adjust column widths if needed */
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center; /* Centers all column content horizontally */
    align-items: start;
}

/* --- BRAND COLUMN --- */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    gap: 10px;
}

.brand-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.indie-label {
    color: #ff3131;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.studio-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.location {
    color: #555;
    font-size: 13px;
}

/* --- LINKS COLUMN --- */
.footer-links, .footer-connect {
    display: flex;
    flex-direction: column;
    align-items: center;   
}

.footer-links h4, .footer-connect h4 { 
    font-size: 12px; 
    font-weight: 800; 
    letter-spacing: 2px; 
    margin-bottom: 30px; 
    color: #fff;
    text-align: center; 
}

.footer-links ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    text-align: center;
}

.footer-links li { margin-bottom: 18px; }

.footer-links a { 
    color: #888; 
    text-decoration: none; 
    font-size: 14px; 
    transition: 0.3s; 
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;   /* Center link content */
}

.footer-links a:hover { 
    color: #fff; 
}

/* --- SOCIAL ICONS & CONNECT --- */
.social-icons { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 30px; 
    justify-content: center;   /* Center social icons horizontally */
}

.social-icons a, .platform-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 16px; /* 18px for platform-icons */
    transition: 0.3s;
}

.social-icons a:hover, .platform-icons a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.discord-btn {
    background: #5865F2; 
    color: #fff; 
    text-decoration: none; 
    padding: 12px 24px; 
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center;   /* Center text inside button */
    gap: 10px; 
    font-weight: 700;
    font-size: 14px; 
    transition: 0.3s;
}

.discord-btn:hover { 
    background: #4752c4; 
    transform: scale(1.05); 
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 40px;
    line-height: 1.5;
}

/* platform icon */
.platform-icons {
    display: flex;
    gap: 15px;
    justify-content: center; /* center horizontally */
}

.platform-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    transition: 0.3s;
}

.platform-icons a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}


/* --- Info Section Styles --- */
.info-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.info-container {
    max-width: 1150px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

/* For screens larger than tablets */
@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-list {
    list-style: none;
    color: #aaa;
    font-size: 14px;
}

.info-list li {
    margin-bottom: 8px;
}

.highlight {
    color: #fff;
    font-weight: 600;
}

/* --- Rating Box Styles --- */
.rating-box {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.rating-icon {
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 24px;
    padding: 8px 16px;
}

.rating-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #fff;
}

.rating-text {
    font-size: 12px;
    color: #71717a;
    line-height: 1.6;
    text-transform: uppercase;
}

.game-info-section {
    padding: 96px 40px;
    background-color: #050505;
}

.game-info-container {
    max-width: 1150px;
    margin: 0 auto;
}

.game-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .game-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .game-info-section {
        padding: 96px 128px;
    }
}

/* Description Side */
.description-column, .media-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.description-header-img {
    width: 100%;
    opacity: 0.9;
}

.description-text {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-heading {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: #2563eb;
    text-decoration-thickness: 4px;
}

.quote-text {
    font-style: italic;
    color: #ffffff;
}

/* Media Side */
.media-video {
    width: 100%;
    border-radius: 4px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-left: 2px solid #2563eb;
}

.highlight-title {
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.highlight-desc {
    color: #9ca3af;
    margin-bottom: 24px;
}

.playtime-row {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.playtime-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.1em;
}

.playtime-value {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

/* Section Container */
.features-summary-section {
    padding: 96px 0;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-summary-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-summary-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 48px;
    color: #ffffff;
}

/* Grid Layout */
.features-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 32px;
}

@media (min-width: 768px) {
    .features-summary-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    }
}

/* Individual Feature Items */
.feature-item-box {
    text-align: center;
    position: relative;
    cursor: default;
}

.feature-item-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* The Animated Blue Line */
.feature-hover-line {
    height: 4px;
    width: 100%;
    background-color: #2563eb; /* Blue-600 */
    margin-bottom: 16px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Hover Effect */
.feature-item-box:hover .feature-hover-line {
    transform: scaleX(1);
}

.btn-buy-primary {
    /* Color & Background */
    background-color: #0070f3; /* Ubisoft Blue */
    color: #ffffff;
    
    /* Sizing & Layout */
    width: 100%;
    padding: 16px 0;
    border: none;
    
    /* Typography */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    
    /* Effects */
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* shadow-2xl */
    transition: all 0.3s ease;
}

/* Hover Effect (scale-105) */
.btn-buy-primary:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Active/Click Effect */
.btn-buy-primary:active {
    transform: scale(0.98);
}

.overlay-content {
    /* Ensures the text stays within a readable width */
    padding: 20px;
}

.hero-text-wrapper {
    max-width: 672px; 
}

.hero-title {
    /* Font Sizing */
    font-size: 100px; 
    font-weight: 900; 
    text-transform: uppercase;
    line-height: 1;
    
    /* Spacing */
    letter-spacing: -0.05em; 
    margin-bottom: 8px; 
    color: #ffffff;
}

.hero-subtitle {
    font-size: 20px; 
    color: #0070f3; 
    font-weight: 700; 
    letter-spacing: 0.4em; 
    text-transform: uppercase;
    margin-left: 20px;
}


/* 1. THE MODAL OVERLAY (Background) */
.modal-overlay {
    position: fixed;
    inset: 0;

    background-color: rgba(0, 0, 0, 0.95); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* State for hiding the modal */
.modal-overlay.hidden {
    display: none;
}

/* 2. THE MODAL CONTENT BOX */
.modal-box {
    background-color: #121212; 
    padding: 48px;
    max-width: 400px; 
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    position: relative;
    text-align: center;
}

/* Close button (X) positioning */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #fff;
}

.modal-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.2em; 
    margin-bottom: 40px;
    color: #fff;
}

/* 3. STORE BUTTONS */
.store-button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-link {
    padding: 18px 24px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: block;
}

/* Steam Button */
.steam-btn {
    background-color: #1b2838;
    color: #66c0f4; 
    border: 1px solid #1b2838;
}

.steam-btn:hover {
    filter: brightness(1.2);
}

/* Itch.io Button */
.itch-btn {
    background-color: #fa5c5c;
    color: #fff;
}

.itch-btn:hover {
    opacity: 0.9;
}

.requirements-section {
    padding: 80px 0;
    background-color: #050505; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 40px;
}

.requirements-main-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: left;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Desktop layout: Side by side */
@media (min-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.req-type {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0070f3; 
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    font-size: 14px;
    color: #888;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.req-list li span {
    color: #ffffff;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    min-width: 100px;
}

.req-list li:last-child {
    border-bottom: none;
}