body, html {
    font-family: "Inter", "Segoe UI", sans-serif;
    background-color: #0b1b2b;
    color: #c7d5e0;
    margin: 0;
    padding: 0;
}

/* NAVBAR */
.navbar {
    --bs-navbar-padding-y: 0.3rem;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    background-color: #171a21;
    border-bottom: 1px solid #2a475e;
}

    .navbar-fixed-top .navbar-nav {
        flex-direction: row;
        margin-left: 0;
    }

        .navbar-fixed-top .navbar-nav .nav-item {
            margin-right: 0.5rem;
        }

        .navbar-fixed-top .navbar-nav .nav-link {
            color: #c7d5e0;
            font-size: 0.7rem;
            padding: 0.2rem 0.2rem;
        }

            .navbar-fixed-top .navbar-nav .nav-link:hover {
                color: #fff;
                background-color: rgba(255,255,255,0.05);
                border-radius: 3px;
            }

        .navbar-fixed-top .navbar-nav .nav-link2 {
            color: #c7d5e0;
            font-size: 1.2rem;
            padding: 0.2rem 0.2rem;
        }

/* LEFT SIDEBAR */
#leftSidebar {
    position: fixed;
    top: 56px;
    bottom: 0;
    width: 200px;
    background-color: #0f1a25;
    border-right: 1px solid #2a475e;
    padding-top: 20px;
    overflow-y: auto;
    z-index: 1500;
}

    #leftSidebar .list-group-item {
        background: transparent;
        color: white;
        border: none;
        padding: 10px 20px;
    }

        #leftSidebar .list-group-item:hover {
            background: rgba(255,255,255,0.05);
        }

/* MAIN CONTENT */
#mainContent {
    margin-left: 200px;
    padding: 80px 20px 20px;
}

/* GAME BANNER */
.game-banner-container {
    position: relative;
    width: 100%;
}

.game-banner {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.game-banner-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient( to bottom, rgba(12, 19, 32, 0.8) 0%, rgba(12, 19, 32, 0.2) 40%, rgba(12, 19, 32, 0) 100% );
    pointer-events: none;
}

.bg-steam {
    color: #1A9FFF
}

.steam-game-title {
    position: absolute;
    bottom: 15px;
    left: 25px;
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 12px rgba(0,0,0,0.8);
    z-index: 50;
}

/* PLAY SECTION */
.play-section-steam {
    background: linear-gradient(to bottom, #1b2838 0%, #0f1a25 100%);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 25px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.play-button-steam {
    background: linear-gradient(to bottom, #1A9FFF, #66C0F4);
    color: white;
    padding: 12px 42px;
    font-size: 22px;
    font-weight: 600;
    border: 1px solid #0c4410;
    border-radius: 2px;
    transition: .15s ease;
}

    .play-button-steam:hover {
        background: linear-gradient(to bottom, #1A9FFF, #66C0F4);
        transform: scale(1.03);
    }

/* TWO COLUMN LAYOUT UNDER PLAY SECTION */
.lower-content {
    display: flex;
    gap: 20px;
}

/* ACTIVITY */
.activity-box {
    background-color: #0f1a25;
    border: 1px solid #2a475e;
    border-radius: 5px;
    padding: 15px;
    flex: 1;
    max-height: 1200px;
    overflow-y: auto;
}

.additional-content-box {
    background-color: #0f1a25;
    border: 1px solid #2a475e;
    border-radius: 2px;
    padding: 10px;
    flex: 1;
    /*max-height: 1200px;*/
    overflow-y: auto;
    visibility: hidden;
}

/* RIGHT SIDEBAR UNDER PLAY */
.right-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

/* Screenshots */
.screenshot-thumb {
    width: 100%;
    border: 1px solid #000;
    background-color: #1a2b3c;
    padding: 3px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 0 6px rgba(0,0,0,0.8);
    transition: .1s ease;
}

    .screenshot-thumb:hover {
        transform: scale(1.04);
        box-shadow: 0 0 15px rgba(103,193,245,0.5);
    }

/* Achievements */
.achievement-entry {
    background-color: #1f2f44;
    border: 1px solid #000;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: flex;
    cursor: pointer;
    position: relative;
}

    .achievement-entry:hover {
        background-color: #2d4a69;
        transform: scale(1.01);
    }

.achievement-icon {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    margin-right: 10px;
}

/* Reviews */
.review-summary {
    background-color: #1b2838;
    border: 1px solid #2a475e;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

/* Steam-style review card */
.review-entry {
    background-color: #0f1a25;
    border: 1px solid #2a475e;
    border-radius: 5px;
    margin-bottom: 15px;
}

.review-header {
    background-color: #2a475e;
    border-bottom: 1px solid #1b2838;
    padding: 6px 12px;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.review-body {
    padding: 12px;
    line-height: 1.5;
}

.review-footer {
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #8f98a0;
    border-top: 1px solid #1b2838;
    display: flex;
    justify-content: space-between;
}

.steam-header {
    height: 72px;
    background: linear-gradient(180deg, #2a475e, #1b2838);
    color: #c7d5e0;
    display: flex;
    align-items: center;
}

/* LEFT */
.steam-play-btn {
    background: linear-gradient(180deg, #00cc66, #009944);
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 2px;
    border: none;
    white-space: nowrap;
}

/* CENTER */
.steam-center {
    gap: 24px;
    flex-grow: 1; /* THIS IS CRITICAL */
    overflow: hidden;
}

.steam-stat {
    min-width: 110px;
}

.stat-title {
    font-size: 11px;
    color: #8f98a0;
    text-transform: uppercase;
}

.stat-value {
    font-size: 13px;
}

.steam-divider {
    width: 1px;
    height: 32px;
    background: #3c556e;
}

/* Progress */
.steam-progress {
    height: 4px;
    background: #2a3f55;
    margin-top: 4px;
}

    .steam-progress .progress-bar {
        background: #66c0f4;
    }

/* RIGHT */
.steam-right {
    flex-shrink: 0; /* DO NOT ALLOW SHRINKING */
}

.steam-icon-btn {
    width: 32px;
    height: 32px;
    background: #2a3f55;
    color: #c7d5e0;
    border: none;
    border-radius: 2px;
    font-size: 16px;
}

    .steam-icon-btn:hover {
        background: #3c556e;
    }
