@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --c-bg: #1b0d02;
  --c-header: #0e0700;
  --c-footer: #0e0700;
  --c-card: #27160a;
  --c-card2: #1f1005;
  --c-card3: #2e1b0c;
  --c-orange: #f7941d;
  --c-orange-dark: #d9800f;
  --c-orange-light: #ffa940;
  --c-red: #d42b2b;
  --c-red-dark: #b32020;
  --c-gold: #ffd200;
  --c-gold-dark: #c9a800;
  --c-green: #2ecc71;
  --c-text: #f0e6d3;
  --c-text2: #d4c4a8;
  --c-muted: #8a7060;
  --c-border: #3d2512;
  --c-border2: #5a3820;
  --font-h: 'Fredoka One', cursive;
  --font-b: 'Nunito', sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --glow-o: 0 0 18px rgba(247, 148, 29, 0.4);
  --glow-r: 0 0 18px rgba(212, 43, 43, 0.4);
  --transition: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--c-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--c-orange-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-h);
  line-height: 1.2;
}

p {
  margin-bottom: 0.75rem;
}

.hf-wrap-x92k {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.hf-wrap-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.hf-row-b3j7 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hf-tag-p4q1 {
  display: inline-block;
  background: var(--c-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ========== BUTTONS ========== */
.btn-hf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  padding: 9px 18px;
  line-height: 1;
}

.btn-hf--orange {
  background: var(--c-orange);
  color: #fff;
  box-shadow: var(--glow-o);
}

.btn-hf--orange:hover {
  background: var(--c-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 148, 29, 0.55);
}

.btn-hf--red {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--glow-r);
}

.btn-hf--red:hover {
  background: var(--c-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 43, 43, 0.55);
}

.btn-hf--gold {
  background: var(--c-gold);
  color: #1b0d02;
  font-weight: 800;
}

.btn-hf--gold:hover {
  background: var(--c-gold-dark);
  color: #1b0d02;
  transform: translateY(-2px);
}

.btn-hf--outline {
  background: transparent;
  color: var(--c-orange);
  border: 2px solid var(--c-orange);
}

.btn-hf--outline:hover {
  background: var(--c-orange);
  color: #fff;
}

.btn-hf--lg {
  font-size: 17px;
  padding: 14px 32px;
  border-radius: var(--r-md);
}

.btn-hf--sm {
  font-size: 13px;
  padding: 7px 14px;
}

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

.btn-hf--pulse {
  animation: hfPulse 2s infinite;
}

@keyframes hfPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 43, 43, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(212, 43, 43, 0); }
}

/* ========== HEADER ========== */
.hf-header-b7m3 {
  background: var(--c-header);
  border-bottom: 2px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hf-header-b7m3 .hf-wrap-x92k {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.hf-logo-v3n8 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hf-logo-v3n8 img {
  height: 66px;
  width: auto;
}

.hf-logo-v3n8 .hf-logo-text {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--c-orange);
  white-space: nowrap;
  display: none;
}

.hf-nav-q7r3 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hf-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.hf-nav-list a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-text2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}

.hf-nav-list a:hover {
  color: var(--c-orange);
  background: rgba(247, 148, 29, 0.1);
}

.hf-nav-list a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

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

.hf-online-w5p2 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-muted);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid var(--c-border);
}

.hf-online-w5p2 .hf-dot {
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hf-burger-c9d2 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}

.hf-burger-c9d2 span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.hf-mobile-nav {
  display: none;
  background: #110900;
  border-top: 1px solid var(--c-border);
  padding: 16px;
}

.hf-mobile-nav.open {
  display: block;
  animation: fadeDown 0.22s ease;
}

.hf-mobile-nav .hf-nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 14px;
}

.hf-mobile-nav .hf-nav-list a {
  font-size: 15px;
  padding: 10px 12px;
  width: 100%;
}

.hf-mobile-nav .hf-mob-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hf-mobile-nav .hf-mob-btns .btn-hf {
  flex: 1;
  min-width: 120px;
}

.hf-hero-r4p2 {
  position: relative;
  background-image: url('/hot-fruits-hero-img.webp');
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hf-hero-r4p2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 7, 0, 0.9) 40%, rgba(14, 7, 0, 0.4));
  z-index: 1;
}

.hf-hero-r4p2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--c-bg));
  z-index: 2;
}

.hf-hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 60px 16px 80px;
  margin: 0 auto 0 calc((100% - 1280px) / 2 + 16px);
}

.hf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 148, 29, 0.2);
  border: 1px solid rgba(247, 148, 29, 0.4);
  color: var(--c-orange);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hf-hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(30px, 5vw, 52px);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hf-hero-h1 span {
  color: var(--c-orange);
}

.hf-hero-sub {
  font-size: 17px;
  color: var(--c-text2);
  margin-bottom: 28px;
  max-width: 500px;
}

