:root {
  --c-bg: #282828;
  --c-header: #005541;
  --c-header-dark: #003d2e;
  --c-btn-login: #015442;
  --c-btn-login-hover: #026553;
  --c-btn-reg: #f2eb3a;
  --c-btn-reg-hover: #e0d930;
  --c-btn-reg-text: #1a1a1a;
  --c-text: #e8e8e8;
  --c-text-muted: #a0a0a0;
  --c-text-dark: #1a1a1a;
  --c-border: rgba(255, 255, 255, 0.1);
  --c-card: #1e3a30;
  --c-card-alt: #1f1f1f;
  --c-accent: #f2eb3a;
  --c-green-light: #00aa77;
  --c-red: #e53935;
  --c-gold: #f5c518;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.25s ease;
  --font: Verdana, Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-reg-hover);
}

.x7f2k-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}

.btn-login {
  background: var(--c-btn-login);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-login:hover {
  background: var(--c-btn-login-hover);
  color: #fff;
  box-shadow: 0 0 12px rgba(1, 84, 66, 0.5);
}

.btn-reg {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
}
.btn-reg:hover {
  background: var(--c-btn-reg-hover);
  color: var(--c-btn-reg-text);
  box-shadow: 0 0 18px rgba(242, 235, 58, 0.45);
}

.btn-primary {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-size: 16px;
  padding: 14px 36px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(242, 235, 58, 0.3);
}
.btn-primary:hover {
  background: var(--c-btn-reg-hover);
  color: var(--c-btn-reg-text);
  box-shadow: 0 6px 28px rgba(242, 235, 58, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-accent);
  border: 2px solid var(--c-accent);
  padding: 12px 28px;
}
.btn-outline:hover {
  background: var(--c-accent);
  color: var(--c-btn-reg-text);
}

.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
  text-align: center;
}
.section-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: 40px;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.p9x3-sep {
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  margin: 10px auto 36px;
  border-radius: 2px;
}

#q4r8-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.q4r8-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.q4r8-logo img {
  height: 72px;
  width: auto;
}
.q4r8-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.q4r8-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  text-decoration: none;
}
.q4r8-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.q4r8-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.q4r8-online .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.q4r8-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.q4r8-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.q4r8-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.q4r8-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.q4r8-burger.open span:nth-child(2) {
  opacity: 0;
}
.q4r8-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.q4r8-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-header-dark);
  padding: 16px 20px;
  gap: 6px;
}
.q4r8-mobile-nav.open {
  display: flex;
}
.q4r8-mobile-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.q4r8-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

#r5t9-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-header-dark);
}
.r5t9-bg {
  position: absolute;
  inset: 0;
  background: url("/365ban.webp") center/cover no-repeat;
  filter: brightness(0.35);
  transform: scale(1.03);
  transition: transform 8s ease;
}
#r5t9-hero:hover .r5t9-bg {
  transform: scale(1.06);
}
.r5t9-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 700px;
}
.r5t9-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 235, 58, 0.15);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.r5t9-h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.r5t9-h1 span {
  color: var(--c-accent);
}
.r5t9-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 560px;
}
.r5t9-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.r5t9-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 85, 65, 0.6);
  border: 1px solid rgba(242, 235, 58, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  width: fit-content;
}
.r5t9-bonus-badge strong {
  color: var(--c-accent);
}

#k2m7-proscons {
  padding: 70px 0;
}
.k2m7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.k2m7-col {
  background: var(--c-card-alt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}
.k2m7-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid;
}
.k2m7-col-head.pros {
  border-color: var(--c-green-light);
  color: var(--c-green-light);
}
.k2m7-col-head.cons {
  border-color: var(--c-red);
  color: var(--c-red);
}
.k2m7-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.k2m7-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}
.k2m7-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.k2m7-icon.pro {
  background: rgba(0, 170, 119, 0.2);
  color: var(--c-green-light);
}
.k2m7-icon.con {
  background: rgba(229, 57, 53, 0.2);
  color: var(--c-red);
}

