:root {
  color-scheme: dark;
  --bg: #050506;
  --panel: #111015;
  --panel-2: #17121b;
  --red: #f0042d;
  --red-dark: #4d0717;
  --gold: #ffc21f;
  --text: #fff8ef;
  --muted: #aaa2a8;
  --line: rgba(255, 255, 255, .11);
  --red-line: rgba(240, 4, 45, .38);
  --font-ui: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Arial Black", Inter, "Segoe UI Black", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-ui);
  letter-spacing: 0;
  background:
    radial-gradient(circle at 70% 8%, rgba(240, 4, 45, .16), transparent 30%),
    linear-gradient(180deg, #08080a, #050506 42%, #08070a);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.page-frame {
  width: min(1140px, calc(100% - 26px));
  margin: 0 auto;
  position: relative;
}

.withdraw-toast {
  width: fit-content;
  margin: 14px 0 0;
  min-width: 230px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(12, 12, 16, .92);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 9px;
  color: #eee;
}
.withdraw-toast span { grid-row: span 2; font-size: 22px; }
.withdraw-toast strong { font-size: 13px; }
.withdraw-toast b { color: var(--gold); font-size: 17px; }
.withdraw-toast em { grid-column: 2; color: var(--muted); font-style: normal; font-size: 12px; }

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  border: 1px solid var(--red-line);
  display: block;
  background-image: url("assets/logo.png?v=20260711-2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: clamp(21px, 2.4vw, 25px); line-height: 1; overflow-wrap: anywhere; }
.brand em { color: var(--red); font-style: normal; font-weight: 900; font-size: 13px; letter-spacing: .01em; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}
.top-nav a,
.ghost-button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .01em;
  cursor: pointer;
}
.top-nav a.active,
.top-nav a:hover,
.ghost-button:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(240,4,45,.28);
}

.notification-card {
  width: 100%;
  margin: 18px 0 0;
  padding: 22px;
  border: 1px solid var(--red-line);
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(120deg, rgba(240,4,45,.18), rgba(255,255,255,.04));
}
.notification-card > span {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(240,4,45,.18);
  font-size: 30px;
}
.notification-card strong { display: block; font-size: 24px; }
.notification-card p { margin: 5px 0 0; color: var(--muted); line-height: 1.35; }

.stats-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.stats-row article {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(240,4,45,.18);
  border-radius: 20px;
  background: rgba(10,10,12,.8);
}
.stats-row p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.stats-row strong {
  color: var(--gold);
  font-size: 34px;
}
.stats-row em { color: var(--muted); font-style: normal; margin-left: 6px; }

.section-title {
  margin-top: 42px;
  text-align: center;
}
.section-title h1 {
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.02;
  text-align: center;
  letter-spacing: .01em;
  text-wrap: balance;
}
.section-title h1 span,
.section-title h1 small {
  display: block;
}
.section-title h1 small {
  margin-top: 4px;
  color: var(--text);
  font: inherit;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
}