.hf-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hf-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hf-hero-stat {
  display: flex;
  flex-direction: column;
}

.hf-hero-stat .val {
  font-family: var(--font-h);
  font-size: 26px;
  color: var(--c-gold);
}

.hf-hero-stat .lbl {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hf-crumbs-w9n1 {
  background: var(--c-card2);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.hf-crumbs-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 13px;
}

.hf-crumbs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-muted);
}

.hf-crumbs-list a {
  color: var(--c-text2);
  text-decoration: none;
  transition: color 0.2s;
}

.hf-crumbs-list a:hover {
  color: var(--c-orange);
}

.hf-crumbs-list .sep {
  color: var(--c-border2);
  font-size: 11px;
}

.hf-crumbs-list .cur {
  color: var(--c-orange);
  font-weight: 600;
}

.hf-section {
  padding: 40px 0;
}

.hf-section--sm {
  padding: 40px 0;
}

.hf-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.hf-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-orange);
  margin-bottom: 10px;
}

.hf-section-title {
  font-family: var(--font-h);
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--c-text);
  margin-bottom: 12px;
}

.hf-section-desc {
  font-size: 16px;
  color: var(--c-text2);
  max-width: 600px;
  margin: 0 auto;
}

.hf-adv-grid-k3v8 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hf-adv-card {
  flex: 1 1 280px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hf-adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-orange);
  opacity: 0;
  transition: opacity 0.25s;
}

.hf-adv-card:hover {
  border-color: var(--c-border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hf-adv-card:hover::before {
  opacity: 1;
}

.hf-adv-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(247, 148, 29, 0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange);
}

.hf-adv-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hf-adv-body h3 {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--c-text);
  margin-bottom: 6px;
}

.hf-adv-body p {
  font-size: 14px;
  color: var(--c-text2);
  margin: 0;
}

.hf-bonus-wrap-t5q7 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hf-bonus-card {
  flex: 1 1 280px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.hf-bonus-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-4px);
  box-shadow: var(--glow-o);
}

.hf-bonus-card--featured {
  border-color: var(--c-gold);
}

.hf-bonus-card--featured:hover {
  border-color: var(--c-gold);
  box-shadow: 0 0 20px rgba(255, 210, 0, 0.3);
}

.hf-bonus-top {
  background: var(--c-card3);
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hf-bonus-top .casino-logo {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 13px;
  color: var(--c-header);
  flex-shrink: 0;
  overflow: hidden;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.hf-bonus-top .casino-info {
  flex: 1;
}

.hf-bonus-top .casino-name {
  font-family: var(--font-h);
  font-size: 17px;
  color: var(--c-text);
}

.hf-bonus-top .casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--c-gold);
  margin-top: 2px;
}

.hf-bonus-top .casino-rating span {
  color: var(--c-muted);
}

.hf-bonus-featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-gold);
  color: #1b0d02;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}

.hf-bonus-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hf-bonus-amount {
  text-align: center;
}

.hf-bonus-amount .main-bonus {
  font-family: var(--font-h);
  font-size: 28px;
  color: var(--c-gold);
  display: block;
}

.hf-bonus-amount .sub-bonus {
  font-size: 14px;
  color: var(--c-text2);
  margin-top: 2px;
}

.hf-bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hf-bonus-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--c-text2);
}

.hf-bonus-features li .check {
  width: 18px;
  height: 18px;
  background: rgba(46, 204, 113, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hf-bonus-features li .check svg {
  width: 10px;
  height: 10px;
  fill: var(--c-green);
}

.hf-bonus-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hf-bonus-wager {
  font-size: 11px;
  color: var(--c-muted);
  text-align: center;
}

.hf-bonus-slider-container {
  overflow: hidden;
  position: relative;
}

.hf-demo-j2m6 {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
}

.hf-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--c-card3);
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: 12px;
}

.hf-demo-header h2 {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--c-text);
}

.hf-demo-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hf-demo-meta .meta-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--c-text2);
  padding: 4px 10px;
}

.hf-demo-meta .meta-pill svg {
  width: 12px;
  height: 12px;
  fill: var(--c-orange);
}

.hf-demo-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0a0500;
}

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

.hf-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: radial-gradient(ellipse at center, #1b0d02 0%, #0a0500 100%);
}

.hf-demo-overlay .game-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.1);
  border: 2px solid rgba(247, 148, 29, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinGlow 4s linear infinite;
}

@keyframes spinGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(247, 148, 29, 0.3); }
  50% { box-shadow: 0 0 40px rgba(247, 148, 29, 0.6); }
}

.hf-demo-overlay .game-img-wrap img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}

.hf-demo-overlay h3 {
  font-family: var(--font-h);
  font-size: 28px;
  color: var(--c-text);
  text-align: center;
}