#j9p1-jackpots {
  padding: 60px 0;
  background: linear-gradient(135deg, #0d2e23 0%, #0a1f17 100%);
  overflow: hidden;
}
.j9p1-track {
  display: flex;
  gap: 20px;
  animation: j9p1-scroll 28s linear infinite;
  width: max-content;
  padding: 10px 0;
}
.j9p1-track:hover {
  animation-play-state: paused;
}
@keyframes j9p1-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.j9p1-card {
  min-width: 220px;
  background: var(--c-card);
  border: 1px solid rgba(0, 170, 119, 0.25);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.j9p1-game {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.j9p1-amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--c-accent);
  text-shadow: 0 0 16px rgba(242, 235, 58, 0.3);
  font-variant-numeric: tabular-nums;
}
.j9p1-label {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#s3w6-screens {
  padding: 70px 0;
}
.s3w6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s3w6-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  background: var(--c-card-alt);
}
.s3w6-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}
.s3w6-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.s3w6-caption {
  background: var(--c-card-alt);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--c-text);
  font-weight: 600;
  text-align: center;
}
.s3w6-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 235, 58, 0.1);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  pointer-events: none;
}
.s3w6-item:hover .s3w6-overlay {
  opacity: 1;
}

#b4n2-bonuses {
  padding: 70px 0;
  background: #1a2820;
}
.b4n2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.b4n2-card {
  background: var(--c-card-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.b4n2-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-header), var(--c-accent));
}
.b4n2-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 235, 58, 0.3);
}
.b4n2-icon {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1;
}
.b4n2-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 12px;
}
.b4n2-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-accent);
  margin: 16px 0 12px;
}
.b4n2-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.b4n2-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.b4n2-badge {
  display: inline-block;
  background: rgba(0, 85, 65, 0.4);
  border: 1px solid rgba(242, 235, 58, 0.25);
  color: var(--c-accent);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.b4n2-best {
  position: absolute;
  top: 16px;
  right: -24px;
  background: var(--c-accent);
  color: var(--c-btn-reg-text);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#g6l3-slot {
  padding: 70px 0;
}
.g6l3-machine {
  max-width: 480px;
  margin: 0 auto 0;
  background: linear-gradient(145deg, #1a2a23, #0d1f18);
  border: 2px solid rgba(242, 235, 58, 0.25);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
}
.g6l3-title-inner {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.g6l3-reels {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.g6l3-reel {
  width: 80px;
  height: 80px;
  background: #0a1a13;
  border: 2px solid rgba(242, 235, 58, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}
.g6l3-reel.spin {
  animation: g6l3-spin 0.12s linear infinite;
  border-color: var(--c-accent);
}
@keyframes g6l3-spin {
  0% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
.g6l3-btn-spin {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(242, 235, 58, 0.3);
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.g6l3-btn-spin:hover {
  background: var(--c-btn-reg-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(242, 235, 58, 0.5);
}
.g6l3-btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.g6l3-result {
  margin-top: 22px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.g6l3-win {
  background: rgba(0, 170, 119, 0.15);
  border: 1px solid var(--c-green-light);
  border-radius: var(--radius);
  padding: 14px 22px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.g6l3-win strong {
  color: var(--c-accent);
}
.g6l3-lose {
  color: var(--c-text-muted);
  font-size: 14px;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.g6l3-spins {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 8px;
}
.g6l3-lines {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.g6l3-line {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background var(--transition);
}
.g6l3-line.active {
  background: var(--c-accent);
  box-shadow: 0 0 8px var(--c-accent);
}

#c8v5-review {
  padding: 70px 0;
  background: #1c2822;
}
.c8v5-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.c8v5-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--c-card-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.c8v5-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-accent);
}
.c8v5-author-name {
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 2px;
  font-size: 16px;
}
.c8v5-author-role {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.c8v5-author-link {
  font-size: 12px;
  color: var(--c-accent);
  transition: opacity var(--transition);
}
.c8v5-author-link:hover {
  opacity: 0.8;
}
.c8v5-content {
  color: var(--c-text);
  line-height: 1.75;
}
.c8v5-content h1,
.c8v5-content h2,
.c8v5-content h3 {
  color: #fff;
  margin: 28px 0 12px;
  font-weight: 700;
}
.c8v5-content h1 {
  font-size: clamp(22px, 3vw, 30px);
}
.c8v5-content h2 {
  font-size: clamp(19px, 2.5vw, 26px);
}
.c8v5-content h3 {
  font-size: clamp(17px, 2vw, 21px);
}
.c8v5-content p {
  margin-bottom: 16px;
}
.c8v5-content ul,
.c8v5-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.c8v5-content li {
  margin-bottom: 7px;
}
.c8v5-content a {
  color: var(--c-accent);
  text-decoration: underline;
}
.c8v5-content strong {
  color: #fff;
}
.c8v5-placeholder {
  background: var(--c-card-alt);
  border: 2px dashed var(--c-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 15px;
}

#r1e4-reviews {
  padding: 70px 0;
  background: var(--c-bg);
}
.r1e4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.r1e4-card {
  background: var(--c-card-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.r1e4-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 235, 58, 0.2);
}
.r1e4-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.r1e4-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}
.r1e4-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.r1e4-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
}
.r1e4-meta {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.r1e4-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.r1e4-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}
.r1e4-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.r1e4-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
.r1e4-form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 22px;
  text-align: center;
}
.r1e4-form {
  background: var(--c-card-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.r1e4-form .f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.r1e4-form label {
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 600;
}
.r1e4-form input,
.r1e4-form textarea {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-text);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.r1e4-form input:focus,
.r1e4-form textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(242, 235, 58, 0.1);
}
.r1e4-form textarea {
  min-height: 120px;
  resize: vertical;
}
.r1e4-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.r1e4-form .btn-primary {
  width: 100%;
  justify-content: center;
}
.r1e4-success {
  display: none;
  background: rgba(0, 170, 119, 0.15);
  border: 1px solid var(--c-green-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--c-text);
  text-align: center;
  font-size: 14px;
  margin-top: 14px;
  animation: fadeIn 0.4s ease;
}
.r1e4-success.show {
  display: block;
}

#f2o8-footer {
  background: var(--c-header);
  padding-top: 50px;
}
.f2o8-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 40px;
}
.f2o8-brand img {
  height: 48px;
  margin-bottom: 14px;
}
.f2o8-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.f2o8-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.f2o8-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f2o8-nav-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--transition);
}
.f2o8-nav-list a:hover {
  color: var(--c-accent);
}
.f2o8-payments {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.f2o8-pay-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-right: 6px;
}
.f2o8-pay-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.3px;
}
.f2o8-providers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.f2o8-prov-badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.f2o8-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
}
.f2o8-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}
.f2o8-legal {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  line-height: 1.6;
  max-width: 900px;
  margin: 8px auto 0;
}
.f2o8-licenses {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.f2o8-lic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

#w7z0-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--c-header-dark) 0%, #004436 100%);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#w7z0-widget.show {
  transform: translateY(0);
}
.w7z0-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}
.w7z0-text strong {
  color: var(--c-accent);
}
.w7z0-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.w7z0-close:hover {
  color: rgba(255, 255, 255, 0.8);
}

