body {
background-color: #1b1525;
color: white;
font-family: 'Segoe UI', sans-serif;
}
/* Sidebar */
.sidebar {
width: 60px;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: #0e0b14;
border-right: 1px solid #2c2c3a;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20px;
z-index: 10;
}
.sidebar i {
font-size: 24px;
color: #bbb;
margin: 20px 0;
cursor: pointer;
transition: color 0.3s, text-shadow 0.3s;
}
.sidebar i:hover {
color: #ffc107;
text-shadow: 0 0 10px #ffc107;
}
/* Navbar */
.navbar {
background-color: #1e1b2e;

border-bottom: 1px solid #2f2a40;
}
.navbar .navbar-brand {
font-weight: bold;
color: #ffffff;
}
.navbar .nav-link {
color: #ccc;
transition: color 0.3s, text-shadow 0.3s;
}
.navbar .nav-link:hover {
color: #ffc107;
text-shadow: 0 0 8px #ffc107;
}
/* Game tag (Demo / Новая игра и т.п.) */
.game-tag {
position: absolute;
top: 8px;
left: 8px;
background-color: #ffc107;
color: white;
font-size: 12px;
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
}
/* Game card */
.game-card {
position: relative;
background-color: #2d2a3e;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 12px rgba(255, 46, 46, 0.15);
transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
transform: scale(1.02);
box-shadow: 0 0 20px rgba(255, 46, 46, 0.3);
}
.game-card img {
width: 100%;
height: 150px;
object-fit: cover;
}
/* Заголовок секции */
.section-title {
font-size: 1.5rem;
margin: 30px 0 15px;
}
/* Карусель с карточками */
.carousel-wrapper {
overflow-x: auto;
white-space: nowrap;
padding-bottom: 20px;
}
.carousel-wrapper .game-card {
display: inline-block;
width: 220px;
margin-right: 15px;
}
.sidebar-menu {
width: 60px;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: #0e0b14;
overflow: hidden;
transition: width 0.3s ease;
z-index: 100;
border-right: 1px solid #2c2c3a;
}
.sidebar-menu:hover {
width: 220px;
}
.sidebar-menu .nav-link {
display: flex;
align-items: center;
padding: 12px 16px;
color: #ccc;
transition: background-color 0.3s, color 0.3s;
white-space: nowrap;
}
.sidebar-menu .nav-link:hover {
color: #ffc107;
background-color: #1a1525;
}
.sidebar-menu .nav-link i {
font-size: 20px;
margin-right: 12px;
min-width: 24px;
text-align: center;
transition: color 0.3s, text-shadow 0.3s;
}
.sidebar-menu .nav-link:hover i {
color: #ffc107;
text-shadow: 0 0 6px #ffc107;
}
.sidebar-menu .nav-link .label {
opacity: 0;
transition: opacity 0.3s ease;
}
.sidebar-menu:hover .label {
opacity: 1;
}
.game-card {
background-color: #2d2a3e;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 12px rgba(255, 46, 46, 0.15);
transition: transform 0.2s;
}
.game-card:hover {
transform: scale(1.02);
box-shadow: 0 0 20px rgba(255, 46, 46, 0.3);
}
.carousel-control-next {
right: 30px;
}
/** бордер в бургер меню **/
.navbar-toggler {
padding: 0.5rem 0.75rem;
background-color: transparent;
border: none !important;
outline: none !important;
box-shadow: none !important;
}

.carousel-control-prev-icon, .carousel-control-next-icon{
	background-color: #ffc107;
}

@media (min-width: 992px) {  
  .carousel-top{
    margin-left: 60px;
  }
}

@media (min-width: 992px){
  .navbar{
  	margin-left: 60px;
  }
  .header-top{
  	margin-left: 60px;
  }
}


p a, p a:hover{
  color: #25c9f0;
  text-decoration: underline;
}