.hf-demo-overlay p {
  font-size: 15px;
  color: var(--c-text2);
  text-align: center;
  max-width: 360px;
  margin: 0;
}

.hf-demo-overlay .demo-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hf-demo-footer {
  padding: 16px 24px;
  background: var(--c-card3);
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.hf-demo-footer p {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
}

.hf-review-n8f4 {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.hf-review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--c-card3);
  border-bottom: 1px solid var(--c-border);
}

.hf-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.hf-author-info .name {
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
}

.hf-author-info .role {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 2px;
}

.hf-author-info .profile-link {
  font-size: 12px;
  color: var(--c-orange);
  text-decoration: none;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hf-author-info .profile-link:hover {
  text-decoration: underline;
}

.hf-author-updated {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-muted);
  white-space: nowrap;
}

.hf-review-body {
  padding: 32px;
}

.hf-review-body > * + * {
  margin-top: 1em;
}

.hf-review-body{
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--c-text);
  margin-top: 1.8em;
  margin-bottom: 0.4em;
}

.hf-review-body-main-title { font-size: 42px; margin-top: 0;}


.hf-review-body h3 {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--c-text);
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}

.hf-review-body h4 {
  font-size: 17px;
  color: var(--c-orange);
  font-weight: 700;
  margin-top: 1.2em;
}

.hf-review-body p {
  color: var(--c-text2);
  line-height: 1.5;
  margin-bottom: 0;
}

.hf-review-body a {
  color: var(--c-orange);
  text-decoration: underline;
}

.hf-review-body ul, .hf-review-body ol {
  padding-left: 24px;
  color: var(--c-text2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hf-review-body li {
  line-height: 1.65;
}

.hf-review-body ul li::marker {
  color: var(--c-orange);
}

.hf-review-body ol li::marker {
  color: var(--c-orange);
  font-weight: 700;
}

.hf-review-body strong, .hf-review-body b {
  color: var(--c-text);
  font-weight: 700;
}

.hf-review-body em, .hf-review-body i {
  color: var(--c-text2);
}

.hf-review-body blockquote {
  border-left: 4px solid var(--c-orange);
  padding: 12px 20px;
  background: rgba(247, 148, 29, 0.06);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-text2);
  font-style: italic;
}

.hf-review-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em auto;
  overflow-x: auto;
  display: block;
  font-size: 14px;
}

.hf-review-body table th {
  background: var(--c-card3);
  color: var(--c-orange);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--c-border2);
}

.hf-review-body table td {
  color: var(--c-text2);
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}

.hf-review-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.hf-review-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 2em 0;
}

.hf-review-body img {
  border-radius: var(--r-md);
  max-width: 100%;
}

.hf-faq-p1r9 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hf-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.hf-faq-item.open {
  border-color: var(--c-border2);
}

.hf-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.hf-faq-q:hover {
  background: rgba(255, 255, 255, 0.02);
}

.hf-faq-q h3 {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

.hf-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.hf-faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--c-orange);
  transition: transform 0.25s;
}

.hf-faq-item.open .hf-faq-icon {
  background: var(--c-orange);
}

.hf-faq-item.open .hf-faq-icon svg {
  fill: #fff;
  transform: rotate(45deg);
}

.hf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.hf-faq-item.open .hf-faq-a {
  max-height: 600px;
}

.hf-faq-a-inner {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--c-text2);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

.hf-game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 14.5px;
}

.hf-game-info-table td {
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  vertical-align: top;
  text-align: left;
}

.hf-game-info-table td:first-child {
  color: var(--c-muted);
  font-weight: 600;
  background: var(--c-card3);
  width: 45%;
  white-space: nowrap;
}

.hf-game-info-table td:last-child {
  color: var(--c-text);
}

.hf-game-info-wrap {
  overflow-x: auto;
}

.hf-footer-c6s3 {
  background: var(--c-footer);
  border-top: 2px solid var(--c-border);
  margin-top: 80px;
  padding: 50px 0 0;
}

.hf-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.hf-footer-col {
  flex: 1 1 200px;
}

.hf-footer-col--wide {
  flex: 2 1 260px;
}

.hf-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.hf-footer-logo img {
  height: 66px;
  width: auto;
}

.hf-footer-logo .logo-text {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--c-orange);
}

.hf-footer-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
}

.hf-footer-col h4 {
  font-family: var(--font-h);
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 14px;
}