#m2x9-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#m2x9-lb.open {
  display: flex;
}
#m2x9-lb img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
#m2x9-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
#m2x9-lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 1024px) {
  .k2m7-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .b4n2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s3w6-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r1e4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .f2o8-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .q4r8-inner {
    grid-template-columns: auto 1fr auto;
    padding: 10px 16px;
  }
  .q4r8-logo img {
    height: 60px;
  }
  .q4r8-nav {
    display: none;
  }
  .q4r8-burger {
    display: flex;
  }
  .q4r8-online {
    display: none;
  }
  
  .s3w6-grid,
  .b4n2-grid,
  .r1e4-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .s3w6-item img {
    height: 200px;
  }
  
  .f2o8-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .r1e4-form-row {
    grid-template-columns: 1fr;
  }
  
  .r5t9-content {
    padding: 60px 20px;
  }
  
  .r5t9-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .r5t9-actions .btn {
    width: 100%;
  }
  
  #w7z0-widget {
    flex-direction: column;
    gap: 10px;
    padding: 12px 40px 12px 16px;
  }
  
  .w7z0-text {
    font-size: 13px;
    text-align: center;
  }
  
  .g6l3-machine {
    padding: 24px 16px;
  }
  
  .g6l3-reel {
    width: 70px;
    height: 70px;
    font-size: 34px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-sub {
    font-size: 14px;
  }
  
  .r5t9-h1 {
    font-size: 26px;
  }
  
  .r5t9-sub {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .q4r8-inner {
    gap: 8px;
  }
  
  .q4r8-btns .btn-login {
    display: none;
  }
  
  .g6l3-reel {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }
  
  .j9p1-card {
    min-width: 180px;
  }
}
