

:root {
  --bg-color: #1e1e2f;
  --hero-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --header-bg: #f9627b;
  --text-color: #fff;
  --accent-color: #764ba2;
  --shadow-color: rgba(0, 0, 0, 0.548);
  --hover-color: #667eea;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.section,
.main-hero,
.premium-offers-section,
.bonuses-section,
.curated-bonuses-section,
.benefits-section,
.games-section,
.free-spins-section,
.features-section,
.faq-section,
.promotions-section,
.strategies-section,
.slots-strategies-section {
  max-width: 100%;
  overflow-x: hidden;
}

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

.dropdown-menu {
  max-width: 100vw;
  overflow-x: hidden;
}

.progress-bar-container {
  max-width: 100%;
  left: 15px !important;
  right: auto !important;
}

.mobile-nav-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.wide-element,
.full-width {
  max-width: 100%;
  overflow-x: hidden;
}

header {
  background: #252542;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s;
  border-bottom: 2px solid #ffd700;
}

.visible {
  transform: translateY(0);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.header-top .logo {
  order: 1; 
}

.header-top .header-boxes {
  order: 2; 
}

.header-top nav {
  order: 3; 
}

.header-top .mobile-menu-toggle {
  order: 4; 
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

.logo img {
  height: 70px;
  width: auto;
}

.logo-text {
  font-size: 1.2rem;
  margin-left: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.header-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.header-box {
  margin: 0 -30px;
  padding: 5px;
  min-width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-image {
  border-radius: 10px;
  max-width: 60%;
  min-width: 90px;
  height: auto;
  cursor: pointer;
  border: 0.5px solid white;
}

.header-box:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -250px;
  background-color: #33334d;
  border: 1px solid #ffd700;
  border-radius: 5px;
  padding: 10px;
  width: 1000px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1003; 
}

.dropdown-menu h3 {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.dropdown-menu ul li {
  color: #fff;
  padding: 10px;
  font-size: 0.6rem;
  flex: 2 2 17%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.dropdown-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #252542;
  border: 1px solid #ffd700;
  border-radius: 5px;
  padding: 10px;
  margin: 5px;
}

.dropdown-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px;
}

.approve-badge {
  position: absolute; 
  margin-left: 20%;
  min-width: max-content;
  display: inline-block; 
  background-color: #4caf50;
  color: white;
  font-size: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.approve-badge::after {
  content: ""; 
  position: absolute;
  top: -14px; 
  right: -16px; 
  width: 27px; 
  height: 27px; 
  background-image: url("../assets/icons/aprrove-rabbit.svg"); 
  background-size: cover;
}

.dropdown-card button {
  background-color: #ffd700;
  margin: 5px;
  border: none;
  color: #252542;
  padding: 3px 7px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.dropdown-card button:hover {
  background-color: #e6c200;
  color: white;
  transform: scale(1.2);
}

.dropdown-card button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-color: rgb(0, 174, 255);
  transition: transform 0.5s ease-out;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.dropdown-card button:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) scale(3);
}

.dropdown-card button span {
  position: relative;
  z-index: 1;
}

.header-top nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.header-top nav ul li {
  min-width: max-content;
  display: flex;
  background-color: #33334d;
  padding: 2px;
  margin: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 0.5px solid rgba(255, 255, 255, 0.379);
}

.header-top nav ul li a {
  color: #ffd700;
  text-decoration: none;
  padding: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-size: clamp(14px, 0.8vw, 1rem);
}

.header-top nav ul li:hover {
  background-color: var(--hover-color);
  border-radius: 3px;
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .header-top {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }

  .logo {
    margin-bottom: 15px;
  }

  .header-boxes {
    flex-direction: row;
    margin: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-box {
    margin: 5px;
    min-width: 60px;
  }

  .header-image {
    min-width: 80px;
    max-width: 50%;
  }

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

  .header-top nav ul li {
    margin: 3px;
  }

  .dropdown-menu {
    width: 95vw;
    left: 50% !important;
    transform: translateX(-50%);
    max-width: 800px;
  }
  
  .dropdown-menu ul li {
    flex: 1 1 45%;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: 2px solid #ffd700;
  border-radius: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #e6c200, #ffd700);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #252542;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active {
  background: linear-gradient(135deg, #e6c200, #ffd700);
  transform: scale(1.05);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1e1e2f 0%, #252542 100%);
  z-index: 1002;
  padding: 0;
  overflow-y: auto;
}

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

.mobile-menu-content {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
  padding: 100px 30px 30px;
  box-sizing: border-box;
}

.mobile-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: linear-gradient(135deg, #1e1e2f 0%, #252542 100%);
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1003;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-logo:hover {
  transform: scale(1.05);
}

.mobile-menu-logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-logo span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: 2px solid #ffd700;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  flex-direction: column;
  padding: 8px;
}

.mobile-menu-close:hover {
  background: linear-gradient(135deg, #e6c200, #ffd700);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: #252542;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.mobile-menu-close::before {
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  transform: rotate(-45deg);
}

.mobile-menu-section {
  margin-bottom: 35px;
}

.mobile-menu-section h3 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 10px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-link {
  display: block;
  padding: 16px 20px;
  background: linear-gradient(135deg, #2a2a3c 0%, #33334d 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #ffd700;
  transition: all 0.3s;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-link:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #252542;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-menu-banner {
  background: linear-gradient(135deg, #4caf50, #45a049);
  border: 2px solid #4caf50;
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.mobile-menu-banner h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.mobile-menu-banner p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mobile-nav-section {
  margin-bottom: 30px;
}

.mobile-nav-section h3 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-nav-item {
  display: block;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid #ffd700;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.mobile-nav-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
  color: #fff;
}

.mobile-bonus-section-header {
  display: none;
  background: linear-gradient(135deg, #1e1e2f 0%, #252542 100%);
  padding: 20px;
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.mobile-bonus-section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.mobile-bonus-section-header h3 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.mobile-bonus-section-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.mobile-bonus-section-grid::-webkit-scrollbar {
  display: none;
}

.mobile-bonus-section-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, #2a2a3c 0%, #33334d 100%);
  border-radius: 10px;
  border: 1px solid #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-bonus-section-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.mobile-bonus-section-item:hover::before {
  opacity: 1;
}

.mobile-bonus-section-item:hover {
  background: linear-gradient(135deg, #3a3a4c 0%, #404060 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: #fff;
}

.mobile-bonus-section-item:hover span {
  color: #ffd700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-bonus-section-item:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.mobile-bonus-section-item span {
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.legal-page {
  background: linear-gradient(135deg, #1e1e2f 0%, #252542 100%);
  color: #fff;
  padding: 100px 0;
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-container h1 {
  font-size: 2.5rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.last-updated {
  text-align: center;
  color: #ccc;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
}

.legal-section h2 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.legal-section h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
}

.legal-section p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #e0e0e0;
}

.progress-bar-container {
  position: fixed;
  left: 15px;
  top: 55%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar-track {
  position: relative;
  width: 3px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #ffd700 100%);
  border-radius: 10px;
  transition: height 0.3s ease;
}

.progress-bar-sections {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 500px;
}

.progress-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.progress-section:hover .progress-dot {
  background: #ffd700;
  border-color: #ffd700;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.progress-section.active .progress-dot {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #ffd700;
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
  }
}

.progress-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.progress-section:hover .progress-label {
  opacity: 1;
  transform: translateX(0);
}

.progress-section.active .progress-label {
  color: #ffd700;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .progress-bar-container {
    display: none;
  }
}

.mobile-nav-bar {
  display: none;
  background: linear-gradient(135deg, #1e1e2f 0%, #252542 100%);
  padding: 20px 0; 
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav-scroll {
  display: flex;
  overflow-x: auto;
  gap: 8px; 
  padding: 0 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start; 
  scroll-behavior: smooth; 
  position: relative;
}

.mobile-nav-scroll::before,
.mobile-nav-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  pointer-events: none;
  z-index: 1;
}

.mobile-nav-scroll::before {
  left: 0;
  background: linear-gradient(to right, rgba(30, 30, 47, 1), transparent);
}

.mobile-nav-scroll::after {
  right: 0;
  background: linear-gradient(to left, rgba(30, 30, 47, 1), transparent);
}

.mobile-nav-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-nav-link {
  display: inline-block;
  padding: 8px 12px; 
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 20px; 
  border: 1px solid #ffd700;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 0.8rem; 
  white-space: nowrap;
  min-width: max-content;
  flex-shrink: 0; 
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #fff;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .logo {
    order: 1;
    margin-bottom: 0;
  }

  .logo img {
    height: 50px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

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

  .mobile-bonus-section-header {
    display: block;
  }

  .mobile-bonus-section-item {
    min-height: 40px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bonus-section-item:focus {
    outline: 3px solid rgba(255, 215, 0, 0.5);
    outline-offset: 2px;
  }

  .header-boxes {
    display: none;
  }

  .header-top nav {
    display: none;
  }

  .dropdown-menu {
    display: none !important;
  }

  .header-box:hover .dropdown-menu {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .header-top nav ul li a {
    padding: 2px;
    font-size: 0.6rem;
  }
  .dropdown-menu {
    width: 100%; 
    left: -50px; 
  }
}

.main-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  box-shadow: 0 8px 16px var(--shadow-color);
}

.main-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(30, 30, 47, 0.9), transparent);
  z-index: 1;
}

.hero-top {
  width: 100%;
  padding: 0 20px;
  z-index: 1;
  color: var(--text-color);
}

.hero-top h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-top p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  z-index: 1;
}

.hero-box {
  flex: 1;
  max-width: 45%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.hero-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.hero-box h2 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--text-color);
}

.hero-box p {
  font-size: 0.8rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .main-hero {
    padding: 30px 15px;
  }

  .hero-top h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-top p {
    font-size: 1rem;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .hero-box {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
    padding: 15px;
  }

  .hero-box h2 {
    font-size: 0.9rem;
  }

  .hero-box p {
    font-size: 0.75rem;
  }

  .cta-button {
    font-size: 0.6rem;
    padding: 10px 20px;
  }
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.card {
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  width: 300px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 0;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  opacity: 0;
  transition: opacity 0.3s;
  animation: holographic 1.5s infinite alternate;
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

@keyframes holographic {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.card img {
  width: 100%;
  border-bottom: 2px solid #764ba2;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
  position: relative;
}

.card-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.7rem;
  margin-bottom: 20px;
}

.card-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #764ba2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1;
  position: relative;
}

.card-content a:hover {
  background-color: #667eea;
  transform: scale(1.1);
}

.benefits {
  padding: 50px 20px;
  margin-top: 10px;
  background-color: #252542;
  border-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-bottom: 10px;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.benefits-content {
  max-width: max-content;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.benefit {
  background-color: #33334d;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 215px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.benefit p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #ccc;
}

.features {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
}

.features-content {
  display: flex;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.feature {
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  width: calc(100% - 40px);
  max-width: 600px;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px var(--shadow-color);
  background-color: var(--hover-color);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.feature p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #ccc;
}

footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  border-top: 3px solid #ffd700;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: #999;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

.safety-measures {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 15px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.safety-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
}

.safety-icon {
  color: #ffc107;
  font-size: 16px;
  font-weight: bold;
}

.safety-rotator {
  position: relative;
  height: 24px;
  overflow: hidden;
  margin-bottom: 10px;
}

.safety-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  color: #e0e0e0;
  font-size: 13px;
  line-height: 1.4;
}

.safety-message.active {
  opacity: 1;
  transform: translateY(0);
}

.safety-message strong {
  color: #ffc107;
}

.help-resources {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: 4px;
  padding: 8px 12px;
  margin-top: 8px;
  font-size: 12px;
}

.help-resources a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.help-resources a:hover {
  color: #ff5252;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .safety-measures {
    padding: 10px 12px;
    margin: 10px 5px;
  }
  
  .safety-header {
    font-size: 13px;
  }
  
  .safety-message {
    font-size: 12px;
  }
  
  .help-resources {
    padding: 6px 8px;
    font-size: 11px;
  }
}

@keyframes animate {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.5) translate(30px, 30px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

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

  .main-hero {
    padding: 20px 10px;
  }

  .hero-top h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-top p {
    font-size: 0.9rem;
  }

  .hero-bottom {
    flex-direction: column;
    padding: 10px;
  }

  .hero-box {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
  }

  .hero-box h2 {
    font-size: 1rem;
  }

  .hero-box p {
    font-size: 0.8rem;
  }

  .card {
    width: calc(100% - 20px);
    margin: 10px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h2 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.7rem;
  }

  .benefit,
  .feature {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 15px;
  }

  .benefit h3,
  .feature h3 {
    font-size: 1rem;
  }

  .benefit p,
  .feature p {
    font-size: 0.8rem;
  }

  .benefits-content,
  .features-content {
    flex-direction: column;
    align-items: center;
  }

  .benefits h2,
  .features h2 {
    font-size: 1.8rem;
  }

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

  .games-container .card {
    width: calc(100% - 20px);
    margin: 10px;
  }

  .games-container .card-content h3 {
    font-size: 1.2rem;
  }

  .games-container .card-content p {
    font-size: 0.9rem;
  }

  .bonuses-section h2 {
    font-size: 1.5rem;
  }

  .bonuses-container {
    flex-direction: column;
    align-items: center;
  }

  .bonuses-box {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 15px;
  }

  .bonuses-box h3 {
    font-size: 1.2rem;
  }

  .bonuses-box p {
    font-size: 0.9rem;
  }

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

  .faq-item {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 15px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.8rem;
  }

  .free-spins-container h2 {
    font-size: 2rem;
  }

  .free-spins-container p {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.7rem;
    padding: 10px 20px;
  }

  .promotions h2 {
    font-size: 2rem;
  }

  .promotion {
    width: calc(100% - 20px);
    margin: 15px;
    padding: 20px;
  }

  .promotion h3 {
    font-size: 1rem;
  }

  .promotion p {
    font-size: 0.8rem;
  }

  .strategies h2 {
    font-size: 1.8rem;
  }

  .strategy {
    width: calc(100% - 20px);
    margin: 15px;
    padding: 20px;
  }

  .strategy h3 {
    font-size: 1rem;
  }

  .strategy p {
    font-size: 0.8rem;
  }

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

  .slots-strategy,
  .casino-strategy {
    width: calc(100% - 20px);
    margin: 15px;
    padding: 20px;
  }

  .slots-strategy h3,
  .casino-strategy h3 {
    font-size: 1rem;
  }

  .slots-strategy p,
  .casino-strategy p {
    font-size: 0.8rem;
  }

  .slots-strategy ol,
  .casino-strategy ol {
    padding-left: 15px;
  }

  .slots-strategy ol li,
  .casino-strategy ol li {
    font-size: 0.8rem;
  }

  footer::before,
  footer::after,
  header::before,
  header::after {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .header-top {
    padding: 8px;
    gap: 8px;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .header-boxes {
    gap: 5px;
  }

  .header-box {
    padding: 3px;
  }

  .header-image {
    min-width: 40px;
    max-width: 60px;
  }

  .header-top nav ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .header-top nav ul li a {
    padding: 6px 2px;
    font-size: 0.6rem;
  }

  .main-hero {
    padding: 15px 5px;
  }

  .hero-top h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-top p {
    font-size: 0.8rem;
  }

  .hero-box {
    padding: 10px;
    margin-bottom: 10px;
  }

  .hero-box h2 {
    font-size: 0.9rem;
  }

  .hero-box p {
    font-size: 0.7rem;
  }

  .card {
    width: calc(100% - 10px);
    margin: 5px;
  }

  .card-content {
    padding: 10px;
  }

  .card-content h2 {
    font-size: 0.9rem;
  }

  .card-content p {
    font-size: 0.6rem;
  }

  .benefit,
  .feature {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 10px;
  }

  .benefit h3,
  .feature h3 {
    font-size: 0.9rem;
  }

  .benefit p,
  .feature p {
    font-size: 0.7rem;
  }

  .benefits h2,
  .features h2 {
    font-size: 1.5rem;
  }

  .games-section h2 {
    font-size: 1.8rem;
  }

  .games-container .card {
    width: calc(100% - 10px);
    margin: 5px;
  }

  .bonuses-section h2 {
    font-size: 1.3rem;
  }

  .bonuses-box {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 10px;
  }

  .bonuses-box h3 {
    font-size: 1rem;
  }

  .bonuses-box p {
    font-size: 0.8rem;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-item {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 10px;
  }

  .faq-item h3 {
    font-size: 0.9rem;
  }

  .faq-item p {
    font-size: 0.7rem;
  }

  .free-spins-container h2 {
    font-size: 1.8rem;
  }

  .free-spins-container p {
    font-size: 0.8rem;
  }

  .cta-button {
    font-size: 0.6rem;
    padding: 8px 16px;
  }

  .promotions h2 {
    font-size: 1.8rem;
  }

  .promotion {
    width: calc(100% - 10px);
    margin: 10px;
    padding: 15px;
  }

  .promotion h3 {
    font-size: 0.9rem;
  }

  .promotion p {
    font-size: 0.7rem;
  }

  .strategies h2 {
    font-size: 1.5rem;
  }

  .strategy {
    width: calc(100% - 10px);
    margin: 10px;
    padding: 15px;
  }

  .strategy h3 {
    font-size: 0.9rem;
  }

  .strategy p {
    font-size: 0.7rem;
  }

  .slots-strategies-section h2 {
    font-size: 1.8rem;
  }

  .slots-strategy,
  .casino-strategy {
    width: calc(100% - 10px);
    margin: 10px;
    padding: 15px;
  }

  .slots-strategy h3,
  .casino-strategy h3 {
    font-size: 0.9rem;
  }

  .slots-strategy p,
  .casino-strategy p {
    font-size: 0.7rem;
  }

  .slots-strategy ol li,
  .casino-strategy ol li {
    font-size: 0.7rem;
  }
}

#about {
  padding: 0px 20px;
  background-color: #252542;
  color: var(--text-color);
  padding-bottom: 50px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-bottom: 10px;
}

.about-container {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.text-container {
  flex: 1 1 50%;
  max-width: 70%;
  background-color: #33334d;
  padding: 34px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.text-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  padding: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2, #ffd700, #667eea);
  background-size: 300% 300%;
  z-index: -1;
  animation: moveGradient 7s linear infinite;
}

.text-container::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #33334d;
  border-radius: 7px;
  z-index: -1;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rabbit-container {
  flex: 0 0 30%;
  position: relative;
  text-align: right;
}

.rabbit-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation: subtleMovement 10s ease infinite;
}

.tooltip {
  visibility: hidden;
  width: 250px;
  background-color: rgba(0, 0, 0, 0.638);
  border: 1px solid #ffd700;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: calc(0% + 10px);
  right: 13%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tooltip span {
  display: block;
  margin-bottom: 10px;
}

.exclusive-cta-button {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exclusive-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.rabbit-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

#about p {
  font-size: clamp(18px, 1.2vw, 1.3rem);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  #about {
    padding: 20px 10px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }

  .text-container,
  .rabbit-container {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .text-container {
    padding: 20px;
    margin-bottom: 20px;
  }

  .rabbit-container {
    order: -1;
    margin-bottom: 20px;
  }

  .rabbit-container img {
    max-width: 150px;
  }

  .tooltip {
    top: calc(100% + 10px);
    right: 50%;
    transform: translateX(50%);
    width: 180px;
    font-size: 0.7rem;
  }
  
  .exclusive-cta-button {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  #about p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  #about {
    padding: 15px 5px;
  }

  .text-container {
    padding: 15px;
  }

  .rabbit-container img {
    max-width: 120px;
  }

  .tooltip {
    width: 140px;
    font-size: 0.6rem;
  }
  
  .exclusive-cta-button {
    font-size: 0.55rem;
    padding: 4px 8px;
  }

  #about p {
    font-size: 0.9rem;
  }
}

@keyframes subtleMovement {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-3px, -3px);
  }
  50% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(3px, 3px);
  }
  100% {
    transform: translate(0, 0);
  }
}

#curated-bonuses {
  margin-top: 10px;
}

#card-container {
  border-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  box-shadow: 0 8px 16px var(--shadow-color);
  background-color: var(--bg-color);
}

#card-container .text-centered h1 {
  font-size: clamp(24px, 2vw, 2rem);
  text-transform: uppercase;
  text-align: center;
}

.games-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  border-radius: 25px;
  
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  box-shadow: 0 8px 16px var(--shadow-color);
}

.games-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.games-container .card {
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  width: 300px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s, box-shadow 0.3s;
}

.games-container .card img {
  width: 100%;
  border-bottom: 2px solid #764ba2;
  transition: transform 0.3s;
}

.games-container .card:hover img {
  transform: scale(1.1);
}

.games-container .card-content {
  padding: 20px;
}

.games-container .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.games-container .card-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.games-container .card-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #764ba2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.games-container .card-content a:hover {
  background-color: #667eea;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .games-container .card {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 480px) {
  .games-container .card {
    width: calc(100% - 40px);
  }
}

.bonuses-section {
  padding: 50px 20px;
  margin-top: 10px;
  background: linear-gradient(to bottom, #1e1e2f, #252542);
  color: var(--text-color);
  text-align: center;
  border-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
}

.bonuses-section h2 {
  font-size: clamp(24px, 2.2vw, 1.8rem);
  margin-bottom: 30px;
}

.bonuses-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.bonuses-box {
  position: relative;
  display: inline-block;
  margin: 20px;
  padding: 20px;
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 250px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  transition: transform 0.2s;
}
.bonuses-box:nth-child(1) {
  border: 2px solid #f9627b;
}

.bonuses-box:nth-child(2) {
  border: 2px solid #764ba2;
}

.bonuses-box:nth-child(3) {
  border: 2px solid #667eea;
}

.bonuses-box:nth-child(4) {
  border: 2px solid #ffd700;
}
.magical-light {
  position: absolute;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.127);
  box-shadow: 0 0 100px 140px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: left 0.2s ease, top 0.2s ease, opacity 0.5s ease;
  mix-blend-mode: overlay;
}

.bonuses-box h3 {
  font-size: clamp(18px, 1.4vw, 1.7rem);
  margin-bottom: 10px;
}

.bonuses-box p {
  font-size: clamp(16px, 1vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .bonuses-container {
    flex-direction: column;
    align-items: center;
  }
}

.faq-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  border-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.faq-item {
  background-color: #2a2a3c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: center;
  }
}

.free-spins-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.free-spins-container {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
}

.free-spins-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.free-spins-container p {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffd700;
  color: #252542;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background-color: #e65100;
  transform: scale(1.2);
  color: white;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-color: rgb(0, 174, 255);
  transition: transform 0.5s ease-out;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.cta-button:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) scale(3);
}

@media screen and (max-width: 768px) {
  .free-spins-container {
    padding: 20px;
  }
}

.promotions {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.promotions h2 {
  font-size: 2.5rem;
  color: var(--text-color);
}

.promotions-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.promotion {
  background-color: #1f253d;
  border-radius: 15px;
  padding: 30px;
  margin: 30px;
  width: calc(100% - 60px);
  max-width: 700px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.promotion:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
  background-color: #1a1f2f;
  transition: 0.3s ease-in-out;
}
.promotion:nth-child(1):hover {
  transform: scale(1.02) rotate(1deg);
}
.promotion:nth-child(2):hover {
  transform: scale(1.05) rotate(-1deg);
}
.promotion:nth-child(3):hover {
  transform: scale(1.03) rotate(1deg);
}
.promotion:nth-child(4):hover {
  transform: scale(1.06) rotate(-1deg);
}
.promotion:nth-child(5):hover {
  transform: scale(1.03) rotate(1deg);
}
.promotion:nth-child(6):hover {
  transform: scale(1.02) rotate(-1deg);
}
.promotion:hover h3 {
  color: #667eea;
}
.promotion:hover p {
  color: #ccc;
}

.promotion h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.promotion p {
  font-size: 0.7rem;
  line-height: 1.8;
  color: #999;
}

.strategies {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
}

.strategies-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.strategy {
  background-color: var(--accent-color);
  border-radius: 15px;
  padding: 30px;
  margin: 30px;
  width: calc(100% - 60px);
  max-width: 700px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.strategy:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  background-color: #2d3755;
}

.strategies h2 {
  font-size: 2rem;
}
.strategy h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.strategy p {
  font-size: 0.7rem;
  line-height: 1.8;
  color: #ccc;
}

.slots-strategies-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  border-top: 3px solid rgba(255, 255, 255, 0.436);
  margin-top: 10px;
}

.slots-strategies-section h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.slots-strategies-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.slots-strategy,
.casino-strategy {
  background-color: #1f253d;
  border-radius: 15px;
  padding: 30px;
  margin: 30px;
  width: calc(100% - 60px);
  max-width: 700px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.slots-strategy:hover,
.casino-strategy:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8);
  background-color: #1a1f2f;
  transition: 0.3s ease-in-out;
}

.slots-strategy:nth-child(odd):hover,
.casino-strategy:nth-child(odd):hover {
  transform: scale(1.02) rotate(1deg);
}

.slots-strategy:nth-child(even):hover,
.casino-strategy:nth-child(even):hover {
  transform: scale(1.05) rotate(-1deg);
}

.slots-strategy h3,
.casino-strategy h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.slots-strategy p,
.casino-strategy p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
}

.slots-strategy:hover h3,
.casino-strategy:hover h3 {
  color: #667eea;
}

.slots-strategy:hover p,
.casino-strategy:hover p {
  color: #ccc;
}

.slots-strategy ol,
.casino-strategy ol {
  margin-top: 15px;
  padding-left: 20px;
}

.slots-strategy ol li,
.casino-strategy ol li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}

.premium-offers-section {
  background: linear-gradient(135deg, #1e1e2f 0%, #252542 100%);
  padding: 80px 20px;
  padding-bottom: 50px;
  position: relative;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.436);
  margin-bottom: 10px;
}

.premium-offers-container {
  max-width: 1200px;
  margin: 0 auto;
}

.premium-offers-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 15px;
}

.premium-offers-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 40px;
}

.premium-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.premium-tab {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: #ffd700;
}

.premium-tab:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-tab.active {
  background: #ffd700;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.tab-icon {
  font-size: 1.3rem;
}

.tab-label {
  font-size: 1rem;
}

.premium-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.premium-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.premium-card {
  background: #252542;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.premium-card:hover::before {
  opacity: 0.1;
}

.instant-wins-card {
  border-color: #ff6b6b;
}

.instant-wins-card::before {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.high-roller-card {
  border-color: #9b59b6;
}

.high-roller-card::before {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.free-money-card {
  border-color: #2ecc71;
}

.free-money-card::before {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.low-wager-card {
  border-color: #3498db;
}

.low-wager-card::before {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.cashback-card {
  border-color: #f39c12;
}

.cashback-card::before {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.vip-only-card {
  border-color: #ffd700;
}

.vip-only-card::before {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.premium-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffd700;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  z-index: 2;
  border: 1px solid #ffd700;
}

.premium-card-icon {
  font-size: 2.5rem;
  margin: 15px 0;
  position: relative;
  z-index: 1;
}

.premium-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.premium-card-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.premium-card-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.premium-perk {
  position: relative;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-perk:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.perk-label {
  font-weight: bold;
}

.perk-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #ffd700;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  z-index: 10;
  pointer-events: none;
}

.premium-perk:hover .perk-tooltip {
  opacity: 1;
  visibility: visible;
}

.perk-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #ffd700;
}

.premium-card-highlight {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #ffd700;
  position: relative;
  z-index: 1;
}

.highlight-icon {
  font-size: 1.1rem;
}

.premium-card-button {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-card-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

@media (max-width: 1024px) {
  .premium-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .premium-offers-section {
    padding: 60px 20px;
  }

  .premium-offers-title {
    font-size: 2rem;
  }

  .premium-offers-subtitle {
    font-size: 1rem;
  }

  .premium-tabs {
    gap: 8px;
  }

  .premium-tab {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .tab-icon {
    font-size: 1.1rem;
  }

  .tab-label {
    font-size: 0.85rem;
  }

  .premium-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .premium-card {
    padding: 20px;
  }

  .premium-card-title {
    font-size: 1.2rem;
  }

  .premium-card-value {
    font-size: 1.3rem;
  }

  .premium-perk {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .premium-offers-title {
    font-size: 1.6rem;
  }

  .premium-offers-subtitle {
    font-size: 0.9rem;
  }

  .premium-tab {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .premium-card {
    padding: 15px;
  }

  .premium-card-icon {
    font-size: 2rem;
  }

  .premium-card-title {
    font-size: 1.1rem;
  }

  .premium-card-value {
    font-size: 1.2rem;
  }
}

.top-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 3px solid #ffd700;
  position: sticky;
  top: 0;
  z-index: 1001; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.bonus-dropdowns {
  display: flex;
  gap: 15px;
  flex: 1;
  order: 1; 
}

.grand-prize-banner {
  order: 2; 
}

.grand-prize-banner {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  animation: bannerGlow 2s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.grand-prize-banner:hover {
  transform: scale(1.05);
}

@keyframes bannerGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 107, 107, 0.8);
  }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-icon {
  font-size: 2.5rem;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.banner-text {
  flex: 1;
}

.banner-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: 0.9rem;
  color: #ffe;
  font-weight: 600;
}

.unlock-button {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.unlock-button:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.unlock-icon {
  font-size: 1.3rem;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.banner-pulse {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 15px;
  border: 3px solid rgba(255, 215, 0, 0.5);
  animation: pulse-border 2s ease infinite;
  pointer-events: none;
}

@keyframes pulse-border {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-modal.active {
  opacity: 1;
}

.game-modal-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  border: 3px solid #ffd700;
  animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-100px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.game-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

.game-close:hover {
  transform: rotate(90deg);
  color: #ff6b6b;
}

.game-container {
  text-align: center;
}

.game-title {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.slot-machine {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.slot-reel {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2d3561 0%, #1f2544 100%);
  border: 4px solid #ffd700;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.slot-reel.spinning {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.slot-symbol {
  font-size: 4rem;
  animation: symbolPulse 1s ease infinite;
}

@keyframes symbolPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.spin-button {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border: none;
  padding: 18px 40px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.3rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
}

.spin-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

.spin-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spin-icon {
  font-size: 1.5rem;
  animation: spinIcon 2s linear infinite;
}

@keyframes spinIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.game-message {
  margin-top: 30px;
  min-height: 150px;
}

.win-message, .lose-message {
  padding: 20px;
  border-radius: 15px;
  animation: messageAppear 0.5s ease;
}

@keyframes messageAppear {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.win-message {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.lose-message {
  background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
}

.win-icon, .lose-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.win-message h3, .lose-message h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.win-message p, .lose-message p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.redirect-button {
  background: #fff;
  color: #1a1a2e;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.redirect-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.game-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.game-info p {
  font-size: 0.95rem;
  color: #aaa;
  margin: 8px 0;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
  to {
    transform: translateY(600px) rotate(720deg);
    opacity: 0;
  }
}

.grand-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.grand-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="50%" y="50%" font-size="40" text-anchor="middle" fill="rgba(255,255,255,0.1)">🎰</text></svg>');
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.grand-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.grand-hero-badge {
  display: inline-block;
  background: #ffd700;
  color: #1a1a2e;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.grand-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.grand-hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.grand-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  color: #f0f0f0;
  margin-top: 5px;
}

.grand-bonuses-section {
  padding: 80px 20px;
  background: var(--bg-color);
}

.grand-cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.grand-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.grand-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #ffd700;
}

.cta-button.secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .top-header-content {
    flex-direction: column;
    padding: 15px 20px;
  }

  .bonus-dropdowns {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .grand-prize-banner {
    width: 100%;
  }

  .banner-content {
    justify-content: space-between;
  }

  .banner-icon {
    font-size: 2rem;
  }

  .banner-title {
    font-size: 1rem;
  }

  .banner-subtitle {
    font-size: 0.8rem;
  }

  .unlock-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .game-modal-content {
    padding: 25px;
    width: 95%;
  }

  .game-title {
    font-size: 1.5rem;
  }

  .game-subtitle {
    font-size: 0.95rem;
  }

  .slot-machine {
    gap: 10px;
  }

  .slot-reel {
    width: 90px;
    height: 90px;
  }

  .slot-symbol {
    font-size: 3rem;
  }

  .spin-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .grand-hero h1 {
    font-size: 2rem;
  }

  .grand-hero p {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .grand-hero-stats {
    gap: 30px;
  }

  .grand-cta-content h2 {
    font-size: 1.8rem;
  }
}

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

  .unlock-button {
    width: 100%;
  }

  .slot-reel {
    width: 70px;
    height: 70px;
  }

  .slot-symbol {
    font-size: 2.5rem;
  }
}

.grand-prize-banner {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.grand-prize-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.banner-pulse {
  display: none;
}

.banner-icon {
  display: none;
}

.unlock-icon {
  display: none;
}

.spin-icon {
  display: none;
}

.banner-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: 0.85rem;
  color: #ffe;
  font-weight: 600;
}

.unlock-button {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-title {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.slot-symbol {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -2px;
}

.spin-counter {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: 700;
}

.spin-counter span {
  font-size: 2rem;
  color: #ff6b6b;
  font-weight: 900;
}

.try-again-message {
  padding: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  border-radius: 12px;
  animation: messageAppear 0.5s ease;
}

.try-again-message h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.try-again-message p {
  font-size: 1rem;
  color: #f0f0f0;
  margin: 8px 0;
}

.encouragement {
  font-weight: 700;
  color: #ffd700 !important;
  margin-top: 15px !important;
  font-size: 1.1rem !important;
}

.spinning-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  animation: textPulse 1s ease infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.game-inspiration {
  font-size: 1.1rem;
  font-style: italic;
  color: #ffd700;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
  border-radius: 8px;
}

.game-rules {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.game-rules p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #ccc;
}

.game-rules strong {
  color: #ffd700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .grand-prize-banner {
    padding: 8px 15px;
  }
  
  .banner-title {
    font-size: 0.9rem;
  }
  
  .banner-subtitle {
    font-size: 0.75rem;
  }
  
  .unlock-button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .slot-symbol {
    font-size: 2.5rem;
  }
  
  .spin-counter {
    font-size: 1rem;
  }
  
  .spin-counter span {
    font-size: 1.5rem;
  }
}

.slot-symbol {
  font-size: 4rem !important;
  font-weight: 900 !important;
  color: #ffd700 !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 
               2px 2px 8px rgba(0, 0, 0, 0.8) !important;
  font-family: Arial, sans-serif !important;
  transition: all 0.3s ease;
}

.slot-reel.spinning {
  animation: reelSpin 0.1s linear infinite, reelGlow 0.5s ease infinite;
  border-color: #ff6b6b;
}

@keyframes reelSpin {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes reelGlow {
  0%, 100% { 
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 
                0 8px 20px rgba(255, 107, 107, 0.5);
  }
  50% { 
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 
                0 8px 30px rgba(255, 107, 107, 0.9);
  }
}

.slot-reel.stopping {
  animation: reelStop 0.3s ease-out;
  border-color: #ffa500;
}

@keyframes reelStop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.slot-reel.stopped {
  animation: reelPulse 1s ease;
  border-color: #00bcd4;
}

@keyframes reelPulse {
  0%, 100% { 
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 
                0 8px 20px rgba(0, 188, 212, 0.4);
  }
  50% { 
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 
                0 8px 35px rgba(0, 188, 212, 0.8);
  }
}

.slot-reel.winning {
  animation: winningGlow 0.5s ease infinite;
  border-color: #ffd700;
}

@keyframes winningGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(255, 215, 0, 0.8),
                0 0 50px rgba(255, 215, 0, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 
                0 0 50px rgba(255, 215, 0, 1),
                0 0 80px rgba(255, 215, 0, 0.8);
  }
}

.slot-reel.winning .slot-symbol {
  animation: symbolWin 0.5s ease infinite;
  color: #fff !important;
  text-shadow: 0 0 30px rgba(255, 215, 0, 1), 
               0 0 50px rgba(255, 215, 0, 0.8),
               2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

@keyframes symbolWin {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-5deg); }
  75% { transform: scale(1.2) rotate(5deg); }
}

.slot-reel.losing {
  animation: losingFlash 0.5s ease;
}

@keyframes losingFlash {
  0%, 100% {
    background: linear-gradient(135deg, #2d3561 0%, #1f2544 100%);
  }
  25%, 75% {
    background: linear-gradient(135deg, #ff6b6b 0%, #c44569 100%);
    border-color: #ff6b6b;
  }
  50% {
    background: linear-gradient(135deg, #2d3561 0%, #1f2544 100%);
  }
}

.game-modal-content.shake {
  animation: modalShake 0.3s ease infinite;
}

@keyframes modalShake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-2px, 1px) rotate(-0.5deg); }
  20% { transform: translate(2px, -1px) rotate(0.5deg); }
  30% { transform: translate(-1px, 2px) rotate(-0.3deg); }
  40% { transform: translate(1px, -2px) rotate(0.3deg); }
  50% { transform: translate(-2px, 1px) rotate(-0.5deg); }
  60% { transform: translate(2px, -1px) rotate(0.5deg); }
  70% { transform: translate(-1px, 2px) rotate(-0.3deg); }
  80% { transform: translate(1px, -2px) rotate(0.3deg); }
  90% { transform: translate(-1px, 1px) rotate(-0.2deg); }
}

.spinning-text {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: 3px;
  animation: textGlow 1s ease infinite;
}

@keyframes textGlow {
  0%, 100% { 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% { 
    text-shadow: 0 0 20px rgba(255, 215, 0, 1),
                 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

.dots::after {
  content: '';
  animation: dotsAnimation 1.5s infinite;
}

@keyframes dotsAnimation {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}

.win-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  animation: particleBurst 2s ease-out forwards;
}

@keyframes particleBurst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc((var(--random-x, 50) - 50) * 4px), 
      calc((var(--random-y, 50) - 50) * 4px)
    ) scale(0);
    opacity: 0;
  }
}

.try-again-message {
  padding: 25px !important;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
  border-radius: 15px !important;
  animation: messageSlideIn 0.5s ease, messagePulse 2s ease infinite !important;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

@keyframes messageSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes messagePulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.7);
  }
}

.try-again-message h3 {
  font-size: 1.8rem !important;
  margin-bottom: 15px !important;
  animation: textBounce 0.6s ease;
}

@keyframes textBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.encouragement {
  animation: encouragementGlow 1.5s ease infinite !important;
}

@keyframes encouragementGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 1),
                 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

.spin-button {
  position: relative;
  overflow: hidden;
}

.spin-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.spin-button:hover::before {
  width: 300px;
  height: 300px;
}

.spin-button:active {
  transform: scale(0.95);
}

.spin-counter {
  animation: counterPulse 2s ease infinite;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.spin-counter span {
  display: inline-block;
  animation: numberFlip 0.5s ease;
}

@keyframes numberFlip {
  0% { transform: rotateX(0deg); }
  50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}

.game-rules {
  animation: rulesSlideUp 0.8s ease;
}

@keyframes rulesSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .slot-symbol {
    font-size: 3rem !important;
  }
  
  .win-particle {
    width: 8px;
    height: 8px;
  }
}

.game-modal-content {
  padding: 25px 30px !important;
  max-width: 550px !important;
  max-height: 90vh;
  overflow-y: auto;
}

.game-title {
  font-size: 1.6rem !important;
  margin-bottom: 8px !important;
  line-height: 1.2;
}

.game-subtitle {
  font-size: 0.95rem !important;
  margin-bottom: 20px !important;
}

.slot-machine {
  gap: 15px !important;
  margin: 25px 0 !important;
}

.slot-reel {
  width: 100px !important;
  height: 100px !important;
}

.slot-symbol {
  font-size: 3.2rem !important;
}

.spin-counter {
  margin: 15px 0 !important;
  font-size: 1rem !important;
}

.spin-counter span {
  font-size: 1.6rem !important;
}

.spin-button {
  padding: 14px 35px !important;
  font-size: 1.1rem !important;
  margin-top: 15px !important;
}

.game-message {
  margin-top: 20px !important;
  min-height: 100px !important;
}

.game-info {
  margin-top: 20px !important;
  padding-top: 15px !important;
}

.game-inspiration {
  font-size: 0.95rem !important;
  margin-bottom: 15px !important;
  padding: 12px !important;
}

.game-rules {
  padding: 12px !important;
  margin-top: 12px !important;
}

.game-rules p {
  margin: 5px 0 !important;
  font-size: 0.85rem !important;
}

.game-rules strong {
  font-size: 0.95rem !important;
}

.try-again-message {
  padding: 18px !important;
}

.try-again-message h3 {
  font-size: 1.4rem !important;
  margin-bottom: 10px !important;
}

.try-again-message p {
  font-size: 0.95rem !important;
  margin: 6px 0 !important;
}

.encouragement {
  font-size: 1rem !important;
  margin-top: 10px !important;
}

.win-message, .lose-message {
  padding: 18px !important;
}

.win-icon, .lose-icon {
  font-size: 3rem !important;
  margin-bottom: 12px !important;
}

.win-message h3, .lose-message h3 {
  font-size: 1.6rem !important;
  margin-bottom: 8px !important;
}

.win-message p, .lose-message p {
  font-size: 1rem !important;
  margin-bottom: 15px !important;
}

.redirect-button {
  padding: 12px 25px !important;
  font-size: 0.95rem !important;
}

.spinning-text {
  font-size: 1.2rem !important;
}

@media (max-width: 768px) {
  .game-modal-content {
    padding: 20px !important;
    width: 95% !important;
    max-height: 85vh;
  }

  .game-title {
    font-size: 1.3rem !important;
    margin-bottom: 6px !important;
  }

  .game-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }

  .slot-machine {
    gap: 10px !important;
    margin: 20px 0 !important;
  }

  .slot-reel {
    width: 80px !important;
    height: 80px !important;
  }

  .slot-symbol {
    font-size: 2.5rem !important;
  }

  .spin-counter {
    margin: 12px 0 !important;
    font-size: 0.9rem !important;
  }

  .spin-counter span {
    font-size: 1.3rem !important;
  }

  .spin-button {
    padding: 12px 28px !important;
    font-size: 1rem !important;
    margin-top: 12px !important;
  }

  .game-message {
    margin-top: 15px !important;
    min-height: 80px !important;
  }

  .game-info {
    margin-top: 15px !important;
    padding-top: 12px !important;
  }

  .game-inspiration {
    font-size: 0.85rem !important;
    padding: 10px !important;
    margin-bottom: 12px !important;
  }

  .game-rules {
    padding: 10px !important;
  }

  .game-rules p {
    font-size: 0.8rem !important;
  }

  .try-again-message {
    padding: 15px !important;
  }

  .try-again-message h3 {
    font-size: 1.2rem !important;
  }

  .try-again-message p {
    font-size: 0.85rem !important;
  }

  .win-icon, .lose-icon {
    font-size: 2.5rem !important;
  }

  .win-message h3, .lose-message h3 {
    font-size: 1.3rem !important;
  }

  .redirect-button {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .game-modal-content {
    padding: 15px !important;
    max-height: 80vh;
  }

  .game-title {
    font-size: 1.1rem !important;
  }

  .slot-reel {
    width: 70px !important;
    height: 70px !important;
  }

  .slot-symbol {
    font-size: 2rem !important;
  }

  .game-inspiration {
    font-size: 0.8rem !important;
  }

  .game-rules p {
    font-size: 0.75rem !important;
  }
}

.game-modal-content::-webkit-scrollbar {
  width: 8px;
}

.game-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.game-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.5);
  border-radius: 10px;
}

.game-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.8);
}

.confetti {
  display: none !important;
}

.win-particle {
  position: absolute !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 1000 !important;
  animation: particleExplode 1.5s ease-out forwards !important;
}

@keyframes particleExplode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc((random() - 0.5) * 400px), 
      calc((random() - 0.5) * 400px)
    ) scale(0);
    opacity: 0;
  }
}

#home.main-hero {
  margin-top: 0 !important;
}

header {
  top: 0 !important;
}

.progress-bar-container {
  top: calc(53% + 40px) !important;
}

.header-box:first-child .dropdown-menu {
  left: auto !important;
  right: 0 !important;
}

.dropdown-menu.first {
  left: auto !important;
  right: 0 !important;
  transform-origin: top right !important;
}

.header-box:first-child .dropdown-menu::before {
  left: auto !important;
  right: 20px !important;
}

@media (max-width: 1024px) {
  #home.main-hero {
    margin-top: 0 !important;
  }
  
  .dropdown-menu.first {
    right: 0 !important;
    left: auto !important;
  }
}

@media (max-width: 768px) {
  #home.main-hero {
    margin-top: 0 !important;
  }
}

.dropdown-menu {
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  min-width: 300px;
  z-index: 1003 !important; 
}

.header-box:hover .dropdown-menu {
  transform: translateX(-50%) translateY(0) !important;
}

.bonus-dropdowns .header-box:first-child .dropdown-menu,
.header-boxes .header-box:first-child .dropdown-menu {
  left: 0 !important;
  right: auto !important;
  transform: translateX(0) translateY(10px) !important;
}

.bonus-dropdowns .header-box:first-child:hover .dropdown-menu,
.header-boxes .header-box:first-child:hover .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

.bonus-dropdowns .header-box:last-child .dropdown-menu,
.header-boxes .header-box:last-child .dropdown-menu {
  left: auto !important;
  right: -50px !important;
  transform: translateX(0) translateY(10px) !important;
}

.bonus-dropdowns .header-box:last-child:hover .dropdown-menu,
.header-boxes .header-box:last-child:hover .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

.bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
.header-boxes .header-box:nth-child(2) .dropdown-menu {
  left: auto !important;
  right: -50px !important;
  transform: translateX(0) translateY(10px) !important;
}

.bonus-dropdowns .header-box:nth-child(2):hover .dropdown-menu,
.header-boxes .header-box:nth-child(2):hover .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

@media (max-width: 1200px) {
  .dropdown-menu {
    max-width: 280px;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    max-width: 90vw;
    min-width: 200px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
  }
  
  .header-box:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0) !important;
  }
}

