@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root{
  --bg:#f6f7fb;
  --card:#fff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e6e9f1;

  --accent:#1DDD9D;
  --border: var(--line);
}

*,
*::before,
*::after{ box-sizing:border-box; }

body{
  margin:0;
  font:14px/1.45 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* общий контейнер */
.container{
  max-width:1600px;
  margin:0 auto;
  padding:0 24px;
}

/* ===== шапка ===== */
.site-header{
  background:#ffffff;
  border-bottom:1px solid var(--border);
}

/* верхняя полоса */
.site-header__top{
  border-bottom:1px solid var(--border);
  background:#f9fafb;
}

/* внутренние блоки шапки */
.site-header__top-inner,
.site-header__bottom-inner{
  max-width:1500px;
  margin:0 auto;
  padding:0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* отдельные настройки топа */
.site-header__top-inner{ height:32px; }

.top-nav{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:12px;
}

.top-nav a{ text-decoration:none; color:var(--muted); }
.top-nav a:hover{ color:var(--text); }

.top-nav__soon{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.top-nav__soon .soon{
  font-size:10px;
  padding:1px 4px;
  border-radius:4px;
  background:#fbbf24;
  color:#111827;
}

.top-nav-right{
  display:flex;
  align-items:center;
  gap:16px;
}
.top-nav-right a{
  text-decoration:none;
  font-size:12px;
  color:var(--muted);
}
.top-nav-right a:hover{ color:var(--text); }
.top-nav__currency{ font-weight:600; }
.top-nav__lang-flag{ font-size:16px; }

/* простой текстовый переключатель языка */
.lang-link{
  border:0;
  background:transparent;
  padding:0;
  font:inherit;
  color:var(--muted);
  cursor:pointer;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
}
.lang-link:hover{ color:var(--text); }

/* переключатель валюты */
.currency-switch{ position:relative; font-size:12px; vertical-align:middle; }
.currency-switch__current{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  gap:4px;
  line-height:1;
  vertical-align:middle;
  font-size:12px;
}
.currency-switch__current:hover{ color:var(--text); }
.currency-switch__symbol{ font-weight:600; }
.currency-switch__code{ font-weight:500; }

.currency-switch__menu{
  position:absolute;
  right:0;
  top:100%;
  margin-top:4px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:4px;
  box-shadow:0 8px 20px rgba(15,23,42,.12);
  display:none;
  z-index:30;
}
.currency-switch--open .currency-switch__menu{ display:block; }

.currency-switch__item{
  border:0;
  background:transparent;
  padding:6px 10px;
  font:inherit;
  color:var(--text);
  cursor:pointer;
  border-radius:6px;
  display:block;
  width:100%;
  text-align:left;
}
.currency-switch__item:hover{ background:#f3f4f6; }

/* переключатель документов */
.docs-switch{ 
  position:relative; 
  font-size:13px; 
  vertical-align:middle; 
  display:inline-block;
}
.docs-switch__current{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  color:var(--muted);
  font-size:12px;
  font-weight:400;
  display:inline-flex;
  align-items:center;
  gap:4px;
  transition:color 0.2s;
  text-decoration:none;
  opacity:0.85;
}
.docs-switch__current:hover{ 
  color:var(--text); 
  opacity:1;
}
.docs-switch__arrow{
  font-size:10px;
  display:inline-block;
  transition:transform 0.2s;
}
.docs-switch--open .docs-switch__arrow{
  transform:rotate(180deg);
}

.docs-switch__menu{
  position:absolute;
  right:0;
  top:100%;
  margin-top:4px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:4px;
  box-shadow:0 8px 20px rgba(15,23,42,.12);
  display:none;
  z-index:30;
  min-width:220px;
}
.docs-switch--open .docs-switch__menu{ display:block; }

.docs-switch__item{
  border:0;
  background:transparent;
  padding:8px 12px;
  font:inherit;
  color:var(--text);
  cursor:pointer;
  border-radius:6px;
  display:block;
  width:100%;
  text-align:left;
  text-decoration:none;
  transition:background-color 0.2s;
}
.docs-switch__item:hover{ background:#f3f4f6; }

/* нижняя полоса */
.site-header__bottom{ background:#ffffff; }
.site-header__bottom-inner{ height:60px; }

/* логотип и меню */
.bottom-left{
  display:flex;
  align-items:center;
  gap:56px;
}
.logo{
  text-decoration:none;
  font-weight:700;
  font-size:22px;
  color:#000000;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.logo__tick{ 
  height:24px;
  width:24px;
  vertical-align:middle;
  display:inline-block;
}

.bottom-nav{
  display:flex;
  align-items:center;
  gap:0;
}
.bottom-nav a{
  text-decoration:none;
  font-size:14px;
  color:#111827;
  margin:0 6px !important;
  padding:0 !important;
}
.bottom-nav a:first-child{
  margin-left:0 !important;
}
.bottom-nav a:last-child{
  margin-right:0 !important;
}
.bottom-nav a:hover{ color:var(--accent); }

/* правая часть */
.bottom-right{
  display:flex;
  align-items:center;
  gap:0;
}
.bottom-right > *{
  margin:0 6px !important;
}
.bottom-right > *:first-child{
  margin-left:0 !important;
}
.bottom-right > *:last-child{
  margin-right:0 !important;
}
.bottom-link{
  text-decoration:none;
  color:#111827;
  font-size:14px;
  padding:0 !important;
}

/* ссылки справа в шапке */
.bottom-link,
.user-short__name{
  text-decoration:none;
  color:#111827;
}
.bottom-link:hover,
.user-short__name:hover{ color:var(--accent); }

/* баланс и бонусы */
.pill,
.pill:hover{ text-decoration:none; }

/* иконка уведомлений и корзины */
.notif-bell,
.cart-icon{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 4px;
  vertical-align:middle;
  top:2px;
}
.notif-bell a,
.cart-icon a{
  text-decoration:none;
  color:var(--text);
  transition:color .2s;
}
.notif-bell a:hover,
.cart-icon a:hover{ color:var(--accent); }

/* счётчики */
.notif-bell__count,
.cart-icon__count{
  position:absolute;
  top:-4px;
  right:-6px;
  background:#ef4444;
  color:#fff;
  font-size:10px;
  line-height:1;
  padding:2px 5px;
  border-radius:999px;
}

/* "таблетки" */
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  vertical-align:middle;
}
.pill--green{
  background:var(--accent);
  color:#ffffff;
}
.pill__icon{ font-size:14px; }

/* юзер справа */
.user-short{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.user-short.user-short--hover:hover .user-short__name{ color:var(--accent); }
.user-short.user-short--hover:hover .avatar-svg{
  filter:brightness(0) saturate(100%) invert(75%) sepia(22%) saturate(965%) hue-rotate(110deg) brightness(96%) contrast(98%);
}

.user-short__name{ font-size:14px; position:relative; top:-2px; }
.user-short__id{
  font-size:12px;
  color:#9ca3af;
  margin-left:4px;
}

.user-short__avatar{
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid var(--border);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff;
  transition:box-shadow .15s ease, border-color .15s ease;
  position:relative;
  top:2px;
}
.user-short.user-short--hover:hover .user-short__avatar{
  border-color:rgba(29,221,157,.55);
  box-shadow:0 0 0 2px rgba(29,221,157,.25);
}
.avatar-svg{
  width:18px;
  height:18px;
  transition:filter .2s ease;
  filter:brightness(0) saturate(100%) invert(7%) sepia(8%) saturate(720%) hue-rotate(180deg) brightness(93%) contrast(90%);
}

/* контент под шапкой */
.site-main{
  max-width:1300px;
  margin:16px auto 40px;
  padding:0 24px;
}

/* ===== SVG-иконки ===== */
.cart-icon .cart-link,
.bell-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.cart-svg{
  width:22px;
  height:22px;
  transition:filter .2s ease;
  filter:brightness(0) saturate(100%) invert(7%) sepia(8%) saturate(720%) hue-rotate(180deg) brightness(93%) contrast(90%);
}
.cart-link:hover .cart-svg{
  filter:brightness(0) saturate(100%) invert(75%) sepia(22%) saturate(965%) hue-rotate(110deg) brightness(96%) contrast(98%);
}
.bell-svg{
  width:20px;
  height:20px;
  transition:filter .2s ease;
  filter:brightness(0) saturate(100%) invert(10%) sepia(6%) saturate(430%) hue-rotate(190deg) brightness(92%) contrast(95%);
}
.bell-link:hover .bell-svg{
  filter:brightness(0) saturate(100%) invert(75%) sepia(20%) saturate(1100%) hue-rotate(110deg) brightness(94%) contrast(97%);
}

/* ===== Telegram-кнопка ===== */
.tg-header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  background:#54A9EB;
  color:#ffffff;
  font-weight:600;
  font-size:13px;
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  transition:background .15s ease-in-out, transform .05s ease-in-out;
}
.tg-header-btn:hover{ background:#4A97D1; }
.tg-header-btn:active{ transform:translateY(1px); }
.tg-header-btn__icon{
  width:16px;
  height:16px;
  border-radius:50%;
  background:#ffffff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.tg-header-btn__icon svg{
  width:14px;
  height:14px;
  fill:#54A9EB;
}
.tg-header-btn__text{ white-space:nowrap; }

/* =========================================================
   MOBILE HEADER + DRAWER
   ========================================================= */

/* helpers */
.mobile-only{ display:none !important; }
.desktop-only{ display:revert !important; }

/* бургер */
.burger-btn{
  width:40px;
  height:40px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:box-shadow .15s ease, border-color .15s ease;
}
.burger-btn:hover{
  border-color:rgba(29,221,157,.55);
  box-shadow:0 0 0 2px rgba(29,221,157,.18);
}
.burger-icon{
  width:18px;
  height:14px;
  position:relative;
}
.burger-icon span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#111827;
  border-radius:999px;
  transition:transform .18s ease, opacity .18s ease, top .18s ease;
}
.burger-icon span:nth-child(1){ top:0; }
.burger-icon span:nth-child(2){ top:6px; }
.burger-icon span:nth-child(3){ top:12px; }

.mobile-menu--open .burger-icon span:nth-child(1){ top:6px; transform:rotate(45deg); }
.mobile-menu--open .burger-icon span:nth-child(2){ opacity:0; }
.mobile-menu--open .burger-icon span:nth-child(3){ top:6px; transform:rotate(-45deg); }

/* drawer */
.mobile-drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:80;
}
.mobile-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(360px, 88vw);
  background:#fff;
  border-left:1px solid var(--border);
  box-shadow:-18px 0 40px rgba(15,23,42,.14);
  transform:translateX(102%);
  transition:transform .22s ease;
  z-index:90;
  display:flex;
  flex-direction:column;
}
.mobile-menu--open .mobile-drawer-overlay{
  opacity:1;
  pointer-events:auto;
}
.mobile-menu--open .mobile-drawer{ transform:translateX(0); }

.mobile-drawer__head{
  padding:14px 14px 12px;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* правая часть хедера drawer */
.mobile-drawer__head-tools{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
  min-width:auto;
}

.mobile-drawer__title{
  font-weight:800;
  font-size:16px;
  color:var(--text);
  flex:1 1 auto;
  min-width:0;
}

/* кнопки в хедере drawer: Поддержка/Уведомления */
.mobile-drawer__iconbtn{
  width:40px;
  height:40px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;
  flex:0 0 auto;
}
.mobile-drawer__iconbtn:hover{
  border-color:rgba(29,221,157,.35);
  box-shadow:0 0 0 2px rgba(29,221,157,.12);
}
.mobile-drawer__iconbtn svg{
  width:18px;
  height:18px;
  fill:#111827;
}
.mobile-drawer__iconbtn img{
  width:18px;
  height:18px;
  display:block;
}

/* бейдж (для уведомлений в хедере drawer) */
.mobile-drawer__badge{
  position:absolute;
  top:-5px;
  right:-6px;
  background:#ef4444;
  color:#fff;
  font-size:10px;
  line-height:1;
  padding:2px 5px;
  border-radius:999px;
}

/* кнопка языка в drawer */
.mobile-drawer__lang{
  width:40px;
  height:40px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:16px;
  line-height:1;
}

/* валютный свитч в drawer (кнопка как чип) */
.currency-switch.mobile-only{
  position:relative;
  font-size:12px;
}
.currency-switch.mobile-only .currency-switch__current{
  height:40px;
  padding:0 10px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  color:var(--text);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.currency-switch.mobile-only .currency-switch__symbol{ font-weight:800; }
.currency-switch.mobile-only .currency-switch__code{ font-weight:800; }
.currency-switch.mobile-only .currency-switch__menu{ right:0; }

/* Язык в drawer с таким же стилем как валюта */
.lang-switch--mobile .lang-switch__current{
  height:40px;
  padding:0 10px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  color:var(--text);
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
}

.mobile-drawer__close{
  width:40px;
  height:40px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  cursor:pointer;
}

.mobile-drawer__content{
  padding:12px 14px 18px;
  overflow:auto;
}

.mobile-drawer__section{
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.mobile-drawer__section:last-child{ border-bottom:0; }

.mobile-drawer__section-title{
  font-weight:800;
  font-size:12px;
  color:#9ca3af;
  margin:2px 0 10px;
}

.mobile-drawer__nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-drawer__nav a,
.mobile-drawer__nav-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.mobile-drawer__nav-toggle{
  background:none;
  width:100%;
  text-align:left;
  cursor:pointer;
  position:relative;
}
.mobile-drawer__caret{
  width:12px;
  height:8px;
  margin-left:auto;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
  opacity:0.5;
  transition:transform 0.2s ease;
}
.mobile-drawer__nav-toggle.is-open .mobile-drawer__caret{
  transform:rotate(180deg);
}
.mobile-drawer__submenu{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
  margin-left:30px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile-drawer__submenu.is-open{
  max-height:500px;
  margin-top:6px;
  margin-bottom:4px;
}
.mobile-drawer__submenu a{
  font-size:13px;
  font-weight:500;
  padding:8px 10px;
}
.mobile-drawer__icon{
  width:20px;
  height:20px;
  flex-shrink:0;
  fill:currentColor;
  opacity:0.5;
}
.mobile-drawer__nav a:hover,
.mobile-drawer__nav-toggle:hover{
  border-color:rgba(29,221,157,.35);
  background:rgba(29,221,157,.08);
  color:var(--text);
}
.mobile-drawer__nav a:hover .mobile-drawer__icon,
.mobile-drawer__nav-toggle:hover .mobile-drawer__icon,
.mobile-drawer__nav-toggle:hover .mobile-drawer__caret{
  opacity:1;
}

/* =========================================================
   MOBILE HEADER ACTIONS
   ========================================================= */

.mobile-actions{ display:none; }

.mobile-profile-ico{
  width:40px;
  height:40px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.mobile-profile-ico .avatar-svg{ width:18px; height:18px; }

.notif-bell.mobile-only{ margin:0; }
.notif-bell.mobile-only .notif-bell__count{ top:-5px; right:-8px; }

.pill.mobile-only{
  padding:8px 12px;
  font-size:14px;
  font-weight:800;
  gap:6px;
  border-radius:999px;
  white-space:nowrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px){
  .site-main{ padding:0 12px; }
}

/* MOBILE HEADER LAYOUT */
@media (max-width: 768px){
  .site-header__top{ display:none; }

  .mobile-only{ display:inline-flex !important; }
  .desktop-only{ display:none !important; }

  .site-header__bottom-inner{
    height:56px;
    padding:0 12px;
    gap:10px;
  }

  .bottom-left{
    gap:10px;
    min-width:0;
  }
  .bottom-nav{ display:none; }

  .logo{
    font-size:18px;
    white-space:nowrap;
  }
  .logo__tick{ 
    height:20px;
    width:20px;
  }

  .bottom-right{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
  }

  .mobile-actions{
    display:flex !important;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
  }
  .mobile-actions > *{ flex:0 0 auto; }

  /* на мобилке скрываем любые "язык/валюта" в шапке */
  .bottom-right .top-nav__lang-flag,
  .bottom-right .currency-switch{
    display:none !important;
  }

  /* прячем десктоп-элементы справа */
  .bottom-right .bottom-link,
  .bottom-right .notif-bell.desktop-only,
  .bottom-right .cart-icon.desktop-only,
  .bottom-right .pill.desktop-only,
  .bottom-right .user-short.desktop-only{
    display:none !important;
  }

  .desc{ display:none !important; }

  .pill.pill--green{
    padding:6px 10px !important;
    font-size:12px !important;
    font-weight:700 !important;
    gap:4px !important;
    line-height:1 !important;
  }
  .pill.pill--green .pill__icon{ font-size:12px; }
}

/* ultra narrow */
@media (max-width: 420px){
  .pill.mobile-only{ padding:8px 10px; font-size:13px; }

  .burger-btn,
  .mobile-profile-ico,
  .mobile-drawer__iconbtn,
  .mobile-drawer__lang,
  .lang-switch--mobile .lang-switch__current,
  .currency-switch.mobile-only .currency-switch__current,
  .mobile-drawer__close{
    width:38px;
    height:38px;
  }

  .currency-switch.mobile-only .currency-switch__current{ padding:0 8px; }
  .lang-switch--mobile .lang-switch__current{ padding:0 8px; }
  .currency-switch.mobile-only .currency-switch__code{ display:none; }
}

.lang-switch{ display:flex; gap:8px; align-items:center; }
.lang-switch__btn{
  border:1px solid var(--line,#e5e7eb);
  background:#fff;
  color:var(--text,#111827);
  padding:6px 10px;
  border-radius:10px;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
}
.lang-switch__btn.is-active{
  border-color:var(--accent,#00d86a);
  color:var(--accent,#00d86a);
}

.lang-switch{ position:relative; display:inline-flex; vertical-align:middle; font-size:12px; }
.lang-switch__current{
  display:inline-flex; align-items:center; justify-content:center;
  border:0;
  background:transparent;
  cursor:pointer;
  padding:0;
  color:var(--muted);
  line-height:1;
  vertical-align:middle;
  font-size:12px;
}
.lang-switch__current:hover{ color:var(--text); }
.lang-switch__flag{ font-size:18px; line-height:1; }
.lang-switch__code{ font-weight:500; letter-spacing:.2px; }

.lang-switch__menu{
  position:absolute; top:44px; right:0;
  min-width:120px;
  background:#fff;
  border:1px solid var(--line,#e5e7eb);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.10);
  padding:6px;
  display:none;
  z-index:50;
}
.lang-switch--open .lang-switch__menu{ display:block; }

.lang-switch__form{ display:flex; flex-direction:column; gap:4px; }
.lang-switch__item{
  display:flex; align-items:center; gap:10px;
  width:100%;
  border:0;
  background:transparent;
  padding:10px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  color:var(--text,#111827);
  text-align:left;
}
.lang-switch__item:hover{ background:rgba(0,0,0,.04); }
.lang-switch__label{ font-size:13px; letter-spacing:.2px; }

/* ==== БЕТА ФЛАЖОК ==== */
.beta-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  color: #78350f !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid #f59e0b;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  visibility: visible !important;
  opacity: 1 !important;
  white-space: nowrap;
}

.beta-badge:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.beta-badge:active {
  transform: translateY(0);
}

/* ==== БЕТА-БАННЕР ==== */
.beta-alert {
  background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
  border-bottom: 2px solid #fbbf24;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #78350f;
}

.beta-alert__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beta-alert__content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.beta-alert__text {
  margin: 0;
}

.beta-alert__link {
  color: #b45309;
  text-decoration: none;
  border-bottom: 1px solid #b45309;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.beta-alert__link:hover {
  color: #92400e;
  border-bottom-color: #92400e;
}

.beta-alert__close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.beta-alert__close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .beta-alert {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .beta-alert__content {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .beta-alert__close {
    align-self: flex-end;
    margin-top: -8px;
  }
}