.hf-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hf-footer-links a {
  font-size: 14px;
  color: var(--c-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.hf-footer-links a:hover {
  color: var(--c-orange);
}

.hf-footer-links a svg {
  width: 14px;
  height: 14px;
  fill: var(--c-border2);
  flex-shrink: 0;
}

.hf-footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0 0 30px;
}

.hf-footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hf-footer-logos-row .logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hf-footer-logos-row .logo-group .group-label {
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.hf-payment-logo, .hf-license-logo {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
  filter: grayscale(0.3);
  background-color: var(--c-border);
  border-radius: 15px;
  padding: 5px;
}

.hf-payment-logo:hover, .hf-license-logo:hover {
  opacity: 1;
}

.hf-provider-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-left: auto;
}

.hf-provider-logo-wrap img {
  height: 26px;
  width: auto;
  filter: brightness(0.9);
}

.hf-provider-logo-wrap .by-text {
  font-size: 11px;
  color: var(--c-muted);
  white-space: nowrap;
}

.hf-footer-bottom {
  background: #08040200;
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
}

.hf-footer-bottom .hf-wrap-x92k {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hf-copyright {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

.hf-legal {
  font-size: 12px;
  color: var(--c-muted);
  opacity: 0.7;
  max-width: 600px;
  line-height: 1.6;
}

.hf-widget-v7b2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(to right, #0e0700 0%, #1a0a00 50%, #0e0700 100%);
  border-top: 2px solid var(--c-red);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(212, 43, 43, 0.25);
}

.hf-widget-v7b2 .widget-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hf-widget-v7b2 .widget-bonus {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--c-gold);
}

.hf-widget-v7b2 .widget-sub {
  font-size: 14px;
  color: var(--c-text2);
}

.hf-widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.hf-widget-close:hover {
  color: var(--c-text);
}

.hf-wave-sep {
  height: 40px;
  overflow: hidden;
  margin-bottom: -1px;
}

.hf-wave-sep svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hf-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--c-card3);
  border: 1px solid var(--c-border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 800;
  color: var(--c-orange);
}

.hf-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.hf-scroll-top:hover {
  transform: translateY(-3px);
  background: var(--c-card);
}

.hf-scroll-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hf-u-hidden-xl2k { display: none; }
.wp-block-group { position: relative; }
.wp-block-cover__overlay { position: absolute; inset: 0; }
.elementor-widget-container { position: relative; min-height: 1px; }
.entry-content { color: inherit; }
.site-main { position: relative; }
.hf-ghost-q9p3 { opacity: 0; pointer-events: none; position: absolute; }
.hf-noshow-r7f1 { visibility: hidden; height: 0; overflow: hidden; }
.hf-dummy-w4v8 { display: none !important; }
.hf-meta-z3k1 { line-height: 0; font-size: 0; height: 0; overflow: hidden; }

@media (max-width: 1024px) {
  .hf-hero-content {
    margin-left: 16px;
  }
}
@media (max-width: 1000px) {
  .hf-online-w5p2 {display: none;}
  .hf-nav-list a {padding: 4px;}
  .hf-wrap-x92k {gap: 8px;}
}


@media (max-width: 768px) {
  .hf-nav-q7r3 {display: none;}
  .hf-header-b7m3 .hf-wrap-x92k {justify-content: space-between;}
  .hf-burger-c9d2 {display: flex;}
  .hf-online-w5p2 .label-text {display: none;}
  .hf-hero-r4p2 {min-height: 380px;}
  .hf-hero-content {padding: 40px 16px 60px;max-width: 100%;margin: 0;}
  .hf-hero-stats {gap: 16px;}
  .hf-section {padding: 44px 0;}
  .hf-bonus-wrap-t5q7 {flex-wrap: nowrap;overflow-x: auto;scroll-snap-type: x mandatory;-webkit-overflow-scrolling: touch;padding-bottom: 8px;gap: 12px;}
  .hf-bonus-card {flex: 0 0 80vw;max-width: 320px;scroll-snap-align: start;}
  .hf-review-body {padding: 20px;}
  .hf-footer-top {gap: 24px;}
  .hf-footer-logos-row {flex-direction: column;align-items: flex-start;}
  .hf-provider-logo-wrap {margin-left: 0;}
  .hf-footer-bottom .hf-wrap-x92k {flex-direction: column;gap: 12px;}
  .hf-widget-v7b2 .widget-text .widget-sub {display: none;}
  .hf-demo-overlay .game-img-wrap {display: none;}
}
@media (max-width: 480px) {
  .hf-header-right a {display: none;}
  .hf-adv-card {flex: 1 1 100%;}
  .hf-hero-h1 {font-size: 26px;}
  .hf-hero-btns .btn-hf--lg {font-size: 15px;padding: 12px 22px;}
  .hf-demo-header {flex-direction: column;align-items: flex-start;}
  .hf-review-author {flex-wrap: wrap;}
  .hf-author-updated {margin-left: 0;}
  .hf-widget-v7b2 .widget-bonus {font-size: 15px;}
  .hf-demo-overlay > *:not(.demo-btns) {display: none;}
  .demo-btns > *:not(button) {display: none;}
}

@media (max-width: 360px) {
  .btn-hf--lg {
    font-size: 14px;
    padding: 11px 18px;
  }
}