.bonus-dropdowns .header-box:last-child .dropdown-menu,
.header-boxes .header-box:last-child .dropdown-menu {
  left: auto !important;
  right: -30px !important;
  transform: translateX(0) translateY(10px) !important;
}

.bonus-dropdowns .header-box:last-child:hover .dropdown-menu,
.header-boxes .header-box:last-child:hover .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

@media (max-width: 1200px) {
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -20px !important;
  }
}

@media (max-width: 768px) {
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
  }
  
  .bonus-dropdowns .header-box:last-child:hover .dropdown-menu,
  .header-boxes .header-box:last-child:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0) !important;
  }
}

.progress-bar-container {
  left: 15px !important;
  gap: 10px !important;
}

.progress-bar-track {
  width: 3px !important;
  height: 500px !important;
}

.progress-bar-sections {
  height: 500px !important;
}

.progress-dot {
  width: 10px !important;
  height: 10px !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.progress-section:hover .progress-dot {
  transform: scale(1.2) !important;
}

.progress-section.active .progress-dot {
  transform: scale(1.3) !important;
}

.progress-label {
  font-size: 13px !important;
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .progress-bar-track {
    height: 450px !important;
  }
  
  .progress-bar-sections {
    height: 450px !important;
  }
  
  .progress-label {
    font-size: 12px !important;
  }
}

@media (min-width: 1401px) {
  .progress-bar-track {
    height: 520px !important;
  }
  
  .progress-bar-sections {
    height: 520px !important;
  }
}

.bonus-dropdowns .header-box:last-child .dropdown-menu,
.header-boxes .header-box:last-child .dropdown-menu {
  right: -30px !important;
}

@media (max-width: 1400px) {
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -20px !important;
  }
  
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu {
    right: -30px !important;
  }
}

