.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  color: inherit;
}
:root {
  --icon-sm: 14;
  --icon-md: 18;
  --icon-lg: 22;
  --icon-xl: 28;
}


/* Маленькая иконка */
.icon-sm {
  font-size: calc(var(--icon-sm) * 1px);
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' var(--icon-sm);
}

/* Средняя (по умолчанию) */
.icon-md {
  font-size: calc(var(--icon-md) * 1px);
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' var(--icon-md);
}

/* Крупная */
.icon-lg {
  font-size: calc(var(--icon-lg) * 1px);
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' var(--icon-lg);
}

/* Очень крупная */
.icon-xl {
  font-size: calc(var(--icon-xl) * 1px);
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' var(--icon-xl);
}




body {
  background: linear-gradient(135deg, #366F8C, #9FFAF3);
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.page-bg {
  display: flex;
  justify-content: center;
  padding: 30px 15px;
}

/* Основной контейнер */
.main-container {
  max-width: 1380px;
  width: 100%;
  display: flex;
  background: radial-gradient(circle at center, #7edad7 0%, #273751 80%, #1f2f46 100%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  overflow: visible;
  position: relative;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, .2);
}

/* Левая панель (будем настраивать позже) */
$GLOBAL_LMENU$ {
  /* Стили добавим отдельно в следующем шаге */
}

/* Правая область */
.main-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
}

/* Заголовки */
h1, h2, h3 {
  color: #030303;
  margin-top: 0;
}

/* Sidebar */
.sidebar {
  top: -15px;
  overflow: visible;

  width: 60px;
  background-color: #19222B;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: width 0.3s ease;
  position: sticky;
  height: 100vh;
  z-index: 10;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.sidebar:not(.expanded) .menu-label {
  display: none;
}

.sidebar:not(.expanded) li {
  position: relative;
}

.sidebar:not(.expanded) li:hover::after {
  content: attr(data-label);
  position: absolute;
  left: 60px; /* смещение вправо от иконки */
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #263749;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
}


.sidebar.expanded {
  width: 150px;
  align-items: flex-start;
}

.sidebar-logo {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sidebar.expanded .sidebar-logo {
  justify-content: flex-start;
  padding-left: 10px;
}

.sidebar-logo img {
  max-width: 40px;
  height: auto;
  transition: max-width 0.3s ease;
}

.sidebar.expanded .sidebar-logo img {
  max-width: 80px;
}

.toggle-menu {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  margin-left: auto;
  margin-bottom: 20px;
}

.sidebar-nav a {
  color: inherit;          /* Наследовать цвет родителя (был белый) */
  text-decoration: none;   /* Убрать подчеркивание */
  display: flex;          /* Чтобы иконка и текст шли рядом корректно */
  align-items: center;
  gap: 5px;             /* Отступ между иконкой и текстом */
  width: 100%;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.sidebar-nav li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

/* Наведение */
.sidebar-nav li:hover {
  background-color: #2F3A44;

}

/* Активный пункт */
.sidebar-nav li.active {
  background-color: #F7653D;
  color: #fff;
  text-decoration: none;
}

.sidebar-nav li.active .material-icons-outlined {
  color: #fff;
  text-decoration: none;
}

.menu-label {
  display: none;
}

.sidebar.expanded .menu-label {
  display: inline;
}



/* Мобильное верхнее меню */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: #20272E;
  padding: 10px 15px;
  margin: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.mobile-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo {
  width: 34px;
  height: auto;
}

.mobile-toggle-wrap {
  position: relative;
}

.mobile-toggle-btn {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #606467;
}

.mobile-toggle-btn:hover {
  background-color: #f0f0f0;
}


.mobile-sidebar {
  position: fixed;
  top: 70px; /* отступ от верха экрана */
  left: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: none;
  z-index: 9999;
  color: inherit;
}

/* Показываем тексты в мобильном сайдбаре */
.mobile-sidebar .menu-label {
  display: inline !important;
}

.mobile-sidebar a {
  color: inherit;          /* Наследовать цвет родителя (был белый) */
  text-decoration: none;   /* Убрать подчеркивание */
  display: flex;          /* Чтобы иконка и текст шли рядом корректно */
  align-items: center;
  gap: 5px;             /* Отступ между иконкой и текстом */
  width: 100%;
}

.mobile-sidebar.show {
  display: block;
}

.mobile-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-sidebar li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 15px;
  color: #fff;
  border-bottom: 1px solid #eee;
}

.mobile-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  color: #fff;
}




/* Топ меню */

.topmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 500px;
  background-color: #CCD8C9;
  border-radius: 20px;
  padding: 10px 15px;
  color: #465156;
}

.search-wrapper input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  background: transparent;
  color: #485154;
}

.profile-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #DCFBFE;
}

