:root {
  --c-bg: #0e2f2b;
  --c-header: #222723;
  --c-btn-login: #02504b;
  --c-btn-reg: #f9c719;
  --c-btn-reg-text: #1a1a1a;
  --c-text: #e8f0ef;
  --c-text-muted: #a8bfbb;
  --c-gold: #f9c719;
  --c-green-light: #04776f;
  --c-border: #1e4a44;
  --c-card: #122e2a;
  --c-card2: #163530;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
}

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

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-gold); text-decoration: none; transition: color .2s; }
a:hover { color: #ffd84d; }
ul { list-style: none; }

.xb7r2 { display: none; }
.wp-block-cover { position: relative; }
.entry-content { max-width: 100%; }
.wp-block-group { display: block; }
.elementor-widget-container { display: contents; }
.has-text-align-center { text-align: center; }
.is-layout-flex { display: flex; }

.wr-cnt { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hdr-logo { flex-shrink: 0; }
.hdr-logo img { height: 48px; width: auto; border-radius: 6px; }

.hdr-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.hdr-nav a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.hdr-nav a:hover { background: rgba(249,199,25,0.12); color: var(--c-gold); }

.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.hdr-online-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px #2ecc71; }
  50% { box-shadow: 0 0 14px #2ecc71; }
}

.hdr-buttons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }

.btn-login {
  background: var(--c-btn-login);
  color: #fff;
  border: 1px solid #04776f;
}
.btn-reg {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px 16px;
}
.mob-nav.is-open { display: block; }
.mob-nav a {
  display: block;
  color: var(--c-text);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color .2s;
}
.mob-nav a:hover { color: var(--c-gold); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/sultan-hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,47,43,0.92) 0%, rgba(14,47,43,0.55) 60%, rgba(14,47,43,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,199,25,0.15);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--c-gold); }
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--c-text);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-reg {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(249,199,25,0.35);
  animation: hero-glow 2.5s ease-in-out infinite;
}
@keyframes hero-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(249,199,25,0.35); }
  50% { box-shadow: 0 6px 32px rgba(249,199,25,0.65); }
}
.btn-hero-demo {
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-hero-demo:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrap {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--c-text-muted);
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumbs .bc-sep { color: var(--c-border); }
.breadcrumbs .bc-cur { color: var(--c-gold); font-weight: 500; }

/* ===== SECTIONS ===== */
.main-wrap { padding: 0 0 60px; }

.sec-gap { margin: 0 20px 24px; }

.block-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin: 0 20px 24px;
  max-width: calc(1200px - 40px);
  margin-left: auto;
  margin-right: auto;
}

