﻿



/* ===============================
   GAME DETAILS PAGE
================================ */

.game-banner {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url("../assets/images/hero-bg.jpg");
}

/* Layout */
.game-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 900px) {
    .game-layout {
        grid-template-columns: 60% 40%;
        align-items: start;
    }
}

/* Media */
.game-media iframe {
    width: 100%;
    height: 360px;
    border-radius: 18px;
    border: none;
    background: #000;
}

/* Info */
.game-info {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px; /* IMPORTANT */
}
.game-info h2 {
    font-family: "Cinzel", serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.game-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.game-info li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
}

    .game-info li::before {
        content: "✦";
        position: absolute;
        left: 0;
        color: #ffb347;
    }

/* Buttons */
.game-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary {
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8f2fff, #5f72ff);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(143,47,255,0.4);
}

.btn-secondary {
    padding: 14px 34px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
}
.game-details {
    background: radial-gradient(circle at 20% 20%, rgba(130,90,255,0.25), transparent 45%), radial-gradient(circle at 80% 70%, rgba(255,140,40,0.20), transparent 45%), linear-gradient(135deg, #08051a, #120b2d, #1b1442);
}
/* GAME PAGE FIXES */
.game-details {
    padding: 120px 20px;
}

    .game-details section {
        padding: 0;
    }

/* Kill empty sections */
section:empty {
    display: none;
}

/* Prevent white background leaks */
body {
    background: linear-gradient(135deg, #08051a, #120b2d, #1b1442);
}
/* Game title + icon */
.game-title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .game-title-wrap img {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        box-shadow: 0 0 30px rgba(140,100,255,0.6);
    }
/* Screenshots grid */
.game-screens {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

    .game-screens img {
        border-radius: 14px;
        aspect-ratio: 9 / 16;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

        .game-screens img:hover {
            transform: scale(1.06);
            box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        }
.features-title {
    font-family: "Cinzel", serif;
    font-size: 34px;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: 1px;
}

/* List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

    .features-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        font-size: 16px;
        color: rgba(255,255,255,0.85);
        line-height: 1.6;
    }

        .features-list li::before {
            content: "✦";
            position: absolute;
            left: 0;
            top: 2px;
            color: #ffb347;
            font-size: 14px;
        }

/* Actions */
.features-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===============================
   SUBTLE BACKGROUND MOTION
================================ */

/* Reusable animated gradient */
.animated-bg {
    background-size: 200% 100%;
    animation: gradientMove 500s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===============================
   MOUSE GLOW EFFECT
================================ */

#mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 4000px;
    height: 400px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(140,100,255,0.25), rgba(140,100,255,0.15), transparent 65% );
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}

/* Hide on mobile */
@media (max-width: 768px) {
    #mouse-glow {
        display: none;
    }
}
/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: #08051a; /* Darkest purple */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

    .loader-content h2 {
        color: #fff;
        font-family: 'Cinzel', serif;
        margin-top: 20px;
        animation: blink 1.5s infinite;
    }

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid #ffb347; /* Orange accent */
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

/* Hide Class (Added by JS) */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}
/* TYPEWRITER CURSOR */
.typewriter::after {
    content: "|";
    animation: blink 1s infinite;
    color: #ffb347;
}
/*# sourceMappingURL=style.css.map */
/* ==============================
   LOGO BACKGROUND BADGE (OVERRIDE)
============================== */

/* Remove forced left alignment issues */
/*.site-header .nav-logo {
    align-self: center;
}*/

    /* Background behind logo */
    /*.site-header .nav-logo a {
        display: inline-flex;
        align-items: center;
        padding: 8px 14px;
        border-radius: 14px;
        background: linear-gradient( 135deg, rgba(127, 83, 172, 0.25), rgba(127, 83, 172, 0.08) );
        box-shadow: 0 4px 14px rgba(127, 83, 172, 0.35);
        text-decoration: none;
    }*/

    /* Logo size control */
    /*.site-header .nav-logo img {
        max-width: 220px;
        height: auto;
        display: block;
    }*/

    /* Subtle hover polish */
    /*.site-header .nav-logo a:hover {
        transform: translateY(-1px);
        transition: 0.2s ease;
    }*/
/* ==============================
   FULL HEADER BACKGROUND IMAGE
============================== */


/*
.site-footer {
    background-color: #222;
    padding: 90px 15px 30px;
}

    .site-footer .site-footer--content {
        max-width: 1600px;
        display: block;
        margin: 0 auto;
        color: #FFF;
        border-bottom: 1px solid #0000004D;
    }

@media screen and (min-width: 768px) {
    .site-footer .site-footer--content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.site-footer .site-footer--content .footer-left {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
}

    .site-footer .site-footer--content .footer-left p {
        font-size: 16px;
        line-height: 1.6;
        color: #E0E0E0;
    }

.site-footer .site-footer--content .footer-right {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    text-align: right;
}

.site-footer .site-footer--content a {
    color: #FFF;
    text-decoration: none;
}

.site-footer .copyright-notice {
    padding-top: 20px;
    text-align: center;
    color: #7A7A7A;
    border-top: 1px solid #FFFFFF0D;
}
.site-header {
    background-image: linear-gradient( rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) ), url("../assets/images/header-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