.profile-icons .material-icons {
  cursor: pointer;
  font-size: 24px;
  color: #485154;
}

.avatar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.placeholder {
  /* яркий двух- или трёхцветный градиент */
  background: #6B777C;
}

.placeholder .material-icons {
  color: #485154;
  font-size: 24px;
}

.menu-links {
  display: flex;
  gap: 20px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}

.menu-item:hover {
  opacity: 0.7;
}

.menu-item .menu-subtitle {
  opacity: 0;
  transition: opacity 0.3s ease;
  display: block;
  height: auto; /* пусть занимает место */
}

.menu-item:hover .menu-subtitle {
  opacity: 1;
}

.menu-title {
  font-size: 15px;
  font-weight: 600;
}

.menu-subtitle {
  font-size: 12px;
  color: #fff;
}

.menu-item.no-link {
  cursor: default;
}

.menu-item.no-link:hover {
  opacity: 1;
}



/* Меню с рекламными форматами */

/* Общий контейнер */
.menu-format {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 30px 0px;
}

/* Список меню */
.format-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.format-nav li {
  border-radius: 15px;
  transition: background-color 0.2s ease;
  font-size: 14px;
}

.format-nav li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  transition: background-color 0.2s ease;
}

.format-nav li:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.format-nav li.active {
  background-color: #F7653D;
}

.format-nav li.active a {
  color: #fff;
}

.format-nav li.active .material-symbols-rounded {
  color: #fff;
}

/* Иконки */
.format-nav .material-symbols-rounded {
  font-size: 20px;
  color: #fff;
}



/* Форма поиска */

.search-form {
  display: none; /* скрываем по умолчанию */
  position: fixed;
  top: 80px; /* появится под верхним меню */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 9999;
}

.search-form.active {
  display: flex;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
  color: #ddd;
}

.search-button {
  background-color: #F7653D;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-left: 10px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background-color: #e5532d;
}


/* Карточки топ рекламных сетей */

.top-networks {
  margin-bottom: 40px;
}


.top-networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
  align-items: start;
}

.top-networks-grid.body-mode > div {
  display: contents;
}


/* Колонки */
.network-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 300px; /* адаптивная ширина */
  min-width: 280px;
}






/* ======================
    Карточка рекламной сети
   ====================== */

.promo-card-top {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  padding: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 
    box-shadow 0.3s ease,
    transform 0.3s ease,
    max-height 0.4s ease;
  overflow: hidden;
  max-height: 90px;
  cursor: pointer;
  backdrop-filter: blur(20px);
  transform-origin: center top;
}

.promo-card {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, max-height 0.5s ease;
  overflow: hidden;
  max-height: 90px;
  cursor: pointer;
  backdrop-filter: blur(20px);
  transform-origin: center top;
}

/* Hover эффект */
.promo-card:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

/* Состояние раскрытия */
.promo-card.expanded {
  max-height: 1000px;
}