@media (max-width: 1200px) {
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -10px !important;
  }
  
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu {
    right: -20px !important;
  }
}

.session-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.session-popup.show {
  opacity: 1;
  visibility: visible;
}

.session-popup-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 30px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.session-popup.show .session-popup-content {
  transform: scale(1);
}

.session-popup-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.session-popup-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.session-popup-header h3 {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.session-popup-body {
  text-align: center;
}

.session-popup-body p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.session-popup-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.session-popup-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.session-popup-btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.session-popup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.session-popup-btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.session-popup-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@keyframes sessionPopupSlideIn {
  from {
    transform: translateY(-50px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.session-popup.show .session-popup-content {
  animation: sessionPopupSlideIn 0.4s ease-out;
}

@media (max-width: 768px) {
  .session-popup-content {
    padding: 25px;
    max-width: 95%;
  }
  
  .session-popup-header h3 {
    font-size: 1.3rem;
  }
  
  .session-popup-body p {
    font-size: 1rem;
  }
  
  .session-popup-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .session-popup-btn {
    width: 100%;
    max-width: 200px;
  }
}

.bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
.header-boxes .header-box:nth-child(2) .dropdown-menu {
  left: auto !important;
  right: -350px !important; 
  transform: translateX(0) translateY(10px) !important;
}

.bonus-dropdowns .header-box:nth-child(2):hover > .dropdown-menu,
.header-boxes .header-box:nth-child(2):hover > .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

.bonus-dropdowns .header-box:last-child .dropdown-menu,
.header-boxes .header-box:last-child .dropdown-menu {
  left: auto !important;
  right: -150px !important; 
  transform: translateX(0) translateY(10px) !important;
}

.bonus-dropdowns .header-box:last-child:hover > .dropdown-menu,
.header-boxes .header-box:last-child:hover > .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

@media (max-width: 1400px) {
  
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu {
    right: -250px !important;
  }
  
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -100px !important;
  }
}

@media (max-width: 1200px) {
  
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu {
    right: -150px !important;
  }
  
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -50px !important;
  }
}

@media (max-width: 900px) {
  
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu,
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
  }
  
  .bonus-dropdowns .header-box:nth-child(2):hover > .dropdown-menu,
  .header-boxes .header-box:nth-child(2):hover > .dropdown-menu,
  .bonus-dropdowns .header-box:last-child:hover > .dropdown-menu,
  .header-boxes .header-box:last-child:hover > .dropdown-menu {
    transform: translateX(-50%) translateY(0) !important;
  }
}

.main-hero {
  position: relative !important;
  padding-top: 60px !important;
  margin-top: 0 !important;
}

.dropdown-menu {
  left: 0 !important;
  right: auto !important;
  
  width: min(1000px, calc(100vw - 32px)) !important; 
  max-width: none !important;
  transform: translateY(10px) !important;
}

.header-box:hover .dropdown-menu {
  transform: translateY(0) !important;
}

.header-box { position: relative !important; }
.bonus-dropdowns, .header-boxes { overflow: visible !important; }

.dropdown-menu.middle {
  left: auto !important;
  right: -350px !important; 
  transform-origin: top right !important;
}

.dropdown-menu.last {
  left: auto !important;
  right: -150px !important; 
  transform-origin: top right !important;
}

.header-box:hover .dropdown-menu.middle,
.header-box:hover .dropdown-menu.last {
  transform: translateX(0) translateY(0) !important;
}

@media (max-width: 1400px) {
  .dropdown-menu.middle {
    right: -250px !important;
  }
  .dropdown-menu.last {
    right: -100px !important;
  }
}

@media (max-width: 1200px) {
  .dropdown-menu.middle {
    right: -150px !important;
  }
  .dropdown-menu.last {
    right: -50px !important;
  }
}

@media (max-width: 900px) {
  .dropdown-menu.middle,
  .dropdown-menu.last {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
  }
  
  .header-box:hover .dropdown-menu.middle,
  .header-box:hover .dropdown-menu.last {
    transform: translateX(-50%) translateY(0) !important;
  }
}

.bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
.header-boxes .header-box:nth-child(2) .dropdown-menu {
  left: auto !important;
  right: -350px !important;              
  transform-origin: top right !important;
}

.bonus-dropdowns .header-box:last-child .dropdown-menu,
.header-boxes .header-box:last-child .dropdown-menu {
  left: auto !important;
  right: -150px !important;              
  transform-origin: top right !important;
}

.bonus-dropdowns .header-box:nth-child(2):hover > .dropdown-menu,
.header-boxes .header-box:nth-child(2):hover > .dropdown-menu,
.bonus-dropdowns .header-box:last-child:hover > .dropdown-menu,
.header-boxes .header-box:last-child:hover > .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

@media (max-width: 1400px) {
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu {
    right: -250px !important;
  }
  
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -100px !important;
  }
}

