:root {
  --clr-header: #1d2158;
  --clr-header-dark: #16194a;
  --clr-btn-login: #96a5d1;
  --clr-btn-reg: #eaae16;
  --clr-bg: #2d3447;
  --clr-bg2: #242838;
  --clr-bg3: #1e2233;
  --clr-card: #323956;
  --clr-text: #e8ecf5;
  --clr-text-muted: #9ba5c4;
  --clr-border: #3d4668;
  --clr-gold: #eaae16;
  --clr-plus: #2ecf7a;
  --clr-minus: #e05555;
  --radius: 10px;
  --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(--clr-bg);
}
body {
  font-family: "Roboto", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: var(--clr-btn-login);
  text-decoration: none;
}
a:hover {
  color: var(--clr-gold);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.n7f3k-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.n7f3k-sec {
  padding: 60px 0;
}

.n7f3k-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.n7f3k-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.n7f3k-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}
.n7f3k-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.n7f3k-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.n7f3k-nav-links a {
  color: var(--clr-text);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.n7f3k-nav-links a:hover {
  background: rgba(150, 165, 209, 0.15);
  color: var(--clr-btn-login);
}
.n7f3k-online {
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.n7f3k-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecf7a;
  display: inline-block;
  animation: n7f3k-pulse 1.4s infinite;
}
@keyframes n7f3k-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.n7f3k-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-login {
  background: var(--clr-btn-login);
  color: #1d2158;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 14px;
  transition:
    filter 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.btn-login:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #1d2158;
}
.btn-reg {
  background: var(--clr-btn-reg);
  color: #1a1500;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 14px;
  transition:
    filter 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.btn-reg:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #1a1500;
}
.n7f3k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.n7f3k-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.n7f3k-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.n7f3k-burger.active span:nth-child(2) {
  opacity: 0;
}
.n7f3k-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.n7f3k-mob-menu {
  display: none;
  background: var(--clr-header-dark);
  border-top: 1px solid var(--clr-border);
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
}
.n7f3k-mob-menu.open {
  display: flex;
}
.n7f3k-mob-menu a {
  color: var(--clr-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.n7f3k-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-header-dark);
}
.n7f3k-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/bannomad.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.n7f3k-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(29, 33, 88, 0.92) 40%,
    rgba(29, 33, 88, 0.4) 100%
  );
  z-index: 1;
}
.n7f3k-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.n7f3k-hero h1 {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  max-width: 620px;
  margin-bottom: 16px;
}
.n7f3k-hero h1 span {
  color: var(--clr-gold);
}
.n7f3k-hero-sub {
  font-size: 17px;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.n7f3k-hero-bonus {
  display: inline-block;
  background: rgba(234, 174, 22, 0.12);
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.n7f3k-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-reg {
  background: var(--clr-btn-reg);
  color: #1a1500;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
  transition:
    filter 0.2s,
    transform 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(234, 174, 22, 0.4);
}
.btn-hero-reg:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #1a1500;
}
.btn-hero-login {
  background: transparent;
  border: 2px solid var(--clr-btn-login);
  color: var(--clr-btn-login);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-hero-login:hover {
  background: var(--clr-btn-login);
  color: #1d2158;
}

.n7f3k-proscons {
  background: var(--clr-bg2);
}
.n7f3k-proscons-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 36px;
  color: var(--clr-text);
}
.n7f3k-proscons-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.n7f3k-pros,
.n7f3k-cons {
  flex: 1;
  min-width: 280px;
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.n7f3k-pros {
  border-top: 3px solid var(--clr-plus);
}
.n7f3k-cons {
  border-top: 3px solid var(--clr-minus);
}
.n7f3k-proscons-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.n7f3k-pros .n7f3k-proscons-head {
  color: var(--clr-plus);
}
.n7f3k-cons .n7f3k-proscons-head {
  color: var(--clr-minus);
}
.n7f3k-proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--clr-text);
  line-height: 1.5;
}
.n7f3k-proscons-list li:last-child {
  border-bottom: none;
}
.n7f3k-proscons-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
}
.n7f3k-pros .n7f3k-proscons-list li::before {
  background: var(--clr-plus);
  content: "✓";
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.n7f3k-cons .n7f3k-proscons-list li::before {
  background: var(--clr-minus);
  content: "✗";
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n7f3k-jackpots {
  background: var(--clr-bg3);
}
.n7f3k-sec-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--clr-text);
}
.n7f3k-sec-sub {
  text-align: center;
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
}
.n7f3k-jackpots-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.n7f3k-jackpot-card {
  background: linear-gradient(
    135deg,
    var(--clr-header) 0%,
    var(--clr-card) 100%
  );
  border: 1px solid rgba(234, 174, 22, 0.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(234, 174, 22, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.n7f3k-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(234, 174, 22, 0.25);
}
.n7f3k-jackpot-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.n7f3k-jackpot-amount {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--clr-gold);
  font-variant-numeric: tabular-nums;
}
.n7f3k-jackpot-tag {
  font-size: 11px;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

.n7f3k-games {
  background: var(--clr-bg2);
}
.n7f3k-games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.n7f3k-game-card {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  background: var(--clr-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.n7f3k-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.n7f3k-game-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.n7f3k-game-info {
  padding: 12px;
}
.n7f3k-game-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.btn-play {
  display: block;
  text-align: center;
  background: var(--clr-btn-reg);
  color: #1a1500;
  font-weight: 700;
  font-size: 13px;
  padding: 8px;
  border-radius: 6px;
  transition: filter 0.2s;
  text-decoration: none;
}
.btn-play:hover {
  filter: brightness(1.1);
  color: #1a1500;
}
.n7f3k-games-slider {
  display: none;
}

.n7f3k-wheel-sec {
  background: var(--clr-bg3);
}
.n7f3k-wheel-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.n7f3k-wheel-side {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
}
.n7f3k-wheel-side h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.n7f3k-wheel-side p {
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.n7f3k-wheel-canvas-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}
.n7f3k-wheel-canvas-wrap canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(234, 174, 22, 0.3);
}
.n7f3k-wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--clr-gold);
  z-index: 10;
}
.btn-spin {
  background: var(--clr-btn-reg);
  color: #1a1500;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    filter 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(234, 174, 22, 0.35);
}
.btn-spin:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.n7f3k-wheel-result {
  margin-top: 20px;
  padding: 20px;
  background: rgba(46, 207, 122, 0.12);
  border: 1px solid var(--clr-plus);
  border-radius: var(--radius);
  display: none;
}
.n7f3k-wheel-result.show {
  display: block;
}
.n7f3k-wheel-result h3 {
  color: var(--clr-plus);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.n7f3k-wheel-result p {
  color: var(--clr-text);
  margin-bottom: 12px;
}
.btn-get-bonus {
  display: inline-block;
  background: var(--clr-btn-reg);
  color: #1a1500;
  font-weight: 800;
  padding: 11px 28px;
  border-radius: 7px;
  text-decoration: none;
  transition: filter 0.2s;
}
.btn-get-bonus:hover {
  filter: brightness(1.1);
  color: #1a1500;
}
.n7f3k-wheel-lost {
  margin-top: 20px;
  padding: 16px;
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid var(--clr-minus);
  border-radius: var(--radius);
  display: none;
}
.n7f3k-wheel-lost.show {
  display: block;
  color: var(--clr-text-muted);
}

.n7f3k-review-sec {
  background: var(--clr-bg2);
}
.n7f3k-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--clr-card);
  border-radius: var(--radius);
}
.n7f3k-review-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-btn-login);
}
.n7f3k-author-name {
  font-weight: 700;
  color: var(--clr-text);
  font-size: 15px;
}
.n7f3k-author-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.4;
}
.n7f3k-author-link {
  font-size: 12px;
  color: var(--clr-btn-login);
}
.n7f3k-review-content {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.n7f3k-review-content h1,
.n7f3k-review-content h2,
.n7f3k-review-content h3,
.n7f3k-review-content h4 {
  color: var(--clr-text);
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.n7f3k-review-content h2 {
  font-size: 22px;
}
.n7f3k-review-content h3 {
  font-size: 18px;
  color: var(--clr-btn-login);
}
.n7f3k-review-content p {
  color: var(--clr-text);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
}
.n7f3k-review-content a {
  color: var(--clr-btn-login);
}
.n7f3k-review-content ul,
.n7f3k-review-content ol {
  margin: 12px 0 18px 0;
  padding-left: 24px;
}
.n7f3k-review-content ul li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
}
.n7f3k-review-content ol li {
  list-style: decimal;
  margin-bottom: 6px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
}
.n7f3k-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.n7f3k-review-content th {
  background: var(--clr-header);
  color: var(--clr-text);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
}
.n7f3k-review-content td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  text-align: left;
}
.n7f3k-review-content tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}
.n7f3k-review-content blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(234, 174, 22, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.n7f3k-review-content strong,
.n7f3k-review-content b {
  color: var(--clr-text);
  font-weight: 700;
}
.n7f3k-review-content img {
  border-radius: 8px;
  margin: 12px 0;
}

.n7f3k-faq-sec {
  background: var(--clr-bg3);
}
.n7f3k-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.n7f3k-faq-item {
  background: var(--clr-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: border-color 0.2s;
}
.n7f3k-faq-item.open {
  border-color: var(--clr-btn-login);
}
.n7f3k-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--clr-text);
  gap: 12px;
  user-select: none;
}
.n7f3k-faq-q:hover {
  color: var(--clr-btn-login);
}
.n7f3k-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(150, 165, 209, 0.15);
  color: var(--clr-btn-login);
  font-size: 18px;
  transition: transform 0.3s;
}
.n7f3k-faq-item.open .n7f3k-faq-icon {
  transform: rotate(45deg);
  background: rgba(150, 165, 209, 0.3);
}
.n7f3k-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.n7f3k-faq-item.open .n7f3k-faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}
.n7f3k-faq-a p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.n7f3k-faq-a a {
  color: var(--clr-btn-login);
}