/* Внутренние элементы */
.promo-inner {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Бейдж */
.promo-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background: #E1F279;
  color: #526579;
  border-radius: 50%;
  padding: 4px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Заголовок карточки */
.promo-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.promo-logo {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.promo-texts {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.promo-sub {
  font-size: 12px;
  color: #D7E1DE;
  margin: 0;
  padding: 0 10px 0 0;
}

/* Разделитель и описание (скрытые по умолчанию) */
.promo-divider,
.promo-desc2,
.promo-reviews {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

/* При раскрытии */
.promo-card.expanded .promo-divider,
.promo-card.expanded .promo-desc2,
.promo-card.expanded .promo-reviews {
  opacity: 1;
  max-height: 500px; /* можно корректировать по факту */
  margin-top: 10px;
}

/* Нижний блок */
.promo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.promo-reviews {
  color: #606467;
  font-size: 20px;
}

/* Кнопка перехода на сайт */
.promo-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.promo-btn:hover {
  background: #A4FFF5;
  color: #365051;
}

/* Иконка раскрытия */
.expand-icon {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  font-size: 24px;
  color: #E1F279;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Показывать иконку только при наведении */
.promo-card:hover .expand-icon {
  opacity: 1;
}

/* Поворот при раскрытии */
.promo-card.expanded .expand-icon {
  transform: translateX(-50%) rotate(180deg);
  opacity: 1;
}


/* ======================
   💥 Детали карточки при раскрытии
   ====================== */

.promo-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding: 0px 0px 8px 0px;
}

.promo-card.expanded .promo-details {
  opacity: 1;
  max-height: 500px; /* можешь подогнать по факту */
  margin-top: 5px;
}

.promo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
}

.promo-label {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.promo-value {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  text-align: right;
}

.promo-promo {
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}



.com {
  position: absolute;
  left: 30px;
  top: 80px; /* поправь при необходимости */
  background-color: #EA8E41;
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: bold;
  z-index: 2;
}

.com:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 60%;
  transform: translateX(-50%) rotate(-100deg) skewX(50deg);
  top: 1px; /* наверх */
  background-color: #EA8E41;
  z-index: -1;
}


/* ======================
   🥖 Хлебные крошки
   ====================== */
.breadcrumbs {
  font-size: 12px;
  color: #D7E1DE;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 5px 0 30px;
}

.breadcrumbs a {
  color: #7FB6BE;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #96F3E6;
}

.breadcrumbs span,
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs::before {
  content: "";
}

.breadcrumbs-separator {
  color: #D7E1DE;
}



/* Блок с заголовком и топовыми рекламными сетями */

.networks-section {
  position: relative; 
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 30px 0px;

}

.networks-left {
  flex: 0.7;
  min-width: 280px;
  padding: 0px 100px 0px 40px;
  position: relative; /* ⬅ нужно для абсолютного позиционирования */
}

.networks-left h1 {
  font-family: 'Russo One', sans-serif;

  color: #fff;
  font-size: 32px;
  margin-bottom: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.networks-left h1::first-line {
 font-family: "Fira Sans Condensed", sans-serif;
  font-size: 200%;
  color: #F9E078;
  font-weight: 900;
}

.title-badge {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Нижняя жирная, короче */
.title-badge::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #F7E85D 70%, rgba(247, 232, 93, 0.2));
  border-radius: 5px;
  transform: rotate(-4deg);
  z-index: -2;
}

/* Верхняя тоньше и длиннее */
.title-badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 120%;
  height: 4px;
  background: linear-gradient(to right, #F7E85D 70%, rgba(247, 232, 93, 0.2));
  border-radius: 3px;
  transform: rotate(-4deg);
  z-index: -1;
}



.top-badge {
  position: absolute;
  top: -35px;
  right: 10%;
  background-color: #E9E88C;
  color: #253539;
  border-radius: 15px;
  padding: 10px 24px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg); /* 🔥 наклон вправо */
  z-index: 0;
}


.networks-subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 70%;
  font-weight: 400;
}

.add-network-btn {
  margin-top: 24px;
  background-color: #F7653D;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 28px;
  border-radius: 35% / 40%; /* эллиптическое скругление */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.add-network-btn:hover {
  background-color: #e5532d;
}

.networks-right {
  position: relative; /* обязательно! чтобы корона позиционировалась внутри */
  flex: 1.3;
  min-width: 260px;
  padding: 24px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 7px; /* расстояние между карточками */
  backdrop-filter: blur(10px);
}

.qcrown img {
  position: absolute;
  height: 40px;
  top: -40px;
  left: 30%;
  transform: translateX(-50%);
}

.cristal img {
  position: absolute;
  width: 220px;
  bottom: 20px;
  right: 52%;
  z-index: 0;
}

/* Базово скрыта */
.search-form {
  display: none;
}

.search-form.active {
  display: flex;
}


/* === Блок FAQ === */

.faq-section {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  margin-top: 50px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #A3FFF6;
  font-family: 'Russo One', sans-serif;
  text-transform: uppercase;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}



.faq-item.active .faq-answer {
  max-height: 500px; /* выставляем больше возможной высоты ответа */
  opacity: 1;

}

.faq-answer p {
  padding: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #D7E1DE;
}



/* Только на десктопе */
@media (max-width: 992px) {
  .menu-format {
    display: none;
  }
}



@media (max-width: 768px) {
  .search-form {
    position: fixed;
    top: 80px; /* чуть ниже хедера */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px); /* небольшие отступы слева и справа */
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .search-form.active {
    display: flex;
  }

  .search-input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
  }

  .search-button {
    padding: 10px 16px;
    background-color: #F7653D;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .search-button:hover {
    background-color: #e5532d;
  }

.page-bg {
  padding: 0;
}

  .main-container {
    display: block;
    padding-top: 50px;
    width: 100%;
    background: radial-gradient(circle at center, #6FAFAD 0%, #273751 80%, #1f2f46 100%);
    background-attachment: fixed;
 }

  .main-area {
    padding: 20px;
  }

.mobile-header {
    display: flex;
  }

  .sidebar {
    display: none;
  }

  .mobile-sidebar.show {
    display: block;
  }
  .topmenu {
    display: none !important;
  }



  .networks-section {
    flex-direction: column;
  }

  .networks-left, .networks-right {
    width: 100%;
  }

.networks-left {
  padding: 0px;
}

.networks-right {
  padding: 0px;
  background: none;
}

.qcrown img {
    display: none;
}



.cristal img {
    display: none;
}

.top-badge {
    display: none;
}

}
