/* Wildsino (AU) — crafted dark UI like screenshot */

:root{
  --ws-bg:#0b0b0f;
  --ws-bg2:#101018;
  --ws-panel:#12121b;
  --ws-panel2:#161624;

  --ws-line: rgba(255,255,255,.10);
  --ws-line2: rgba(255,255,255,.06);

  --ws-text:#f2f1ea;
  --ws-muted: rgba(242,241,234,.68);

  --ws-gold:#f3c86b;
  --ws-gold2:#c79a3c;

  --ws-green:#49d36a;
  --ws-green2:#2aa94a;

  --ws-shadow: 0 22px 70px rgba(0,0,0,.62);
  --ws-shadow-sm: 0 14px 42px rgba(0,0,0,.48);

  --ws-radius: 16px;
  --ws-radius-lg: 24px;

  --ws-container: 1240px;

  /* другой “характер” */
  --ws-font: ui-sans-serif, "Trebuchet MS", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  --ws-font-head: ui-sans-serif, "Arial Black", "Impact", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html,body{ height:100%; }
body{
  font-family: var(--ws-font);
  color: var(--ws-text);
  background:
    radial-gradient(900px 560px at 18% -10%, rgba(243,200,107,.12), transparent 62%),
    radial-gradient(900px 560px at 90% 20%, rgba(73,211,106,.07), transparent 62%),
    linear-gradient(180deg, var(--ws-bg) 0%, var(--ws-bg2) 100%);
}

/* subtle grain */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity:.12;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(1px 1px at 28% 66%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(1px 1px at 54% 38%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(1px 1px at 78% 72%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,.10), transparent 60%);
  mix-blend-mode: overlay;
}

.container{
  width: min(var(--ws-container), calc(100% - 40px));
  margin-inline:auto;
}

/* ---------- header (top bar) ---------- */
.ws-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,9,13,.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ws-header__row{
  height: 62px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.ws-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 170px;
}
.custom-logo-link{ display:flex; align-items:center; text-decoration:none; }
.custom-logo{ max-height: 30px; width:auto; height:auto; }

.ws-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.ws-logo__mark{
  width: 26px; height: 26px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), transparent 55%),
    linear-gradient(135deg, rgba(243,200,107,.95), rgba(199,154,60,.92));
  box-shadow: 0 18px 40px rgba(0,0,0,.60);
}
.ws-logo__txt{
  font-family: var(--ws-font-head);
  letter-spacing: .10em;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
}
.ws-logo__txt b{ display:block; letter-spacing:.12em; }
.ws-logo__txt span{ opacity:.78; }

.ws-search{
  flex: 1 1 auto;
  display:flex;
  justify-content:center;
}
.ws-search__box{
  width: min(520px, 100%);
  height: 34px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.ws-search__box svg{ opacity:.78; }
.ws-search__input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(242,241,234,.88);
  font-size: 12px;
}
.ws-search__input::placeholder{ color: rgba(242,241,234,.50); }

.ws-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 240px;
  justify-content:flex-end;
}
.ws-flag{
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow:hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.ws-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.ws-btn:active{ transform: translateY(1px); }

.ws-btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
  color: rgba(242,241,234,.90);
}
.ws-btn--ghost:hover{
  border-color: rgba(243,200,107,.20);
  box-shadow: 0 18px 44px rgba(0,0,0,.40);
}

.ws-btn--green{
  color: #09140b;
  background: linear-gradient(180deg, var(--ws-green) 0%, var(--ws-green2) 100%);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 22px 54px rgba(73,211,106,.12);
}
.ws-btn--green:hover{ box-shadow: 0 28px 70px rgba(73,211,106,.16); }

/* ---------- layout shell ---------- */
.ws-shell{
  padding: 16px 0 34px;
}
.ws-layout{
  display:grid;
  grid-template-columns: 230px 1fr;
  gap: 14px;
}

/* left sidebar */
.ws-side{
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--ws-shadow-sm);
  overflow:hidden;
  position: sticky;
  top: 78px;
  align-self: start;
}

