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

html {
  scroll-behavior: smooth;
}

:root {
  --neon-pink: #ff0080;
  --neon-blue: #00d4ff;
  --neon-purple: #b000ff;
  --neon-cyan: #00ffff;
  --neon-green: #00ff88;
  --dark-bg: #0a0015;
  --dark-purple: #1a0033;
}

body {
  background: linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #0f001f 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.theme-background-color-primary {
  background: linear-gradient(135deg, #0a0015 0%, #1a0033 100%) !important;
}

.theme-color-primary {
  color: #ff0080 !important;
}

.theme-color-secondary {
  color: #00d4ff !important;
}

.button {
  background: linear-gradient(135deg, #ff0080 0%, #b000ff 100%);
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #00d4ff;
  padding: 10px 25px;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6), 0 0 40px rgba(176, 0, 255, 0.4);
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.8), 0 0 60px rgba(176, 0, 255, 0.6), 0 0 80px rgba(0, 212, 255, 0.4);
  border-color: #ff0080;
}

.gradient--theme-custom--horizontal {
  background: linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #2a004a 100%);
}

.promo--hero {
  background: radial-gradient(ellipse at top, #2a004a 0%, #1a0033 50%, #0a0015 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.promo--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(176, 0, 255, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-logo {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff0080, #00d4ff, #b000ff, #00ff88);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 0, 128, 0.8), 0 0 60px rgba(0, 212, 255, 0.6);
  animation: neonGlow 3s ease-in-out infinite, gradientShift 6s ease infinite;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8));
}

@keyframes neonGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255, 0, 128, 1)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.8));
  }
}

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

.casino-subtitle {
  text-align: center;
  color: #00d4ff;
  font-size: 18px;
  margin-top: 15px;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.5);
  animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
  from { text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.5); }
  to { text-shadow: 0 0 20px rgba(0, 212, 255, 1), 0 0 40px rgba(0, 212, 255, 0.8); }
}

.amenities-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 5px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  background: rgba(10, 0, 21, 0.9);
}

.amenities-grid__image {
  width: 100%;
  display: block;
}

.amenities-grid__info {
  background: rgba(10, 0, 21, 0.95);
}

.amenities-grid__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 128, 0.6), 0 0 60px rgba(0, 212, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.7);
  border-color: #ff0080;
}

.game-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 0, 21, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.amenities-grid__item:hover .game-play-overlay {
  opacity: 1;
  pointer-events: all;
}

.game-play-button {
  background: linear-gradient(135deg, #ff0080 0%, #b000ff 100%);
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #00d4ff;
  padding: 15px 40px;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6), 0 0 40px rgba(176, 0, 255, 0.4);
  transition: all 0.3s ease;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.game-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.8), 0 0 60px rgba(176, 0, 255, 0.6), 0 0 80px rgba(0, 212, 255, 0.4);
}

.game-card {
  background: linear-gradient(135deg, rgba(10, 0, 21, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
  border: 2px solid #b000ff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(176, 0, 255, 0.3), inset 0 0 20px rgba(176, 0, 255, 0.1);
}

.game-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255, 0, 128, 0.6), 0 0 60px rgba(176, 0, 255, 0.5), inset 0 0 30px rgba(255, 0, 128, 0.2);
  border-color: #ff0080;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

.header {
  background: rgba(10, 0, 21, 0.95);
  border-bottom: 2px solid #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.header__top__left {
  flex: 0 0 auto;
}

.header__top__right {
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  text-decoration: none;
}

.buttons {
  display: flex;
  gap: 15px;
}

.footer {
  background: rgba(10, 0, 21, 0.98);
  border-top: 2px solid #ff0080;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
  padding: 40px 0 20px;
}

.footer__interior {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-right {
  flex: 1 1 300px;
}

.footer-simple {
  margin-top: 15px;
}

.footer-simple p {
  margin: 5px 0;
}

.list-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.list-inline__item {
  margin: 0;
}

.list-inline__item__link {
  color: #b0b0ff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.list-inline__item__link:hover {
  color: #00d4ff;
}

.section-standard {
  background: linear-gradient(135deg, #0a0015 0%, #1a0033 100%);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper__sticky-footer {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.content-contain {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.content-contain--1024 {
  max-width: 1024px;
}

.section-standard__header {
  margin-bottom: 40px;
}

.section-standard__header.type--center {
  text-align: center;
}

.section-standard__header__pre-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.border--short {
  width: 60px;
  border: 0;
  border-top: 2px solid;
  margin: 0;
}

.type--border-adorned {
  font-weight: bold;
  letter-spacing: 2px;
}

.bkgd--white {
  background: transparent;
}

.no-judgments__title {
  background: linear-gradient(90deg, #ff0080, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.5));
}

.no-judgments--light-bkgd {
  padding: 30px 20px;
}

.no-judgments__flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.no-judgments__flex-item {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
}

.no-judgments__item-img {
  margin-bottom: 20px;
}

.no-judgments__item-title {
  margin-bottom: 10px;
}

.no-judgments__item-info {
  line-height: 1.6;
}