.premium-card {
  width: min(1440px, calc(100vw - 64px));
  max-width: 100%;
  margin-top: 44px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.premium-link {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  display: grid;
  grid-template-columns: minmax(360px, 56%) minmax(0, 1fr);
  position: relative;
  overflow: hidden;
  background: #101015;
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
  transition: transform .18s ease, border-color .18s ease;
}
.premium-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255,194,31,.42);
}
.premium-media {
  position: relative;
  min-height: 230px;
  height: 100%;
  aspect-ratio: 16 / 9;
  background: #08080a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 18px;
  overflow: hidden;
}
.premium-media img {
  display: none;
}
.premium-bg {
  display: none;
}
.premium-ribbon {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #211400;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 11px;
}
.premium-copy {
  min-height: 230px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 10px 18px;
  align-items: start;
}
.premium-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: .01em;
  overflow-wrap: anywhere;
}
.premium-copy p {
  max-width: 640px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.stars { color: var(--gold); font-size: 15px; font-weight: 900; }
.premium-side {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  justify-items: end;
  gap: 16px;
}
.premium-side strong {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(240,4,45,.24);
}
.bonus-pill {
  display: none;
  grid-column: 1 / -1;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(240,4,45,.28);
  border-radius: 10px;
  align-items: center;
  background: rgba(240,4,45,.08);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 900;
  letter-spacing: .005em;
}

.campaign-slider {
  margin-top: 18px;
  overflow: hidden;
}
.campaign-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.slider-item {
  width: min(790px, 72vw);
  aspect-ratio: 2 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--red-line);
  background: var(--panel);
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-dots {
  margin: 26px 0 42px;
  display: flex;
  justify-content: center;
  gap: 42px;
}
.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.slider-dots span:first-child { width: 34px; border-radius: 999px; background: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.campaign-section h2,
.faq-section h2,
.forum-section h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: .01em;
}
.campaign-list {
  display: grid;
  gap: 22px;
}
.campaign-card {
  border: 1px solid var(--red-line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: 0 0 34px rgba(240,4,45,.14);
}
.campaign-image {
  position: relative;
  aspect-ratio: 2 / 1;
  background: #09090b;
}
.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.campaign-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-width: 80px;
  min-height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #170e00;
  font-weight: 900;
}
.campaign-copy {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: end;
}
.campaign-copy h3 { grid-column: 1 / -1; margin: 0; font-family: var(--font-display); font-size: 22px; letter-spacing: .01em; }
.campaign-copy p { margin: 0; color: var(--muted); }
.campaign-copy small { color: #827b82; }
.campaign-copy b {
  grid-row: 2 / span 2;
  grid-column: 2;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  background: var(--red);
}

.live-box,
.bonus-total,
.faq-section,
.contact-section,
.forum-section {
  margin-top: 54px;
}
.live-box {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  text-align: center;
}
.live-box p { margin: 0 0 8px; color: var(--muted); }
.live-box > strong {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(240,4,45,.14);
  color: var(--red);
  font-weight: 900;
  letter-spacing: .04em;
}
.live-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 280px);
  gap: 16px;
  align-items: stretch;
}
.live-screen {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #0d0d10;
  color: var(--muted);
  font-size: 42px;
  overflow: hidden;
}
.live-placeholder {
  padding: 26px;
}
.live-open-window {
  width: 100%;
  min-height: 360px;
  padding: 34px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(240,4,45,.24), transparent 34%),
    linear-gradient(145deg, #111116, #07070a);
}
.live-open-window:hover .live-play {
  transform: scale(1.06);
  background: var(--red);
}
.live-play {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240,4,45,.78);
  color: white;
  font-size: 34px;
  box-shadow: 0 20px 50px rgba(240,4,45,.28);
  transition: transform .18s ease, background .18s ease;
}
.live-open-window strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}
.live-open-window em {
  color: var(--muted);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}
.live-screen span { display: block; color: var(--text); font-size: 24px; font-weight: 900; }
.live-screen em { display: block; margin-top: 7px; font-style: normal; font-size: 15px; }
.live-chat-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--red-line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: linear-gradient(145deg, rgba(240,4,45,.18), rgba(255,255,255,.035));
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
  transition: transform .18s ease, border-color .18s ease;
}
.live-chat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240,4,45,.7);
}
.live-chat-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}
.live-chat-card strong {
  margin-top: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
}
.live-chat-card em {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.bonus-total {
  padding: 28px;
  border: 1px solid var(--red-line);
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, rgba(240,4,45,.12), rgba(255,255,255,.03));
}
.bonus-total p { margin: 0; color: var(--muted); font-weight: 900; }
.bonus-total strong { display: block; margin: 10px 0; color: var(--gold); font-family: var(--font-display); font-size: clamp(34px, 6vw, 66px); }
.bonus-total span { color: var(--muted); }

.faq-section details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-section summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}
.faq-section p { color: var(--muted); line-height: 1.55; }

