:root {
  --wr-bg: #1a0a03;
  --wr-bg-2: #22100a;
  --wr-panel: #2a140b;
  --wr-panel-2: #331a0e;
  --wr-header: #371d10;
  --wr-red: #680f09;
  --wr-red-2: #7d1710;
  --wr-green: #25690e;
  --wr-green-2: #2f8213;
  --wr-gold: #d9a441;
  --wr-gold-2: #f0c96b;
  --wr-text: #f3e7d6;
  --wr-muted: #c9b39a;
  --wr-line: #4a2c18;
  --wr-radius: 14px;
  --wr-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --wr-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--wr-bg);
  color: var(--wr-text);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

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

a {
  color: var(--wr-gold-2);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--wr-gold);
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  color: var(--wr-gold-2);
  text-wrap: balance;
  margin: 0 0 0.6em;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

.wrapper {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
}

.text,
.o8xkq {
  min-width: 0;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: var(--wr-max);
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  margin: 18px 0;
}

.o8xkq {
  border-radius: var(--wr-radius);
  padding: clamp(18px, 3vw, 34px);
  margin: 18px 0;
  background: linear-gradient(180deg, var(--wr-panel) 0%, var(--wr-bg-2) 100%);
  border: 1px solid var(--wr-line);
  box-shadow: var(--wr-shadow);
}

.p3vzc {
  color: var(--wr-gold-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--wr-gold);
  border-radius: 999px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  text-align: center;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
  line-height: 1.1;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}

.btn--md {
  padding: 12px 22px;
  font-size: 0.95rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn--green {
  background: linear-gradient(180deg, var(--wr-green-2), var(--wr-green));
  color: #f4ffe9;
}

.btn--red {
  background: linear-gradient(180deg, var(--wr-red-2), var(--wr-red));
  color: #ffeceb;
}

.btn--gold {
  background: linear-gradient(180deg, var(--wr-gold-2), var(--wr-gold));
  color: #2a140b;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--wr-gold);
  color: var(--wr-gold-2);
}

.btn--full {
  width: 100%;
}

.wr-header {
  background: var(--wr-header);
  border-bottom: 2px solid var(--wr-gold);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.zq14m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.wr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wr-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--wr-text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.wr-nav a:hover {
  background: rgba(217, 164, 65, 0.16);
  color: var(--wr-gold-2);
}

.wr-nav svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wr-nav-cta {
  display: none;
}

.hb1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wr-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--wr-muted);
  padding: 6px 12px;
  border: 1px solid var(--wr-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.wr-online .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade4a;
  box-shadow: 0 0 0 0 rgba(74, 222, 74, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 74, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 74, 0);
  }
}

.wr-online strong {
  color: var(--wr-gold-2);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--wr-gold);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--wr-gold-2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.wr-hero {
  position: relative;
  border-radius: var(--wr-radius);
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid var(--wr-line);
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: var(--wr-shadow);
}

.wr-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.wr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(26, 10, 3, 0.92) 0%, rgba(26, 10, 3, 0.6) 55%, rgba(26, 10, 3, 0.3) 100%);
}

.wr-hero-inner {
  position: relative;
  z-index: 3;
  padding: clamp(24px, 5vw, 60px);
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wr-hero-inner h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.wr-hero-inner p {
  color: var(--wr-text);
  font-size: 1.05rem;
}

.wr-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.wr-hero-badges span {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--wr-gold);
  color: var(--wr-gold-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.wr-crumbs {
  font-size: 0.82rem;
  color: var(--wr-muted);
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.wr-crumbs a {
  color: var(--wr-gold-2);
}

.wr-crumbs .sep {
  opacity: 0.5;
}

.wr-toc {
  background: linear-gradient(180deg, var(--wr-panel-2), var(--wr-panel));
}

.wr-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  counter-reset: toc;
}

.wr-toc li {
  counter-increment: toc;
}

.wr-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--wr-line);
  border-radius: 10px;
  color: var(--wr-text);
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.wr-toc a:hover {
  transform: translateX(4px);
  border-color: var(--wr-gold);
  color: var(--wr-gold-2);
}

.wr-toc svg {
  width: 20px;
  height: 20px;
  color: var(--wr-gold);
  flex-shrink: 0;
}

.wr-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  max-width: 100%;
}

.text .wr-table-scroll {
  margin: 1.2em 0;
}

.text .wr-table-scroll table {
  margin: 0;
  min-width: 520px;
}

table.wr-info {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 480px;
  text-align: left;
}

table.wr-info th,
table.wr-info td {
  padding: 12px 16px;
  border: 1px solid var(--wr-line);
  vertical-align: middle;
}

table.wr-info th {
  width: 42%;
  background: rgba(0, 0, 0, 0.28);
  color: var(--wr-gold-2);
  font-weight: 700;
}

table.wr-info td {
  color: var(--wr-text);
}