.ws-side__top{
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(243,200,107,.10), transparent 62%),
    rgba(255,255,255,.02);
}

.ws-side__label{
  font-family: var(--ws-font-head);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,241,234,.70);
}

.ws-side__nav{
  padding: 10px;
  display:grid;
  gap: 6px;
}
.ws-side__link{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration:none;
  border: 1px solid transparent;
  color: rgba(242,241,234,.86);
  background: transparent;
  transition: background .16s ease, border-color .16s ease, transform .14s ease;
}
.ws-side__link:hover{
  background: rgba(243,200,107,.06);
  border-color: rgba(243,200,107,.14);
  transform: translateY(-1px);
}
.ws-side__ico{
  width: 28px; height: 28px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(243,200,107,.90);
}

/* ---------- hero ---------- */
.ws-main{ min-width:0; }

.ws-hero{
  border-radius: var(--ws-radius-lg);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--ws-shadow);
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(243,200,107,.14), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  position: relative;
}
.ws-hero__media{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.02);
  opacity: .62;
}
.ws-hero__shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(0,0,0,.20), rgba(0,0,0,.76) 68%),
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.30) 55%, rgba(0,0,0,.70));
}

.ws-hero__inner{
  position: relative;
  padding: 20px 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  min-height: 240px;
  align-items:center;
}
.ws-hero__kicker{
  font-family: var(--ws-font-head);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,241,234,.78);
  margin-bottom: 8px;
}
.ws-hero__title{
  margin:0 0 12px;
  font-family: var(--ws-font-head);
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.02;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.ws-hero__title em{
  font-style: normal;
  color: rgba(243,200,107,.95);
  text-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.ws-hero__text{
  margin:0 0 14px;
  color: rgba(242,241,234,.78);
  line-height: 1.65;
  max-width: 60ch;
}
.ws-hero__actions{ display:flex; gap: 10px; flex-wrap:wrap; align-items:center; }

.ws-hero__cta{
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  overflow:hidden;
}
.ws-hero__cta::after{
  content:"";
  position:absolute;
  inset:-60% -30%;
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.20) 54%, transparent 66%);
  transform: translateX(-34%) rotate(10deg);
  opacity: 0;
}
.ws-hero__cta:hover::after{
  opacity:.95;
  animation: ws-sheen .7s ease forwards;
}
@keyframes ws-sheen{ to{ transform: translateX(10%) rotate(10deg); } }

.ws-hero__right{
  display:flex;
  justify-content:flex-end;
}
.ws-hero__badge{
  width: min(360px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  padding: 12px;
}
.ws-hero__badge h3{
  margin:0 0 6px;
  font-family: var(--ws-font-head);
  letter-spacing:.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242,241,234,.86);
}
.ws-hero__badge p{
  margin:0;
  color: rgba(242,241,234,.70);
  line-height: 1.55;
  font-size: 13px;
}

/* ---------- slots section ---------- */
.ws-sec{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.ws-sec__title{
  display:flex;
  align-items:center;
  gap: 10px;
  margin:0;
  font-family: var(--ws-font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: rgba(242,241,234,.88);
}
.ws-sec__title .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(243,200,107,.92);
  box-shadow: 0 0 0 6px rgba(243,200,107,.10);
}
.ws-sec__link{
  color: rgba(242,241,234,.74);
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
}
.ws-sec__link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ws-slider{
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: var(--ws-shadow-sm);
  padding: 12px;
  position: relative;
  overflow:hidden;
}
.ws-slider::before,
.ws-slider::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 44px;
  pointer-events:none;
  z-index:2;
}
.ws-slider::before{ left:0; background: linear-gradient(90deg, rgba(11,11,15,.95), transparent); }
.ws-slider::after{ right:0; background: linear-gradient(270deg, rgba(11,11,15,.95), transparent); }

.ws-track{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(243,200,107,.30) transparent;
}
.ws-track::-webkit-scrollbar{ height: 7px; }
.ws-track::-webkit-scrollbar-thumb{ background: rgba(243,200,107,.18); border-radius: 999px; }
.ws-track::-webkit-scrollbar-track{ background: transparent; }

