:root {
    --bg-color: #0c0c0c;
    --text-color: #e0e0e0;
    --accent-color: #00d2ff; /* Change this to match your game's accent */
    --card-bg: #161616;
    --border-color: #333;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.header {
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

    .header .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: 0.2s;
}

    nav a:hover {
        opacity: 1;
        color: var(--accent-color);
    }

.brand {
    font-weight: bold;
    text-decoration: none;
    color: #white;
}

/* Hero Section */
#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0 20px 0;
    align-items: center;
}

    #hero h1 {
        font-size: 3.5rem;
        margin: 0 0 20px 0;
        letter-spacing: -1px;
    }

    #hero p {
        font-size: 1.2rem;
        opacity: 0.8;
        margin-bottom: 30px;
    }

.btn {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.2s;
}

    .btn:hover {
        background: var(--accent-color);
        color: white;
    }

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Game Section */
.game-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin: 20px auto;
    max-width: 700px;
}

.fact-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

    .fact-item strong {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        opacity: 0.5;
    }

#steam-widget {
    margin: 20px auto;
    text-align: center;
    max-width: 700px;
}

/* Media Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0 60px 0;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

    .gallery img:hover {
        border-color: var(--accent-color);
    }

.logos img {
    object-fit: contain;
    background: #1a1a1a;
    padding: 20px;
    height: 150px;
    width: 280px;
}

.assets img {
    object-fit: contain;
    background: #1a1a1a;
    padding: 20px;
    height: 150px;
    width: 280px;
}

/* Video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 60px;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

/* Lists */
.link-list {
    list-style: none;
    padding: 0;
}

    .link-list li {
        margin-bottom: 10px;
    }

    .link-list a {
        color: var(--accent-color);
        text-decoration: none;
    }

        .link-list a:hover {
            text-decoration: underline;
        }
    
    .link-list.horizontal{
        gap: 1em;
        flex-direction: row;
        display: flex;
    }

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    opacity: 0.5;
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 768px) {
    #hero, .game-grid {
        grid-template-columns: 1fr;
    }

    #hero {
        text-align: center;
        padding: 40px 0;
    }

}