table.wr-info tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.wr-info .ic {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wr-info svg {
  width: 18px;
  height: 18px;
  color: var(--wr-gold);
  flex-shrink: 0;
}

.wr-grid-adv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.wr-tile {
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--wr-panel-2), var(--wr-bg-2));
  border: 1px solid var(--wr-line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.wr-tile:hover {
  transform: translateY(-5px);
  border-color: var(--wr-gold);
}

.wr-tile .ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid var(--wr-gold);
  margin-bottom: 14px;
}

.wr-tile svg {
  width: 26px;
  height: 26px;
  color: var(--wr-gold-2);
}

.wr-tile h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.wr-tile p {
  margin: 0;
  color: var(--wr-muted);
  font-size: 0.95rem;
}

.wr-pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wr-pc-col {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--wr-line);
}

.wr-pc-col.pros {
  background: linear-gradient(180deg, rgba(37, 105, 14, 0.22), rgba(37, 105, 14, 0.06));
  border-color: var(--wr-green-2);
}

.wr-pc-col.cons {
  background: linear-gradient(180deg, rgba(104, 15, 9, 0.22), rgba(104, 15, 9, 0.06));
  border-color: var(--wr-red-2);
}

.wr-pc-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wr-pc-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wr-pc-col li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--wr-line);
  font-size: 0.95rem;
}

.wr-pc-col li:last-child {
  border-bottom: none;
}

.wr-pc-col svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pros svg {
  color: #6fdc4a;
}

.cons svg {
  color: #f07a72;
}

.wr-jackpot {
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.22), transparent 60%),
    linear-gradient(180deg, var(--wr-panel-2), var(--wr-bg-2));
  border: 1px solid var(--wr-gold);
}

.wr-jackpot .amount {
  font-size: clamp(2.2rem, 7vw, 4rem);
  color: var(--wr-gold-2);
  letter-spacing: 0.03em;
  text-shadow: 0 0 24px rgba(217, 164, 65, 0.45);
  margin: 10px 0;
}

.wr-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wr-bonus-card {
  border-radius: 12px;
  padding: 22px;
  background: linear-gradient(180deg, var(--wr-panel-2), var(--wr-bg-2));
  border: 1px solid var(--wr-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.wr-bonus-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.25), transparent 70%);
}

.wr-bonus-card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--wr-red);
  color: #ffeceb;
  letter-spacing: 0.08em;
}

.wr-bonus-card h3 {
  margin: 4px 0;
  font-size: 1.3rem;
}

.wr-bonus-card p {
  color: var(--wr-muted);
  font-size: 0.92rem;
  margin: 0;
  flex-grow: 1;
}

.wr-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wr-slot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--wr-line);
  background: var(--wr-bg-2);
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.wr-slot:hover {
  transform: translateY(-5px);
  border-color: var(--wr-gold);
}

.wr-slot-thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--wr-gold-2);
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--wr-panel-2), var(--wr-red));
  border-bottom: 1px solid var(--wr-line);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.wr-slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wr-slot-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wr-slot-body .prov {
  font-size: 0.78rem;
  color: var(--wr-muted);
}

.wr-demo {
  text-align: center;
}

.wr-demo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 16px auto 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--wr-gold);
  background: #000;
}

.wr-demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wr-security {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.wr-sec-item {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--wr-line);
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.wr-sec-item svg {
  width: 30px;
  height: 30px;
  color: var(--wr-green-2);
  flex-shrink: 0;
}

.wr-sec-item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.wr-sec-item p {
  margin: 0;
  color: var(--wr-muted);
  font-size: 0.9rem;
}

.wr-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.wr-review {
  border-radius: 12px;
  padding: 20px;
  background: linear-gradient(180deg, var(--wr-panel-2), var(--wr-bg-2));
  border: 1px solid var(--wr-line);
}

.wr-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.wr-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2a140b;
  background: linear-gradient(135deg, var(--wr-gold-2), var(--wr-gold));
  flex-shrink: 0;
}

.wr-review-head strong {
  color: var(--wr-text);
  display: block;
}

.wr-stars {
  display: inline-flex;
  gap: 2px;
}

.wr-stars svg {
  width: 15px;
  height: 15px;
  color: var(--wr-gold-2);
}

.wr-review p {
  margin: 0;
  color: var(--wr-muted);
  font-size: 0.92rem;
}

.wr-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 22px auto 0;
}

.wr-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--wr-gold-2);
}

.wr-form input,
.wr-form textarea {
  font-family: inherit;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--wr-line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--wr-text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wr-form input:focus,
.wr-form textarea:focus {
  outline: none;
  border-color: var(--wr-gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.18);
}

.wr-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wr-form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(37, 105, 14, 0.25);
  border: 1px solid var(--wr-green-2);
  color: #d8ffc4;
  font-size: 0.9rem;
}

.wr-form-msg.show {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.wr-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.wr-author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #2a140b;
  background: linear-gradient(135deg, var(--wr-gold-2), var(--wr-gold));
  border: 2px solid var(--wr-gold);
  overflow: hidden;
}

.wr-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  margin: 0;
}

.wr-author-body {
  flex: 1;
  min-width: 240px;
}

.wr-author-body h3 {
  margin: 0 0 2px;
}