.n7f3k-footer {
  background: var(--clr-header-dark);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 24px;
}
.n7f3k-footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: flex-start;
}
.n7f3k-footer-logo {
  flex-shrink: 0;
}
.n7f3k-footer-logo img {
  height: 50px;
}
.n7f3k-footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}
.n7f3k-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-btn-login);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.n7f3k-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.n7f3k-footer-col ul a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.n7f3k-footer-col ul a:hover {
  color: var(--clr-text);
}
.n7f3k-footer-payments {
  margin-bottom: 20px;
}
.n7f3k-footer-payments h4,
.n7f3k-footer-providers h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-btn-login);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.n7f3k-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.n7f3k-pay-badge,
.n7f3k-prov-badge {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.3px;
}
.n7f3k-footer-legal {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  text-align: center;
}
.n7f3k-footer-legal a {
  color: var(--clr-text-muted);
}
.n7f3k-footer-legal a:hover {
  color: var(--clr-btn-login);
}
.n7f3k-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.n7f3k-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--clr-text-muted);
  font-size: 11px;
  font-weight: 800;
  color: var(--clr-text-muted);
}

.n7f3k-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--clr-header) 0%, #242b5e 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
}
.n7f3k-widget-text {
  flex: 1;
}
.n7f3k-widget-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
}
.n7f3k-widget-text span {
  font-size: 12px;
  color: var(--clr-gold);
}
.btn-widget-reg {
  background: var(--clr-btn-reg);
  color: #1a1500;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 7px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 0.2s;
  display: inline-block;
}
.btn-widget-reg:hover {
  filter: brightness(1.1);
  color: #1a1500;
}
.n7f3k-widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
}
.n7f3k-widget-close:hover {
  color: #fff;
}

