:root {
  --body-bg: #03050a;
  --header-bg: rgba(3, 5, 10, 0.7);
  --banner-bg: #03050a;
  --btn-bg: #FFD700;
  --btn-hover: #ffed4a;
  --btn-text: #05070a;
  --secondary-accent: #00ff88;
  --slots-bg: transparent;
  /* Changed to transparent for integrated look */
  --slots-font: #ffffff;
  --footer-bg: #020305;
  --font-color: #e0e0e0;
  --font-muted: #a0a0b0;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.05);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #ffaa00 100%);

  /* New Variables for Gradients */
  --gold-tint-low: rgba(255, 215, 0, 0.03);
  --gold-tint-mid: rgba(255, 215, 0, 0.1);
  --orange-tint-low: rgba(255, 170, 0, 0.02);
  --green-tint-low: rgba(0, 255, 136, 0.02);
  --bg-gradient-bottom: #05070c;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--body-bg);
  /* background-image:
    repeating-linear-gradient(135deg, var(--gold-tint-low) 0px, var(--gold-tint-low) 2px, transparent 2px, transparent 100px),
    repeating-linear-gradient(135deg, var(--orange-tint-low) 20px, var(--orange-tint-low) 23px, transparent 23px, transparent 140px),
    linear-gradient(to bottom, var(--body-bg) 0%, var(--bg-gradient-bottom) 100%); */
  background-attachment: scroll;
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}


body.overflow-hidden {
  overflow: hidden !important;
  height: 100vh;
}

/* Premium Ambient Background System */
.premium-bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: var(--body-bg);
  /* Ensure base is dark */
}

/* 1. The Pattern Layer - Sits on top */
.bg-pattern-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: 800px;
  /* Slightly denser pattern */
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 2;
  /* Above the lights */
  mix-blend-mode: overlay;
  /* The Key: Overlay allows backlit colors to shine through */
  pointer-events: none;
}

/* JS Lazy Load Trigger */
body.bg-pattern-loaded .bg-pattern-layer {
  background-image: url('../img/pattern_luxury.png');
  /* Ensure opacity provides subtle base visibility */
  opacity: 0.5;
}


/* 2. The Light Source Layer - Sits behind */
.light-source-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: blur(80px);
  /* Heavy blur for soft diffusion */
  opacity: 0.6;
}

.ambient-light {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

/* Light 1: The Golden Pulse (Center-ish) */
.light-1 {
  top: 20%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  animation: float-pulse 15s infinite ease-in-out;
}

/* Light 2: The Secondary Warmth (Bottom Right) */
.light-2 {
  bottom: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 60%);
  animation: float-drift 20s infinite linear;
}

/* Light 3: Passing Sheen (Diagonal Wave) */
.light-3 {
  top: 50%;
  left: 50%;
  width: 150%;
  height: 200px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: light-wave-sweep 12s infinite linear;
}

/* Advanced Animations */
@keyframes float-pulse {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(5%, 10%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes float-drift {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }

  50% {
    transform: rotate(10deg) translate(-5%, -5%);
  }

  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}

@keyframes light-wave-sweep {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg) translateY(100vh);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) rotate(-45deg) translateY(-100vh);
    opacity: 0;
  }
}

/* Cleanup: Remove body::after since we moved pattern */
body::after,
body.bg-pattern-loaded::after {
  content: none !important;
  display: none !important;
}

.header,
.mobile-wrap,
.lang-switcher-list {
  background-color: var(--header-bg);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  /* Default height to prevent collapse */
  padding: 0 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  z-index: 1;
}

/* Premium Gold CTA (Register/Play Now) */
.btn.register-btn,
.offer .btn {
  background: linear-gradient(135deg, #FFD700 0%, #FFB900 30%, #FF8C00 70%, #FFD700 100%);
  background-size: 200% auto;
  color: #1a1a2e !important;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 185, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sleek Secondary (Login) */
.btn.login-btn {
  background: rgba(255, 255, 255, 0.1);
  /* Increased opacity for better visibility */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn.register-btn:hover,
.offer .btn:hover {
  background-position: right center;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 185, 0, 0.4);
  filter: brightness(1.1);
}

.btn.login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--btn-bg) !important;
}