.contact-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  background: var(--panel);
}
.contact-section h2 { margin: 8px 0; font-family: var(--font-display); font-size: 34px; letter-spacing: .01em; }
.contact-section p { margin: 0; color: var(--muted); }
.contact-mark {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  align-items: center;
  background: rgba(240,4,45,.14);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-grid a {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  font-weight: 900;
  min-width: 0;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.contact-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
}
.social-card span {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.social-icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}
.social-card strong { align-self: end; }
.contact-grid em { color: var(--muted); font-style: normal; font-weight: 700; }
.contact-grid strong,
.contact-grid em { overflow-wrap: anywhere; min-width: 0; }
.telegram span { background: rgba(38,165,228,.12); }
.instagram span { background: rgba(228,64,95,.12); }
.youtube span { background: rgba(255,0,0,.12); }
.twitter span { background: #050506; border: 1px solid rgba(255,255,255,.18); }

.forum-list {
  display: grid;
  gap: 10px;
}
.forum-list a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.site-footer {
  margin-top: 44px;
  padding: 28px 0 90px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.site-footer strong { color: var(--text); }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }

.sticky-promo {
  width: min(1140px, calc(100% - 26px));
  margin: 24px auto 0;
  padding: 16px;
  border: 1px solid var(--red-line);
  border-radius: 18px;
  display: grid;
  gap: 4px;
  background: rgba(18, 12, 18, .94);
  box-shadow: 0 18px 60px rgba(0,0,0,.44);
}
.sticky-promo strong { color: var(--red); font-size: 12px; }
.sticky-promo span { font-size: 18px; font-weight: 900; }
.sticky-promo em { color: var(--gold); font-style: normal; font-weight: 900; }

.site-popup[hidden] {
  display: none;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}

.site-popup-card {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(560px, 92vw);
  max-height: 82vh;
  border: 1px solid var(--red-line);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}

.site-popup-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.site-popup-media {
  min-height: 0;
  max-height: 82vh;
  background: transparent;
  display: grid;
  place-items: center;
}

.site-popup-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 82vh;
  display: block;
  object-fit: contain;
}

.site-popup-image-link {
  display: block;
}

.primary-button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  background: var(--red);
  color: #fff;
}
.full { width: 100%; }

.admin-page .page-frame { width: min(1240px, calc(100% - 26px)); }
.admin-shell { padding: 34px 0 70px; }
.admin-hero {
  padding: 34px;
  border: 1px solid var(--red-line);
  border-radius: 22px;
  background: var(--panel);
}
.admin-hero h1 { margin: 0; font-size: clamp(42px, 7vw, 82px); }
.admin-hero p { max-width: 820px; color: var(--muted); line-height: 1.5; }
.admin-layout {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-settings-editor {
  grid-column: 1 / -1;
}

.admin-settings-editor .admin-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-card-editor,
.admin-current {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}
.admin-card-editor h2,
.admin-current h2 { margin: 0; font-size: 34px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.admin-fields {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.admin-fields label { display: grid; gap: 7px; color: var(--muted); font-weight: 900; }
.admin-fields .admin-check {
  min-height: 46px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 13px;
  background: #0b0b0e;
  color: var(--text);
}
.admin-check input {
  width: 20px;
  height: 20px;
}
.admin-fields input,
.admin-fields select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 13px;
  background: #0b0b0e;
  color: var(--text);
}
.admin-fields input[type="file"] { padding: 10px; }
.admin-preview {
  min-height: 180px;
  margin-bottom: 14px;
  border: 1px dashed var(--red-line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  background: #0b0b0e;
}
.admin-preview img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; }
.admin-save-message {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--gold);
  font-weight: 900;
}
.admin-current-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}
.admin-current-head > span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(240,4,45,.14);
  color: #ffd4db;
  font-weight: 900;
  font-size: 12px;
}
.admin-list { display: grid; gap: 10px; }
.admin-row-card {
  min-height: 92px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,.035);
}
.admin-row-image {
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--red);
  font-weight: 900;
}
.admin-row-image img { width: 100%; height: 100%; object-fit: cover; }
.admin-row-card strong { display: block; font-size: 18px; }
.admin-row-card p,
.admin-row-card small { display: block; margin: 4px 0 0; color: var(--muted); overflow-wrap: anywhere; }
.admin-row-card button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