.wp-block-separator {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}
.wp-caption {
  max-width: 100%;
  background: var(--clr-card);
  border-radius: 6px;
  padding: 6px;
}
.entry-content p {
  margin-bottom: 1em;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignleft {
  float: left;
  margin-right: 16px;
}
.alignright {
  float: right;
  margin-left: 16px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.elementor-section {
  width: 100%;
}
.et-db #et-boc .et-l {
  margin: 0;
}
.generatepress-elements {
  display: block;
}

.n7f3k-wave {
  overflow: hidden;
  line-height: 0;
  background: transparent;
}
.n7f3k-wave svg {
  display: block;
}

@media (max-width: 900px) {
  .n7f3k-nav-links {
    display: none;
  }
  .n7f3k-burger {
    display: flex;
  }
  .n7f3k-jackpots-grid .n7f3k-jackpot-card {
    min-width: 140px;
  }
  .n7f3k-games-grid {
    display: none;
  }
  .n7f3k-games-slider {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .n7f3k-games-slider-inner {
    display: flex;
    gap: 14px;
    width: max-content;
  }
  .n7f3k-games-slider .n7f3k-game-card {
    min-width: 160px;
    max-width: 160px;
  }
  .n7f3k-wheel-canvas-wrap {
    width: 240px;
    height: 240px;
  }
  .n7f3k-wheel-canvas-wrap canvas {
    width: 240px !important;
    height: 240px !important;
  }
  .n7f3k-widget {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .n7f3k-sec {
    padding: 40px 0;
  }
  .n7f3k-proscons-grid {
    flex-direction: column;
  }
  .n7f3k-hero {
    min-height: 360px;
  }
  .n7f3k-footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .n7f3k-footer-top {
    flex-direction: column;
  }
}

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