/* The Liquid Shine Sweep Animation */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      /* Reduced to not wash out text */
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
  /* Above background */
  pointer-events: none;
}

.btn.register-btn::before,
.offer .btn::before {
  animation: liquid-shine 4s infinite linear;
}

@keyframes liquid-shine {
  0% {
    left: -150%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.slots,
.elements,
.content.section {
  background-color: var(--slots-bg);
  color: var(--slots-font);
  position: relative;
}

/* Generalized subtle divider for all non-banner sections */
.section:not(.banner)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 215, 0, 0.1) 50%,
      transparent 100%);
  z-index: 2;
}

.footer {
  background-color: var(--footer-bg);
}

.social-icon svg {
  fill: var(--font-color);
}

.social-icon {
  border-color: var(--font-color);
}

.content-text,
.elements-item-text {
  color: var(--font-color);
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ul-style-none {
  padding: 0;
}

.ul-style-none li {
  padding: 0;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

input:not([type=checkbox], [type=radio]),
input:not([type=checkbox], [type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.modal__bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
}

.modal {
  max-width: 450px;
  width: 100%;
  background: #0b0e17;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  display: none;
  color: #fff;
  padding: 0;
  overflow: hidden;
}

/* Ensure modal is centered correctly when active */
.modal.active {
  display: block;
}

.modal.active,
.modal__bg.active {
  display: block;
}

.modal-body {
  width: 100%;
  height: 100%;
  padding: 30px;
  position: relative;
}

.modal-title {
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

body.show-modal {
  overflow: hidden;
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.close .inner::before,
.close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}

.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

/*.menu {*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*}*/

.menu a {
  padding: 5px;
}

.menu a:hover {
  opacity: 0.7;
}

.mobile-nav .menu {
  display: block;
}

.mobile-nav li {
  margin-right: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav .menu>li>a {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 0;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.mobile-nav .menu>li>a:hover,
.mobile-nav .menu>li.active>a,
.mobile-nav .menu>li.current-menu-item>a {
  color: var(--btn-bg);
}

/* Submenu Styling Mobile */
.mobile-nav .sub-menu {
  display: none;
  background: rgba(255, 255, 255, 0.02);
  margin: 0;
  padding: 5px 0;
  border-left: 1px solid rgba(255, 215, 0, 0.1);
  /* Much thinner and more subtle */
  margin-left: 15px;
  /* Offset the entire block for better hierarchy */
}

.mobile-nav .sub-menu li {
  border-bottom: none;
}

.mobile-nav .sub-menu li a {
  font-size: 14px;
  padding: 10px 20px;
  color: #b0b0c0;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
}

.mobile-nav .sub-menu li.menu-item-has-children>a {
  padding-right: 50px;
}

.mobile-nav .sub-menu li a:hover,
.mobile-nav .sub-menu li.current-menu-item a {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-wrap {
  max-width: 450px;
  width: 100%;
  height: 100vh;
  background-color: var(--body-bg);
  /* Match body background */
  background-image:
    linear-gradient(to bottom, rgba(3, 5, 10, 0.96), rgba(3, 5, 10, 0.98)),
    url('../img/pattern_luxury.png');
  background-size: 320px;
  /* Slightly darker/denser than body */
  -webkit-box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 1100;
  border-left: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-wrap.active {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mobile-body {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.mobile-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 80px 15px 20px 30px;
  /* Padding moved here */
  min-height: 0;
  /* Important for flex child scrolling */
}

.mobile-menu-footer {
  flex-shrink: 0;
  padding: 20px 30px 40px;
  /* Extra bottom padding for safe area */
  background: var(--body-bg);
  /* Ensure contrast */
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  z-index: 2;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  /* Shadow for depth */
}

.mobile-body .close {
  position: absolute;
  top: 25px;
  right: 25px;
}

.mobile-body .close .inner::before,
.mobile-body .close .inner::after {
  background-color: #fff;
}

.mobile-nav .menu a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav .menu-item-has-children>a {
  padding-right: 50px !important;
  position: relative;
}

.mobile-nav .dropdown-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btn-bg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-left: none;
  margin: 0;
  opacity: 0.8;
}

.mobile-nav li.active>a .dropdown-icon,
.mobile-nav li:hover>a .dropdown-icon {
  color: var(--btn-bg);
  opacity: 1;
  transform: translateY(0) scale(1.1);
}

.mobile-nav .menu-item-has-children.active>a .dropdown-icon {
  transform: rotate(180deg) scale(1.1);
}

.mobile-btn {
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
}

.mobile-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.mobile-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
}

.mobile-btn .inner {
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-btn .inner::before,
.mobile-btn .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-btn .inner::before {
  top: -6px;
}

.mobile-btn .inner::after {
  bottom: -6px;
}

/* Burger Animation to X */
.mobile-btn.active .inner {
  background-color: transparent;
}

.mobile-btn.active .inner::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--btn-bg);
}

.mobile-btn.active .inner::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: var(--btn-bg);
}

.mobile-wrap-btns {
  margin-top: 0;
  display: flex;
  gap: 12px;
  width: 100%;
}

.mobile-wrap-btns .btn {
  display: flex !important;
  /* Force flex */
  flex: 1;
  width: auto;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  /* Match header buttons */
  height: 48px;
  /* Slightly taller for easier tapping */
  font-size: 14px;
}

.mobile-wrap-btns .btn:last-child {
  margin-bottom: 0;
}

.tab {
  margin-bottom: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 30px;
  transition: all 0.3s ease;
}

.tab:hover {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.tab-title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.tab-ans {
  line-height: 1.3;
  margin-top: 25px;
  display: none;
}

.tab.active .tab-ans {
  display: block;
}

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

.header {
  max-width: 95%;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  position: sticky;
  top: 24px;
  z-index: 1000
}

.header:hover::before {
  opacity: 1;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* Header Navigation - Inline Menu */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.header-menu-inline {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu-inline li {
  position: relative;
}

.header-menu-inline li a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  white-space: nowrap;
}

.header-menu-inline li a::before {
  content: none;
}

.header-menu-inline li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
}

.header-menu-inline li.current-menu-item a,
.header-menu-inline li.current_page_item a {
  color: var(--btn-bg);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.menu-link-text {
  position: relative;
  z-index: 1;
}

/* Multi-level Dropdown Support */

/* Target the dropdown ULs. Note: .sub-menu is the default class WP adds to nested ULs */
/* Target the dropdown ULs. */
.header-menu-inline .sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: max-content;
  min-width: 120px;
  /* Strictly content-based width */
  margin: 0;
  list-style: none;
  background: rgba(11, 14, 23, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  /* Slightly subtler border */
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 6px;
  /* Compact padding wrapper */
  z-index: 1000;
}

/* Invisible bridge to prevent losing hover */
.header-menu-inline li.menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
}

/* Show submenu on hover */
.header-menu-inline li:hover>.sub-menu,
.header-menu-inline li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Second level and deeper dropdowns */
/* Second level and deeper dropdowns */
.header-menu-inline .sub-menu .sub-menu {
  top: 0px;
  /* Align with parent item */
  left: 100%;
  transform: translateX(-10px);
  /* Start slightly left for animation */
}

.header-menu-inline .sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Dropdown Links */
.header-menu-inline .sub-menu li {
  display: block;
  margin: 0 0 2px 0;
  /* Tiny gap between items */
  width: 100%;
  padding: 0;
}

.header-menu-inline .sub-menu li:last-child {
  margin-bottom: 0;
}

.header-menu-inline .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Push text and icon apart */
  padding: 8px 12px;
  font-size: 13px;
  /* Slightly smaller for compact look */
  font-weight: 500;
  line-height: 1.4;
  color: #b0b0c0;
  text-transform: none;
  white-space: nowrap;
  background: transparent;
  box-shadow: none;
  border-radius: 8px;
  width: 100%;
  transition: all 0.2s ease;
  gap: 12px;
  /* Ensure minimum space between text and icon */
}

/* Hover state for dropdown links */
.header-menu-inline .sub-menu li a:hover {
  background: rgba(255, 215, 0, 0.08);
  color: #fff;
  text-shadow: none;
}

/* Active state in dropdown */
.header-menu-inline .sub-menu li.current-menu-item>a {
  color: var(--btn-bg);
  background: rgba(255, 215, 0, 0.1);
  font-weight: 600;
}

/* Add an arrow for items with children */
/* Natural flow for items with children */
.header-menu-inline .menu-item-has-children>a {
  padding-right: 16px;
  /* Restore balanced padding as we use gap now */
  gap: 6px;
  /* Space between text and icon */
}

.header-menu-inline .dropdown-icon {
  position: static;
  /* Flow naturally with flex */
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  width: 6px;
  height: 6px;
  margin-top: 1px;
  /* Optical alignment */
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth rotation */
}

/* Rotate arrow on hover (top level) */
.header-menu-inline>li.menu-item-has-children:hover>a .dropdown-icon {
  transform: rotate(180deg);
}

/* Nested dropdowns - arrow points right to indicate side flyout */
.header-menu-inline .sub-menu .menu-item-has-children:hover>a .dropdown-icon,
.header-menu-inline .sub-menu .menu-item-has-children>a .dropdown-icon {
  transform: rotate(-90deg);
}

/* Header Buttons */
.header-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btns .btn {
  min-width: 120px;
  padding: 0 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  height: 40px;
}





.header-btns .lang-switcher {
  margin-left: 8px;
}

/* Logo & Language Dropdown Combined */
.lang-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.logo-lang-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 12px 6px 6px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.logo-lang-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
}

.logo-lang-dropdown.active .logo-lang-trigger {
  color: var(--btn-bg);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Logo Styling */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo .custom-logo-link {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.site-logo .custom-logo-link:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.site-logo .custom-logo-link img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.current-lang-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.current-lang-flag li:not(.current-lang) {
  display: none;
}

.current-lang-flag li {
  list-style: none;
  display: flex;
  align-items: center;
}

.current-lang-flag img {
  width: 20px !important;
  height: 14px !important;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dropdown-arrow {
  color: var(--btn-bg);
  transition: transform 0.3s ease;
}

.logo-lang-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
/* Shared Dropdown Styles */
.logo-lang-dropdown-menu,
.header-menu-inline .sub-menu {
  background: rgba(11, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 6px;
  z-index: 1000;
}

/* Specific positioning for Language Dropdown */
.logo-lang-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  padding: 6px;
  /* Keep original padding for lang map */
}

/* Hover Behavior for Language Dropdown */
.logo-lang-dropdown:hover .logo-lang-dropdown-menu,
.logo-lang-dropdown:focus-within .logo-lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo-lang-dropdown:hover .dropdown-arrow,
.logo-lang-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.logo-lang-dropdown:hover .logo-lang-trigger {
  color: var(--btn-bg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.dropdown-menu-header {
  padding: 6px 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4px;
}

.dropdown-label {
  color: rgba(255, 215, 0, 0.8);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-list {
  padding: 0;
  margin: 0;
}

.lang-list li {
  list-style: none;
  margin-bottom: 2px;
}

.lang-list li:last-child {
  margin-bottom: 0;
}

.lang-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #b0b0c0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lang-list li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-list li.current-lang a {
  background: rgba(255, 215, 0, 0.08);
  color: var(--btn-bg);
  font-weight: 600;
}

.lang-list img {
  width: 20px !important;
  height: 14px !important;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title span {
  position: relative;
}

.section.banner {
  padding-top: 50px;
  position: relative;
}

.banner {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 25% 70%, rgba(0, 255, 136, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.banner-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.banner-img {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.banner-img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.banner-img {
  flex: 1;
  max-width: 550px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.banner-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.banner-img:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.has-border::before,
.has-border::after {
  display: none;
  /* Remove old borders */
}

.offer {
  flex: 1;
  text-align: left;
  padding: 0;
}

.offer-title h1 {
  font-size: 4.5rem;
  /* Responsive sizing */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.offer-desc {
  margin-bottom: 35px;
  font-size: 1.125rem;
  color: var(--font-muted);
  max-width: 500px;
}

.offer .btn {
  width: auto;
  min-width: 200px;
  height: 56px;
  line-height: 56px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 50px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.slots-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding-bottom: 20px;
}

.slots-item {
  width: auto;
  padding: 0;
  margin: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slots-item .inner {
  display: block;
  text-decoration: none;
  height: 100%;
}

.slots-item .item__img {
  width: 100%;
  aspect-ratio: 1.5;
  /* Rectangular 3:2ish */
  overflow: hidden;
  position: relative;
}

.slots-item .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.slots-item .item__title {
  font-weight: 600;
  padding: 12px 15px;
  text-align: center;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  color: var(--slots-font);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slots-item .item__title::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--secondary-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.slots-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.3);
  z-index: 10;
}

.slots-item:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.slots-item:hover .item__title {
  color: #fff;
}

.slots-item:hover .item__title::before {
  width: 100%;
}

.content-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--text-main);
}

.content-text {
  line-height: 1.8;
  font-size: 1.125rem;
  color: var(--font-muted);
  max-width: 800px;
  margin: 0 auto;
}


.section.elements {
  padding-bottom: 80px;
}

.elements-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.elements-item {
  margin-bottom: 0;
  position: relative;
}

.elements-item:last-child {
  margin-bottom: 0;
}

.elements-item-title {
  text-align: center;
  margin-bottom: 40px;
}

.elements-item-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--font-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.elements-item-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.elements-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  /* Smoother corners */
  padding: 50px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.elements-item-text {
  flex: 1;
  width: auto;
  padding-bottom: 0;
  margin-top: 0;
  color: var(--font-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.elements-item-image {
  flex: 1;
  width: auto;
}

.elements-item-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.elements-item:hover .elements-item-image img {
  transform: scale(1.02);
}

.elements-item:nth-child(even) .elements-item-row {
  flex-direction: row-reverse;
}

/* Fix for standard property background-clip */
.offer-title h1,
.section-title h2 {
  background-clip: text;
}

.footer {
  position: relative;
  background-color: var(--footer-bg);
  padding: 80px 0 40px;
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(20, 20, 35, 0) 0%,
      rgba(255, 215, 0, 0.2) 50%,
      rgba(20, 20, 35, 0) 100%);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand {
  min-width: 250px;
  max-width: 300px;
}

/* Footer Typography & Colors */
.footer-heading {
  color: var(--btn-bg);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff8c00;
  border-radius: 2px;
}

.footer p,
.footer-address,
.footer-copyright {
  color: #8c8c9e;
  font-size: 14px;
  line-height: 1.8;
}

.footer-desc {
  margin: 20px 0;
}

/* Footer Nav */
.footer-menu-list li {
  margin-bottom: 12px;
}

.footer-menu-list a {
  color: #a4a4b5;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.footer-menu-list a::before {
  content: '›';
  margin-right: 8px;
  color: var(--btn-bg);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-logo img {
  max-width: 180px;
  width: auto;
  height: auto;
  border-radius: 0;
  /* Override global border-radius if needed, usually logos don't need it */
}

.footer-menu-list a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-menu-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Info & Contact */
/* Footer Info & Contact */
/* Footer Info & Contact */
.footer-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-subheading {
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 600;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  color: var(--btn-bg);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-info-item:hover .footer-icon {
  background: var(--btn-bg);
  color: #1a1a1a;
  transform: scale(1.1);
}

.footer-address {
  font-style: normal;
  line-height: 1.6;
  color: #ccc;
  font-size: 14px;
}

/* Footer Link Button */
.footer-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  color: var(--btn-bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-link-btn:hover {
  background: var(--btn-bg);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.footer-link-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer-link-btn:hover .footer-link-arrow {
  transform: translate(3px, -3px);
}

.footer-link-icon {
  display: flex;
  align-items: center;
}

/* Badges & Payments */
.badges-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b0b0;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--btn-bg);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-icon-wrap {
  display: flex;
  align-items: center;
}

.badge-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2px;
}

/* Specific styling for 18+ badge to make it restricted-looking */
.badge-item[title="18+ Only"] .badge-icon {
  color: #ff4d4d;
}

.badge-item[title="Licensed Casino"] .badge-icon {
  color: #4dff88;
}



.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.pay-link {
  display: block;
  transition: transform 0.3s ease;
}

.pay-logo {
  display: block;
  width: 36px;
  height: 36px;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  border-radius: 4px;
}

.pay-link:hover .pay-logo {
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.pay-link:hover {
  transform: translateY(-3px);
}

/* Bottom Footer */
.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.footer-disclaimer p {
  color: #cdcdd9;
  font-size: 12px;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-row {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    width: 100%;
    min-width: 100%;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-heading {
    display: block;
    text-align: center;
  }

  .footer-menu-list,
  .footer-info,
  .footer-copyright,
  .footer-desc {
    text-align: center;
  }

  .footer-info-item {
    justify-content: center;
  }

  .badges-grid,
  .payment-methods {
    justify-content: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }
}

.page .section {
  padding-top: 0;
}



.header .nav {
  padding: 0 25px;
}

.header .nav ul li a {
  white-space: nowrap;
}

.header .nav ul {
  flex-wrap: wrap;
  justify-content: center;
}

.header .nav ul li {
  margin-bottom: 10px;
}

.offer-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

a.social-icon {
  width: 45px;
  min-width: 45px;
  height: 45px;
  display: block;
  border-radius: 150%;
  padding: 10px;
  margin-right: 15px;
  border: 1px solid;
}

a.social-icon svg {
  width: 100%;
  height: 100%;
}

/* Legacy dropdown menu styles removed - now using .header-menu-inline */







/* Adaptive */
@media (max-width: 1350px) {

  .has-border::before,
  .has-border::after {
    display: none;
  }

  .offer-title h1 {
    font-size: 60px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .header-menu-inline li a {
    padding: 8px 14px;
    font-size: 12px;
  }

  .header-nav {
    padding: 0 15px;
  }
}

@media (max-width: 1100px) {
  .header {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    top: 0;
    border-radius: 0;
    padding: 10px 15px;
    border: none;
  }

  .site-logo .custom-logo-link {
    max-width: 100px;
    height: 50px;
  }

  .logo-lang-dropdown {
    margin-right: auto;
  }

  .logo-lang-trigger {
    padding: 6px 12px 6px 6px;
  }

  .current-lang-flag img {
    width: 20px !important;
    height: 14px !important;
  }

  .dropdown-arrow {
    width: 10px;
    height: 10px;
  }

  .header-btns {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Ensure dropdown menu is visible when active on mobile */
  .logo-lang-dropdown-menu {
    width: 200px;
    /* slightly smaller on mobile */
  }

}

@media (max-width: 900px) {
  .wrap {
    padding: 0 15px;
  }

  .section {
    padding-top: 50px;
  }
}

@media (max-width: 850px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner {
    padding-top: 50px !important;
    padding-bottom: 30px;
    height: auto;
    min-height: auto;
    display: block;
  }

  .banner-img {
    margin: 0 auto 40px;
    max-width: 100%;
  }

  .offer {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .offer-title h1 {
    font-size: 3rem;
  }

  .offer-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .section-title span::before {
    display: none;
  }

  .elements-item-row {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .elements-item-image {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .slots-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .header {
    margin-bottom: 0;
  }

  .offer-title h1 {
    font-size: 2.5rem;
  }

  .section {
    padding-bottom: 50px;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 14px;
  }

  .slots-item .item__title {
    font-size: 0.85rem;
    padding: 8px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .content-title {
    font-size: 2rem;
  }

  .header-btns .btn {
    width: 100px;
  }

  .elements-item {
    margin-bottom: 30px;
  }

  .elements-item-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .header-btns .btn:nth-child(2) {
    margin-top: 5px;
  }
}


h2 {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}