@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --clr-header: #053029;
  --clr-footer: #053029;
  --clr-bg: #042522;
  --clr-btn-login: #013D33;
  --clr-btn-reg: #B30AD7;
  --clr-text: #e8f0ee;
  --clr-text-muted: #98b8b2;
  --clr-accent: #B30AD7;
  --clr-gold: #f5c842;
  --clr-border: #0d4a3e;
  --clr-card: #062e27;
  --clr-card-alt: #071f1a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --font-main: 'Open Sans', 'Roboto', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.85; }
ul { list-style: none; }

.x7f2a-wrap { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 20px; }

.b9d1-hidden { display: none !important; }
.wp-block-spacer { display: block; height: 1px; }
.entry-content { position: relative; }
.has-post-thumbnail { overflow: hidden; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--login {
  background: var(--clr-btn-login);
  color: #fff;
  border: 1px solid #1a6b5a;
}
.btn--login:hover { background: #024f42; color: #fff; }

.btn--reg {
  background: var(--clr-btn-reg);
  color: #fff;
  box-shadow: 0 0 12px rgba(179,10,215,0.4);
}
.btn--reg:hover { background: #9608b8; color: #fff; filter: brightness(1.1); }

.btn--bonus {
  background: linear-gradient(135deg, #B30AD7, #7c05a0);
  color: #fff;
  box-shadow: 0 0 16px rgba(179,10,215,0.5);
  font-size: 15px;
  padding: 12px 28px;
}
.btn--bonus:hover { color: #fff; }

.btn--play {
  background: var(--clr-btn-login);
  color: #fff;
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid #1a6b5a;
  width: 100%;
}
.btn--play:hover { background: #024f42; color: #fff; }

.btn--spin {
  background: linear-gradient(135deg, #B30AD7, #7c05a0);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(179,10,215,0.5);
  letter-spacing: 0.05em;
}
.btn--spin:hover { color: #fff; }

.btn--get {
  background: var(--clr-gold);
  color: #042522;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(245,200,66,0.5);
  animation: pulse-gold 1.8s infinite;
}
.btn--get:hover { color: #042522; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(245,200,66,0.5); }
  50% { box-shadow: 0 0 36px rgba(245,200,66,0.9); }
}

/* ── HEADER ── */
.c3e7-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.c3e7-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 0 20px;
  max-width: 1220px;
  margin: 0 auto;
}

.c3e7-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--clr-text);
}
.c3e7-logo img { height: 44px; width: auto; }

.c3e7-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.c3e7-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: blink-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.c3e7-online-count { font-weight: 700; color: #2ecc71; }

.c3e7-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.c3e7-nav a {
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.c3e7-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }

.c3e7-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.c3e7-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: 4px;
}
.c3e7-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.c3e7-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c3e7-burger.open span:nth-child(2) { opacity: 0; }
.c3e7-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.c3e7-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 16px 20px;
  gap: 8px;
}
.c3e7-mobile-menu.open { display: flex; }
.c3e7-mobile-menu a {
  color: var(--clr-text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition), background var(--transition);
}
.c3e7-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ── HERO ── */
.d5b2-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.d5b2-slides { position: relative; width: 100%; }

.d5b2-slide {
  display: none;
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.d5b2-slide.active { display: flex; align-items: center; }

.d5b2-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,37,34,0.92) 0%, rgba(4,37,34,0.55) 60%, rgba(4,37,34,0.15) 100%);
}

.d5b2-slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 48px;
  animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.d5b2-slide-label {
  display: inline-block;
  background: var(--clr-btn-reg);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.d5b2-slide-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.d5b2-slide-title span { color: var(--clr-gold); }

.d5b2-slide-sub {
  font-size: 17px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.d5b2-slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.d5b2-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.d5b2-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.d5b2-dot.active { background: var(--clr-accent); transform: scale(1.3); }

.d5b2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(4,37,34,0.7);
  border: 1px solid var(--clr-border);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
}
.d5b2-arrow:hover { background: var(--clr-btn-reg); }
.d5b2-arrow--prev { left: 16px; }
.d5b2-arrow--next { right: 16px; }

/* ── SECTION GENERIC ── */
.f1a9-section { padding: 60px 0; }
.f1a9-section + .f1a9-section { padding-top: 0; }

.f1a9-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-balance: balance;
}
.f1a9-title span { color: var(--clr-accent); }

.f1a9-subtitle {
  font-size: 16px;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* ── PROS CONS ── */
.e2c4-procon {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.e2c4-col {
  flex: 1;
  min-width: 280px;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.e2c4-col-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.e2c4-col--pros .e2c4-col-title { color: #2ecc71; }
.e2c4-col--cons .e2c4-col-title { color: #e74c3c; }

.e2c4-list { display: flex; flex-direction: column; gap: 12px; }
.e2c4-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.5;
}
.e2c4-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  margin-top: 2px;
}
.e2c4-col--pros .e2c4-item-icon { background: rgba(46,204,113,0.15); color: #2ecc71; }
.e2c4-col--cons .e2c4-item-icon { background: rgba(231,76,60,0.15); color: #e74c3c; }

/* ── WINNERS ── */
.a8f3-winners-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}
.a8f3-winners-wrap { overflow-x: auto; border-radius: var(--radius-md); }

.a8f3-winners-table thead tr {
  background: var(--clr-header);
}
.a8f3-winners-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.a8f3-winners-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  text-align: left;
}
.a8f3-winners-table tbody tr:last-child td { border-bottom: none; }
.a8f3-winners-table tbody tr { transition: background var(--transition); }
.a8f3-winners-table tbody tr:hover { background: rgba(255,255,255,0.04); }

.a8f3-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.a8f3-rank--1 { background: var(--clr-gold); color: #042522; }
.a8f3-rank--2 { background: #adb5bd; color: #042522; }
.a8f3-rank--3 { background: #cd7f32; color: #fff; }
.a8f3-rank--other { background: rgba(255,255,255,0.08); color: var(--clr-text-muted); }

.a8f3-amount { color: var(--clr-gold); font-weight: 700; }

/* ── VIDEO ── */
.v6d1-video-wrap {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}
.v6d1-video-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.v6d1-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── SLOTS ── */
.g9e5-slots-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.g9e5-slot-card {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.g9e5-slot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.6); }

.g9e5-slot-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.g9e5-slot-body { padding: 14px 12px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.g9e5-slot-name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }
.g9e5-slot-provider { font-size: 12px; color: var(--clr-text-muted); }

/* ── SLOT MACHINE ── */
.m2b7-machine {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  padding: 40px 32px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.m2b7-machine-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.m2b7-machine-sub { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 28px; }

.m2b7-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.m2b7-reel {
  width: 90px;
  height: 90px;
  background: var(--clr-card-alt);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}
.m2b7-reel.spinning { animation: reel-spin 0.12s steps(1) infinite; }

@keyframes reel-spin {
  0% { filter: blur(3px) brightness(1.3); }
  50% { filter: blur(1px) brightness(1.1); }
  100% { filter: blur(3px) brightness(1.3); }
}

.m2b7-reel span {
  display: block;
  transition: transform 0.15s;
  line-height: 1;
  user-select: none;
}

.m2b7-win-box {
  display: none;
  background: linear-gradient(135deg, #1a3a2e, #0d2a22);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  margin-bottom: 20px;
  animation: win-glow 2s infinite;
}
.m2b7-win-box.visible { display: block; }
@keyframes win-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(245,200,66,0.3); }
  50% { box-shadow: 0 0 28px rgba(245,200,66,0.7); }
}
.m2b7-win-title { font-size: 24px; font-weight: 800; color: var(--clr-gold); margin-bottom: 8px; }
.m2b7-win-text { font-size: 16px; color: var(--clr-text); }

/* ── CONTENT BLOCK ── */
.k4h6-content {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.k4h6-content h1,
.k4h6-content h2,
.k4h6-content h3,
.k4h6-content h4,
.k4h6-content h5,
.k4h6-content h6 {
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 28px;
  margin-bottom: 14px;
}
.k4h6-content h1 { font-size: clamp(24px, 3vw, 36px); }
.k4h6-content h2 { font-size: clamp(20px, 2.5vw, 28px); }
.k4h6-content h3 { font-size: clamp(17px, 2vw, 22px); }
.k4h6-content h4 { font-size: 18px; }
.k4h6-content h5 { font-size: 16px; }
.k4h6-content h6 { font-size: 14px; }

.k4h6-content p { margin-bottom: 16px; line-height: 1.65; color: var(--clr-text); }
.k4h6-content p:last-child { margin-bottom: 0; }

.k4h6-content a { color: var(--clr-accent); }
.k4h6-content a:hover { text-decoration: underline; }

.k4h6-content strong, .k4h6-content b { font-weight: 700; color: #fff; }
.k4h6-content em, .k4h6-content i { font-style: italic; }

.k4h6-content ul,
.k4h6-content ol {
  margin: 0 0 16px 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.k4h6-content ul { list-style: disc; }
.k4h6-content ol { list-style: decimal; }
.k4h6-content li { line-height: 1.6; color: var(--clr-text); }

.k4h6-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.k4h6-content table th {
  background: var(--clr-header);
  color: var(--clr-text-muted);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--clr-border);
}
.k4h6-content table td {
  padding: 11px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.k4h6-content table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }

.k4h6-content blockquote {
  border-left: 4px solid var(--clr-accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(179,10,215,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.k4h6-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 28px 0;
}

.k4h6-content img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

/* ── AUTHOR ── */
.p3n8-author {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p3n8-author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-border);
}
.p3n8-author-info { flex: 1; min-width: 200px; }
.p3n8-author-name { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.p3n8-author-role { font-size: 13px; color: var(--clr-accent); margin-bottom: 10px; font-weight: 600; }
.p3n8-author-bio { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 14px; }
.p3n8-author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.p3n8-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.p3n8-social-link:hover { opacity: 0.85; transform: translateY(-1px); color: #fff; }
.p3n8-social-link--li { background: rgba(0,119,181,0.15); border-color: rgba(0,119,181,0.3); }

/* ── FOOTER ── */
.q7m5-footer {
  background: var(--clr-footer);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 28px;
  margin-top: 60px;
}
.q7m5-footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: flex-start;
}
.q7m5-footer-logo img { height: 40px; width: auto; }
.q7m5-footer-logo p { font-size: 13px; color: var(--clr-text-muted); margin-top: 10px; max-width: 280px; line-height: 1.6; }

.q7m5-footer-nav { flex: 1; }
.q7m5-footer-nav-title { font-size: 13px; font-weight: 700; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.q7m5-footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.q7m5-footer-nav li a { color: var(--clr-text-muted); font-size: 14px; transition: color var(--transition); }
.q7m5-footer-nav li a:hover { color: #fff; }

.q7m5-footer-logos { display: flex; flex-direction: column; gap: 16px; }
.q7m5-logos-title { font-size: 13px; font-weight: 700; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.q7m5-logos-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.q7m5-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
}

.q7m5-footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.q7m5-copyright { font-size: 13px; color: var(--clr-text-muted); }
.q7m5-legal { font-size: 12px; color: rgba(155,179,172,0.6); line-height: 1.6; }

/* ── WIDGET ── */
.r5k2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #053029 0%, #0a4a3e 50%, #053029 100%);
  border-top: 2px solid var(--clr-btn-reg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.r5k2-widget-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.r5k2-widget-text span { color: var(--clr-gold); }
.r5k2-widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
  transition: color var(--transition);
}
.r5k2-widget-close:hover { color: #fff; }

/* ── MISC ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* ── UNUSED STYLES (layout unikalization) ── */
.wp-block-cover { position: relative; min-height: 430px; }
.elementor-widget-container { position: relative; }
.elementor-section { width: 100%; }
.yoast-seo-metabox { display: none; }
.wp-content-placeholder { background: transparent; }
.elementor-col-50 { width: 50%; float: left; }
.wpcf7-form-control { width: 100%; }
.rtb0-unused { visibility: hidden; pointer-events: none; position: absolute; width: 0; height: 0; }
.rtb1-unused { color: transparent; font-size: 0; }
.pf9x-track { height: 0; overflow: hidden; position: absolute; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .c3e7-nav { display: none; }
  .c3e7-burger { display: flex; }
}

@media (max-width: 768px) {
  .d5b2-slide-content { padding: 40px 24px; }
  .d5b2-slide-sub { font-size: 15px; }
  .e2c4-col { min-width: 100%; }
  .g9e5-slots-grid { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .g9e5-slot-card { min-width: 160px; scroll-snap-align: start; }
  .m2b7-reel { width: 74px; height: 74px; font-size: 38px; }
  .k4h6-content { padding: 24px 18px; }
  .p3n8-author { flex-direction: column; }
  .q7m5-footer-top { flex-direction: column; gap: 24px; }
  .r5k2-widget { flex-direction: column; text-align: center; padding: 14px 48px 14px 20px; }
  .c3e7-header-inner { padding: 0 14px; }
  .x7f2a-wrap { padding: 0 14px; }
  .f1a9-section { padding: 40px 0; }
  .a8f3-winners-wrap { font-size: 13px; }
}

@media (max-width: 480px) {
  .d5b2-slide-actions .btn { font-size: 13px; padding: 10px 18px; }
  .m2b7-machine { padding: 28px 16px; }
  .m2b7-reel { width: 64px; height: 64px; font-size: 32px; }
  .g9e5-slot-card { min-width: 140px; }
}

body { padding-bottom: 72px; }