@media (max-width: 1200px) {
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu {
    right: -150px !important;
  }
  
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu {
    right: -50px !important;
  }
}

@media (max-width: 900px) {
  .bonus-dropdowns .header-box:nth-child(2) > .dropdown-menu,
  .header-boxes .header-box:nth-child(2) > .dropdown-menu,
  .bonus-dropdowns .header-box:last-child > .dropdown-menu,
  .header-boxes .header-box:last-child > .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
  }
  
  .bonus-dropdowns .header-box:nth-child(2):hover > .dropdown-menu,
  .header-boxes .header-box:nth-child(2):hover > .dropdown-menu,
  .bonus-dropdowns .header-box:last-child:hover > .dropdown-menu,
  .header-boxes .header-box:last-child:hover > .dropdown-menu {
    transform: translateX(-50%) translateY(0) !important;
  }
}

.main-hero::before {
  display: none !important;
}

.main-hero::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 80px !important;
  background: linear-gradient(
    to bottom, 
    rgba(30, 30, 47, 0.9) 0%,
    rgba(30, 30, 47, 0.5) 30%,
    rgba(102, 126, 234, 0.2) 60%,
    transparent 100%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.hero-top,
.hero-bottom {
  position: relative !important;
  z-index: 2 !important;
}

.main-hero {
  background: linear-gradient(
    135deg, 
    #667eea 0%, 
    #764ba2 50%, 
    #667eea 100%
  ) !important;
}

header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.top-header {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

@media (max-width: 768px) {
  .main-hero {
    padding-top: 50px !important;
  }
  
  .main-hero::after {
    height: 60px !important;
  }

  .mobile-menu {
    z-index: 1002 !important;
  }
  
  .mobile-menu-header {
    z-index: 1003 !important;
  }

  .top-header {
    z-index: 1000 !important;
  }

  .grand-prize-banner {
    z-index: 999 !important;
  }

  .top-header {
    position: relative !important;
    width: 100% !important;
    z-index: 10 !important;
    padding: 8px 0 !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border-bottom: 2px solid #ffd700 !important;
  }
  
  .top-header-content {
    padding: 5px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  
  .bonus-dropdowns {
    display: none !important; 
  }

  .grand-prize-banner {
    padding: 6px 10px !important;
    font-size: 0.7rem !important;
    border-radius: 6px !important;
    margin: 0 !important;
  }
  
  .banner-content {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
  
  .banner-text {
    width: 100% !important;
  }
  
  .banner-title {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }
  
  .banner-subtitle {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
  }
  
  .unlock-button {
    padding: 4px 8px !important;
    font-size: 0.65rem !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-block !important;
  }

  header {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1001 !important;
    transition: all 0.3s ease !important;
    background: #252542 !important;
    border-bottom: 2px solid #ffd700 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  }
  
  .header-top {
    padding: 8px 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 60px !important;
  }
  
  .logo {
    flex-shrink: 0 !important;
  }
  
  .logo img {
    height: 45px !important;
  }
  
  .logo-text {
    font-size: 1rem !important;
  }

  header nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    order: 2 !important;
    flex-shrink: 0 !important;
  }

  .mobile-nav-bar {
    position: relative !important;
    width: 100% !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 12px 0 !important;
  }
  
  .mobile-nav-scroll {
    padding: 0 10px !important;
  }
  
  .mobile-nav-link {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
  }

  .mobile-bonus-section-header {
    position: relative !important;
    width: 100% !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 12px 15px !important;
  }
  
  .mobile-bonus-section-header h3 {
    margin-bottom: 12px !important;
    font-size: 1.1rem !important;
  }
  
  .mobile-bonus-section-grid {
    padding: 10px 15px !important;
    gap: 12px !important;
  }
  
  .mobile-bonus-section-item {
    padding: 8px 14px !important;
  }
  
  .mobile-bonus-section-item span {
    font-size: 0.7rem !important;
  }

  body {
    padding-top: 0 !important;
  }
  
  body.scrolled {
    padding-top: 0 !important;
  }

  .top-header {
    margin-bottom: 0 !important;
  }
  
  header {
    margin-top: 0 !important;
  }

  .main-hero {
    margin-top: 0 !important;
    padding-top: 20px !important;
  }

  .main-hero,
  .premium-offers-section,
  .bonuses-section,
  .curated-bonuses-section,
  .benefits-section,
  .games-section,
  .free-spins-section,
  .features-section,
  .faq-section,
  .promotions-section,
  .strategies-section,
  .slots-strategies-section {
    margin-top: 0 !important;
    padding-top: 20px !important;
  }

  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  html {
    overflow-x: hidden !important;
  }

  .top-header,
  header,
  .main-hero,
  .section,
  .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .progress-bar-container {
    left: 10px !important;
    max-width: calc(100vw - 20px) !important;
  }

  .dropdown-menu {
    max-width: calc(100vw - 20px) !important;
    left: 10px !important;
    right: 10px !important;
  }
}

@media (max-width: 480px) {
  .main-hero {
    padding-top: 40px !important;
  }
  
  .main-hero::after {
    height: 50px !important;
  }
}

.main-hero {
  margin-top: 0 !important;
  padding-top: 50px !important;
}

.main-hero::after {
  display: none !important;
}

.main-hero::before {
  display: block !important;
}

.main-hero {
  background: var(--hero-bg) !important;
}

header {
  box-shadow: none !important;
}

.top-header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.hero-top,
.hero-bottom {
  position: static !important;
  z-index: auto !important;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: 2px solid #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.back-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  color: #1a1a2e;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .mobile-menu.active ~ .back-to-top {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

.bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
.header-boxes .header-box:nth-child(2) .dropdown-menu,
.dropdown-menu.middle {
  left: auto !important;
  right: -350px !important;
}

.bonus-dropdowns .header-box:last-child .dropdown-menu,
.header-boxes .header-box:last-child .dropdown-menu,
.dropdown-menu.last {
  left: auto !important;
  right: -150px !important;
}

@media (max-width: 1400px) {
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu,
  .dropdown-menu.middle {
    right: -250px !important;
  }
  
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu,
  .dropdown-menu.last {
    right: -100px !important;
  }
}

@media (max-width: 1200px) {
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu,
  .dropdown-menu.middle {
    right: -150px !important;
  }
  
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu,
  .dropdown-menu.last {
    right: -50px !important;
  }
}

@media (max-width: 900px) {
  .bonus-dropdowns .header-box:nth-child(2) .dropdown-menu,
  .header-boxes .header-box:nth-child(2) .dropdown-menu,
  .bonus-dropdowns .header-box:last-child .dropdown-menu,
  .header-boxes .header-box:last-child .dropdown-menu,
  .dropdown-menu.middle,
  .dropdown-menu.last {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
  }
  
  .bonus-dropdowns .header-box:nth-child(2):hover > .dropdown-menu,
  .header-boxes .header-box:nth-child(2):hover > .dropdown-menu,
  .bonus-dropdowns .header-box:last-child:hover > .dropdown-menu,
  .header-boxes .header-box:last-child:hover > .dropdown-menu,
  .header-box:hover .dropdown-menu.middle,
  .header-box:hover .dropdown-menu.last {
    transform: translateX(-50%) translateY(0) !important;
  }
}
