body {
    display: flex;
    background: #121212;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

.sidebar {
    width: 200px;
    background: #181818;
    padding: 20px;
    height: 100vh;
}

.sidebar .logo img {
    width: 100%;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 10px;
    cursor: pointer;
}

.sidebar ul .active {
    color: #00A3FF;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    color: #777;
}

.content {
    flex: 1;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #181818;
    border-bottom: 2px solid #00A3FF;
}

.search input {
    background: #222;
    border: none;
    padding: 5px;
    color: white;
}

.auth {
    display: flex;
    align-items: center;
}

.auth .register {
    background: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
}

.auth .login {
    background: #444;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
}

.game-details {
    display: flex;
    align-items: center;
    background: #222;
    padding: 20px;
    border-radius: 8px;
    width: 65%;  /* Adjusted width */
    margin: auto;
}

.main-media img {
    width: 65%;  /* Adjusted width */
    border: 2px solid #00A3FF;
    display: block;
    margin: auto;
}

.media-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.media-thumbnails img {
    width: 28%;  /* Adjusted width to make them smaller */
    border: 2px solid #00A3FF;
    cursor: pointer;
}