.wr-author-role {
  color: var(--wr-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.wr-author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.wr-author-links a {
  font-size: 0.82rem;
  padding: 6px 12px;
  border: 1px solid var(--wr-line);
  border-radius: 8px;
}

.wr-author-date {
  font-size: 0.8rem;
  color: var(--wr-muted);
  margin-top: 12px;
}

.wr-faq details {
  border: 1px solid var(--wr-line);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.wr-faq summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 700;
  color: var(--wr-gold-2);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.wr-faq summary::-webkit-details-marker {
  display: none;
}

.wr-faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--wr-gold);
}

.wr-faq details[open] summary::after {
  content: "\2212";
}

.wr-faq .ans {
  padding: 0 18px 16px;
  color: var(--wr-muted);
  font-size: 0.95rem;
}

.text > h1 {
  margin-top: 10px;
}

.text h2 {
  margin-top: 1.4em;
}

.text ul,
.text ol {
  padding-left: 1.3em;
  margin: 0 0 1.2em;
}

.text li {
  margin-bottom: 0.5em;
}

.text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
}

.text table th,
.text table td {
  border: 1px solid var(--wr-line);
  padding: 10px 14px;
  text-align: left;
}

.text table th {
  background: rgba(0, 0, 0, 0.28);
  color: var(--wr-gold-2);
}

.text blockquote {
  margin: 1.2em 0;
  padding: 12px 18px;
  border-left: 4px solid var(--wr-gold);
  background: rgba(0, 0, 0, 0.22);
  color: var(--wr-muted);
  border-radius: 0 10px 10px 0;
}

.text a {
  color: var(--wr-gold-2);
  text-decoration: underline;
}

.text img {
  border-radius: 10px;
  margin: 1em 0;
}

.wr-footer {
  background: var(--wr-header);
  border-top: 2px solid var(--wr-gold);
  margin-top: 24px;
  padding: 34px 0 20px;
}

.wr-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.wr-footer h4 {
  color: var(--wr-gold-2);
  font-size: 1rem;
  margin: 0 0 12px;
}

.wr-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wr-footer li {
  margin-bottom: 8px;
}

.wr-footer a {
  color: var(--wr-text);
  font-size: 0.9rem;
}

.wr-footer a:hover {
  color: var(--wr-gold-2);
}

.wr-foot-logo img {
  height: 48px;
  margin-bottom: 12px;
}

.wr-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--wr-muted);
  margin-bottom: 12px;
}

.wr-flag svg {
  width: 26px;
  height: auto;
  border-radius: 3px;
}

.wr-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 6px 0 14px;
}

.wr-badge {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1px solid var(--wr-line);
  border-radius: 8px;
  color: var(--wr-muted);
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
}

.wr-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wr-providers span {
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--wr-line);
  color: var(--wr-muted);
}

.wr-copyright {
  border-top: 1px solid var(--wr-line);
  margin-top: 22px;
  padding-top: 16px;
  font-size: 0.78rem;
  color: var(--wr-muted);
  text-align: center;
}

.wr-copyright p {
  margin: 0 0 6px;
}

.wr-widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: linear-gradient(180deg, var(--wr-header), #2a140b);
  border-top: 2px solid var(--wr-gold);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.wr-widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  max-width: var(--wr-max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.wr-widget-text {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wr-widget-text .gift {
  font-size: 1.6rem;
}

.wr-widget-text strong {
  color: var(--wr-gold-2);
  display: block;
  font-size: 1rem;
}

.wr-widget-text span {
  color: var(--wr-text);
  font-size: 0.82rem;
}

.wr-widget-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wr-widget a.reflink {
  text-decoration: none !important;
}

.wr-widget-close {
  background: transparent;
  border: 1px solid var(--wr-line);
  color: var(--wr-muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.wr-hidden {
  transform: translateY(120%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.wr-legacy-widget,
.wp-embed-share-dialog,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .wr-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wr-pc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .wr-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--wr-header);
    flex-direction: column;
    align-items: stretch;
    padding: 84px 20px 30px;
    gap: 4px;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    max-width: 100vw;
    z-index: 70;
    border-left: 2px solid var(--wr-gold);
    overflow-y: auto;
  }
  .wr-nav.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s ease, visibility 0s;
  }
  .wr-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--wr-line);
    font-size: 1rem;
  }
  .burger {
    display: flex;
    order: 3;
  }
  .wr-online {
    display: none;
  }
  .zq14m {
    flex-wrap: nowrap;
  }
  .hb1 .btn {
    display: none;
  }
  .wr-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--wr-line);
  }
  .wr-nav-cta a {
    padding: 13px 12px;
    border-bottom: 0;
    text-align: center;
  }
  .wr-slider,
  .wr-slots {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 10px;
  }
  .wr-slider > *,
  .wr-slots > * {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .wr-footer-grid {
    grid-template-columns: 1fr;
  }
  .wr-widget-text span {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .logo img {
    height: 40px;
  }
  .wr-hero {
    min-height: 340px;
  }
  .wr-author {
    flex-direction: column;
  }
}