.ws-card{
  min-width: 196px;
  max-width: 196px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow:hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 44px rgba(0,0,0,.50);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}
.ws-card:hover{
  transform: translateY(-4px);
  border-color: rgba(243,200,107,.20);
  box-shadow: 0 26px 70px rgba(0,0,0,.62);
  filter: saturate(1.06);
}

/* glossy sweep */
.ws-card::before{
  content:"";
  position:absolute;
  inset:-60% -30%;
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.18) 54%, transparent 66%);
  transform: translateX(-34%) rotate(10deg);
  opacity: 0;
  pointer-events:none;
}
.ws-card:hover::before{
  opacity:.95;
  animation: ws-sheen .7s ease forwards;
}

.ws-card__media{
  display:block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(243,200,107,.10), rgba(255,255,255,.03));
  position: relative;
}
.ws-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.03);
  transition: transform .26s ease, filter .26s ease;
  filter: contrast(1.02) saturate(1.03);
}
.ws-card:hover .ws-card__media img{
  transform: scale(1.10);
  filter: contrast(1.05) saturate(1.10);
}

.ws-card__tag{
  position:absolute;
  left: 10px;
  bottom: 10px;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(242,241,234,.92);
  backdrop-filter: blur(10px);
}

.ws-card__meta{
  padding: 10px 10px 12px;
  display:grid;
  gap: 8px;
}
.ws-card__title{
  margin:0;
  font-size: 13px;
  font-weight: 950;
  color: rgba(242,241,234,.92);
  line-height: 1.25;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: calc(1.25em * 2);
}

.ws-card__btn{
  height: 34px;
  border-radius: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---------- SEO block ---------- */
.ws-seo{ margin-top: 14px; }
.ws-seo__box{
  border-radius: var(--ws-radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(760px 240px at 12% 0%, rgba(243,200,107,.10), transparent 60%),
    rgba(255,255,255,.02);
  box-shadow: var(--ws-shadow-sm);
  padding: 16px;
}
.ws-seo__box :where(h1,h2){ margin: 6px 0 10px; font-size: 22px; }
.ws-seo__box :where(h3){ margin: 16px 0 8px; font-size: 16px; }
.ws-seo__box :where(p){ margin: 0 0 12px; color: rgba(242,241,234,.78); line-height: 1.75; }
.ws-seo__box :where(ul,ol){ margin: 0 0 12px 18px; color: rgba(242,241,234,.78); line-height: 1.75; }
.ws-seo__box :where(a){ color: rgba(243,200,107,.92); text-decoration: underline; text-underline-offset: 2px; }

/* lite page + breadcrumbs */
.ws-lite{ padding: 16px 0 34px; }
.ws-bc{ font-size: 12px; color: rgba(242,241,234,.62); }
.ws-bc a{ color: rgba(243,200,107,.90); text-decoration:none; }
.ws-bc a:hover{ text-decoration: underline; text-underline-offset: 3px; }
.ws-lite__title{ margin: 8px 0 0; font-size: 28px; }

/* footer */
.ws-footer{
  margin-top: 18px;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.ws-footer__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ws-footer__brand{ font-weight: 950; letter-spacing:.04em; }
.ws-footer__muted{ color: rgba(242,241,234,.62); font-size: 12px; margin-top: 4px; }
.ws-footer__right{ display:flex; gap: 10px; flex-wrap: wrap; }
.ws-footer__link{
  color: rgba(242,241,234,.66);
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.ws-footer__link:hover{
  border-color: rgba(243,200,107,.18);
  color: rgba(242,241,234,.86);
}

/* responsive */
@media (max-width: 980px){
  .ws-layout{ grid-template-columns: 1fr; }
  .ws-side{ position: static; }
  .ws-hero__inner{ grid-template-columns: 1fr; }
  .ws-hero__right{ justify-content:flex-start; }
  .ws-search{ display:none; } /* как на скрине — на мобиле проще */
  .ws-actions{ min-width: auto; }
}
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}