.sec-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--c-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== JACKPOTS ===== */
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.jackpot-item {
  background: linear-gradient(135deg, #1a3d38, #0f2823);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.jackpot-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(249,199,25,0.2); }
.jackpot-item::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(249,199,25,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 10px; }
.jackpot-amount { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--c-gold); font-variant-numeric: tabular-nums; }
.jackpot-currency { font-size: 13px; color: var(--c-text-muted); margin-top: 4px; }

/* ===== WINNERS ===== */
.winners-table-wrap { overflow-x: auto; }
.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.winners-table th {
  background: #0f2823;
  color: var(--c-gold);
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}
.winners-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  text-align: left;
}
.winners-table tr:hover td { background: rgba(249,199,25,0.05); }
.winners-table .rank { color: var(--c-text-muted); font-weight: 700; }
.winners-table .rank-1 { color: #ffd700; }
.winners-table .rank-2 { color: #c0c0c0; }
.winners-table .rank-3 { color: #cd7f32; }
.winners-table .win-amt { font-weight: 700; color: #4cda7a; }

/* ===== WHEEL ===== */
.wheel-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.wheel-container { position: relative; width: 280px; height: 280px; flex-shrink: 0; }
.wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(249,199,25,0.3), 0 0 0 4px var(--c-gold); }
.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 28px solid var(--c-gold);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  z-index: 10;
}
.wheel-spin-btn {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(249,199,25,0.35);
}
.wheel-spin-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(249,199,25,0.5); }
.wheel-spin-btn:disabled { opacity: .6; cursor: not-allowed; }
.wheel-result {
  text-align: center;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wheel-result-win { font-size: 20px; font-weight: 700; color: #4cda7a; animation: fadeInUp .4s ease; }
.wheel-result-lose { font-size: 16px; color: var(--c-text-muted); animation: fadeInUp .4s ease; }
.btn-get-bonus {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  animation: hero-glow 2s infinite;
}

/* ===== CONTENT BLOCK ===== */
.content-block {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  color: var(--c-gold);
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.content-block h1 { font-size: clamp(20px, 3vw, 28px); }
.content-block h2 { font-size: clamp(18px, 2.5vw, 24px); }
.content-block h3 { font-size: clamp(16px, 2vw, 20px); }
.content-block p { margin-bottom: 14px; }
.content-block ul,
.content-block ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: 6px; padding-left: 4px; }
.content-block table {
  width: auto;
  min-width: 60%;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--c-border);
}
.content-block table th,
.content-block table td {
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.content-block table th { background: #0f2823; color: var(--c-gold); font-weight: 600; }
.content-block table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.content-block a { color: var(--c-gold); text-decoration: underline; }
.content-block a:hover { color: #ffd84d; }
.content-block strong, .content-block b { color: #fff; font-weight: 700; }
.content-block em, .content-block i { font-style: italic; color: var(--c-text-muted); }
.content-block blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(249,199,25,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  color: var(--c-text-muted);
}
.content-block img { border-radius: var(--radius-sm); margin: 16px auto; }
.content-block hr { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.review-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-btn-login);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; color: #fff; font-size: 15px; }
.review-date { font-size: 12px; color: var(--c-text-muted); }
.stars { color: #f9c719; font-size: 16px; margin-bottom: 8px; display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: #f9c719; }
.review-text { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }

.review-form-title { font-size: 18px; font-weight: 700; color: var(--c-gold); margin-bottom: 16px; }
.review-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--c-text-muted); margin-bottom: 6px; }
.form-field input,
.form-field textarea {
  width: 100%;
  background: #0a1f1d;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 14px;
  font-family: inherit;
  padding: 11px 14px;
  transition: border-color .2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--c-gold); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-success {
  display: none;
  background: rgba(46,204,113,0.12);
  border: 1px solid #2ecc71;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #4cda7a;
  font-size: 14px;
  font-weight: 500;
  animation: fadeInUp .4s ease;
}
.form-success.show { display: flex; align-items: center; gap: 8px; }

/* ===== AUTHOR ===== */
.author-wrap { display: flex; gap: 24px; flex-wrap: wrap; }
.author-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 200px; }
.author-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.author-role { font-size: 13px; color: var(--c-gold); font-weight: 600; margin-bottom: 12px; }
.author-bio { font-size: 14px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-btn-login);
  border: 1px solid var(--c-btn-login);
  border-radius: 20px;
  padding: 5px 14px;
  transition: background .2s, color .2s;
}
.author-social-link:hover { background: var(--c-btn-login); color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 24px;
  margin-top: 20px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-top { display: flex; gap: 32px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 32px; align-items: flex-start; }
.footer-logo img { height: 44px; border-radius: 6px; }
.footer-nav-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 10px; }
.footer-nav-links { display: flex; flex-direction: column; gap: 6px; }
.footer-nav-links a { font-size: 14px; color: var(--c-text-muted); transition: color .2s; }
.footer-nav-links a:hover { color: var(--c-gold); }
.footer-payments-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pay-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.footer-providers { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.provider-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 20px; }
.footer-legal { font-size: 12px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 8px; }
.footer-copy { font-size: 12px; color: var(--c-text-muted); }

/* ===== STICKY WIDGET ===== */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0e2f2b 0%, #1a3d38 100%);
  border-top: 2px solid var(--c-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.widget-text { font-size: 14px; color: var(--c-text); font-weight: 500; }
.widget-text strong { color: var(--c-gold); font-size: 16px; }
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color .2s;
}
.widget-close:hover { color: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .5s ease both; }

/* ===== UNUSED DECORATORS (for uniqualization) ===== */
.f2k9q { visibility: hidden; position: absolute; height: 0; overflow: hidden; }
.wp-caption { display: inline-block; }
.wp-post-image { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 16px; }
.site-main { display: block; }
.hentry { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .burger-btn { display: flex; }
  .hdr-online { display: none; }
}

@media (max-width: 640px) {
  .block-card { padding: 20px 16px; margin: 0 12px 20px; }
  .jackpot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 40px 16px; }
  .btn-hero-reg, .btn-hero-demo { width: 100%; justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .author-wrap { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
  .footer-top { flex-direction: column; gap: 24px; }
  .sticky-widget { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 400px) {
  .jackpot-grid { grid-template-columns: 1fr; }
  .hdr-logo img { height: 38px; }
}
