@charset "utf-8";
/* colors  https://htmlweb.ru/html/combine_colors_correctly.php?ysclid=me62sbpo5j363365456 */
/* Цвета https://colorscheme.ru/html-colors.html */
/* Как сделать тёмную тему для сайта https://skillbox.ru/media/code/kak_sdelat_tyemnuyu_temu_dlya_sayta/ */

html {
  font-size: 1rem;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", Sans-serif;
  background: linear-gradient(to right, #32CD32, #30D5C8);
  color: Black;
  font-size: 1.1em;
}

.page {
  max-width: 1085px;
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(190, 223, 223, 0.999);
}

header, nav, footer {
  background-color: rgba(190, 223, 223, 0.999);
}

header {
  margin-top: 0px;
  background-color: rgba(190, 223, 223, 0.999);
}

nav {
  margin-top: 10px;
  background: linear-gradient(to left, #32CD32, #30D5C8);
  padding: 10px;
  margin-left: -10px;
  margin-right: -10px;
}

/* Контентная зона */
.main {
  background-color: rgba(190, 223, 223, 0.999);
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.content {
  width: 768px;
  background-color: rgba(190, 223, 223, 0.999);
}

.sidebar {
  width: 307px;
  background-color: rgba(190, 223, 223, 0.999);
}

footer {
  background: linear-gradient(to left, #C0C0C0, #C0C0C0);
  margin-top: 10px;
  margin-bottom: -10px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
}

h1, h2, h3, h4, h5, h6 {
  color: Black;
}

h1, h2 {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  padding: 10px 0;
}

a {
  color: #DC143C;
  border-bottom: 1px dashed #DC143C;
  text-decoration: none;
}

a:hover {
  color: #A52A2A;
  border-bottom: 1px dashed #FF0000;
}

.main-menu {
  display: block;
}

.burger {
  font-size: 24px;
  cursor: pointer;
  display: none;
  padding: 10px;
}

.main-menu ul {
  display: flex;
  gap: 20px; /* расстояние между пунктами */
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu li a {
  color: #F5F5DC;
  border-bottom: 1px dashed #F5F5DC;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color 0.3s ease;
}

.main-menu li a i {
  font-size: 16px;
  transition: transform 1.9s ease;
}

/* Анимация при наведении */
.main-menu li a:hover {
  color: #A52A2A;
  border-bottom: 1px dashed #A52A2A;
}

.main-menu li a:hover i {
  transform: scale(1.0) rotate(360deg);
}

.icon:hover {
  background-color: white;
  transition: background-color 0.9s ease;
}



/* Адаптивность */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }
  
  .content, .sidebar {
    width: 100%;
  }
  
  .main-menu ul {
    flex-direction: column;
    gap: 5px;
  }
  
  nav {
  padding: 5px;
  }
  
  .burger {
    display: block;
  }

  .main-menu {
    display: none;
  }

  .main-menu.active {
    display: block;
  }
}
/* Адаптивность */



/* ---------- from old css ------------ */
a img {
  border: 2px solid YellowGreen;
}

a img:visited {
  border: 2px solid Lime;
}

a img:hover {
  border: 2px solid GreenYellow;
}

.bux-link {
  font-weight: normal;
  text-transform:uppercase;
}

img {
  max-width: 100%;
  height: auto;
}

/* Реклама от линкСлот */
#slot_360377 > div {
  width: 100% !important;
  height: auto !important;
  max-width: 468px !important;
  overflow: hidden !important;
}

#slot_360377 img {
  width: 100% !important;
  height: auto !important;
  max-width: 468px !important;
  display: block !important;
}
/* Реклама от линкСлот */

.name {
  color: green;
}

.name2 {
  color: red;
}