.admin-row-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.admin-row-card .edit-button {
  background: rgba(255, 194, 31, .16);
  color: var(--gold);
  border: 1px solid rgba(255, 194, 31, .28);
}

.admin-row-card .delete-button {
  background: #3a1012;
  color: #ffd4d4;
}

.edit-cancel-button {
  margin-top: 10px;
}

@media (max-width: 900px) {
  body { background: #050506; }
  .withdraw-toast { position: static; margin: 10px auto 0; width: min(100%, 360px); }
  .site-header { align-items: center; flex-direction: column; padding: 16px 0; text-align: center; }
  .brand { justify-content: center; width: 100%; }
  .top-nav { justify-content: center; width: 100%; }
  .notification-card { margin-left: 0; }
  .stats-row, .contact-section, .admin-layout, .live-layout { grid-template-columns: 1fr; }
  .admin-settings-editor .admin-fields { grid-template-columns: 1fr; }
  .section-title { margin-top: 34px; }
  .premium-card { width: 100%; margin-left: 0; transform: none; }
  .premium-link { grid-template-columns: 1fr; }
  .premium-media { min-height: 210px; width: 100%; }
  .premium-copy { grid-template-columns: 1fr; }
  .premium-side { grid-column: auto; grid-row: auto; align-self: auto; align-items: stretch; justify-content: start; justify-items: stretch; }
  .premium-side strong { width: 100%; }
  .live-open-window { min-height: 280px; }
  .live-chat-card { min-height: 180px; text-align: center; }
  .campaign-copy { grid-template-columns: 1fr; }
  .campaign-copy b { grid-column: auto; grid-row: auto; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { display: grid; }
}

@media (max-width: 560px) {
  .page-frame { width: calc(100% - 18px); }
  .brand-logo { width: 52px; height: 52px; flex-basis: 52px; }
  .top-nav { gap: 8px; }
  .top-nav a, .ghost-button { min-height: 40px; padding: 0 12px; font-size: 13px; border-radius: 9px; }
  .notification-card { display: grid; }
  .stats-row article { min-height: 96px; }
  .section-title h1 { font-size: clamp(28px, 10vw, 42px); }
  .premium-card { margin-top: 28px; }
  .premium-link { border-radius: 14px; }
  .premium-media { min-height: 172px; padding: 12px; }
  .premium-copy { min-height: 0; padding: 18px; gap: 12px; }
  .premium-copy h3 { font-size: clamp(24px, 8vw, 32px); }
  .premium-side strong { min-height: 48px; }
  .bonus-pill { font-size: 17px; }
  .live-box, .bonus-total, .contact-section { margin-top: 38px; }
  .live-open-window { min-height: 230px; padding: 24px 16px; }
  .live-play { width: 70px; height: 70px; font-size: 28px; }
  .contact-section { padding: 20px; border-radius: 18px; }
  .contact-section h2 { font-size: 30px; }
  .contact-grid a { min-height: 84px; padding: 14px; grid-template-columns: 48px 1fr; }
  .site-footer { padding-bottom: 54px; }
  .slider-item { width: 84vw; }
  .admin-row-card { grid-template-columns: 72px 1fr; }
  .admin-row-actions { grid-column: 1 / -1; justify-content: stretch; }
  .admin-row-actions button { flex: 1; }
}

@media (max-width: 390px) {
  .page-frame { width: calc(100% - 14px); }
  .brand { gap: 9px; }
  .brand strong { font-size: 19px; }
  .brand em { font-size: 12px; }
  .top-nav a, .ghost-button { padding: 0 10px; font-size: 12px; }
  .premium-media { min-height: 150px; }
  .premium-copy { padding: 16px; }
  .contact-grid a { grid-template-columns: 42px 1fr; }
  .social-card span { width: 44px; height: 44px; border-radius: 13px; }
  .social-icon img { width: 28px; height: 28px; }
}
