:root {
  --color-black: #0a0508;
  --color-dark-gray: #1a0e14;
  --color-medium-gray: #2c1420;
  --color-border-gray: #8b4c6b;
  --color-white: #f4f1f2;
  --text-primary: #e8dfe1;
  --text-secondary: #b89aa4;
  --text-muted: #7a5966;
  --text-light-gray: #a67889;
  --text-black: #2d1b23;
  --btn-red: #8b1f3a;
  --btn-red-hover: #6d1829;
  --btn-light-red: #a6243c;
  --btn-white: #f4f1f2;
  --btn-blue: #2c1b4a;
  --btn-green: #3d5c2e;
  --btn-yellow: #b8944a;
  --btn-yellow-hover: #9c7d3a;
  --bg-primary: #0a0508;
  --bg-secondary: #1a0e14;
  --bg-tertiary: #2c1420;
  --bg-overlay: rgba(10, 5, 8, 0.95);
  --border-primary: 1px solid #8b4c6b;
  --border-white: 1px solid #e8dfe1;
  --shadow-light: 0 -8px 32px rgba(139, 31, 58, 0.25);
  --shadow-heavy: 0 8px 24px rgba(10, 5, 8, 0.8);
  --shadow-menu: 8px 0 16px 0 rgba(139, 76, 107, 0.4)
}

body {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--color-dark-gray) 50%, var(--bg-tertiary) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7)
}

h1,
h2,
h3,
h4 {
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(139, 31, 58, 0.6), 0 4px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px
}

h1 {
  background: linear-gradient(135deg, var(--text-primary) 0%, #b89aa4 50%, #8b4c6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(139, 31, 58, 0.5))
}

h2 {
  border-bottom: 2px solid rgba(139, 76, 107, 0.3);
  position: relative
}

h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--btn-red) 0%, transparent 100%);
  box-shadow: 0 0 8px rgba(139, 31, 58, 0.8)
}

.navbar {
  background: linear-gradient(180deg, rgba(26, 14, 20, 0.95) 0%, rgba(10, 5, 8, 0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 76, 107, 0.2);
  box-shadow: 0 4px 16px rgba(139, 31, 58, 0.3)
}

.navbar a {
  color: var(--text-primary);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.navbar a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--btn-red), transparent);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(139, 31, 58, 0.8)
}

.navbar a:hover {
  color: #e8dfe1;
  text-shadow: 0 0 12px rgba(139, 31, 58, 0.9);
  transform: translateY(-2px)
}

.navbar a:hover::before {
  width: 100%
}

.btn {
  background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(139, 76, 107, 0.4);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(139, 76, 107, 0.2)
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 31, 58, 0.3), transparent);
  transition: left 0.6s ease
}

.btn:hover::before {
  left: 100%
}

.btn-red {
  background: linear-gradient(135deg, var(--btn-red) 0%, #6d1829 100%);
  border-color: rgba(139, 31, 58, 0.8);
  box-shadow: 0 0 16px rgba(139, 31, 58, 0.5), 0 4px 12px rgba(0, 0, 0, 0.7)
}

.btn-red:hover {
  box-shadow: 0 0 24px rgba(139, 31, 58, 0.8), 0 6px 16px rgba(0, 0, 0, 0.8);
  transform: translateY(-3px) scale(1.02)
}

.btn-white {
  background: linear-gradient(135deg, rgba(244, 241, 242, 0.95) 0%, rgba(232, 223, 225, 0.9) 100%);
  color: var(--text-black);
  border-color: rgba(139, 76, 107, 0.6);
  text-shadow: none
}

.casino-wrapper {
  background: linear-gradient(135deg, rgba(26, 14, 20, 0.8) 0%, rgba(44, 20, 32, 0.6) 100%);
  border: 2px solid rgba(139, 76, 107, 0.3);
  box-shadow: 0 8px 32px rgba(139, 31, 58, 0.4), inset 0 2px 8px rgba(139, 76, 107, 0.1);
  backdrop-filter: blur(8px)
}

.casino-item {
  background: linear-gradient(135deg, rgba(26, 14, 20, 0.9) 0%, rgba(44, 20, 32, 0.7) 100%);
  border: 1px solid rgba(139, 76, 107, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.casino-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(139, 31, 58, 0.3), rgba(44, 27, 74, 0.2), rgba(139, 31, 58, 0.3));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1
}

.casino-item:hover::before {
  opacity: 1
}

.casino-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(139, 31, 58, 0.6), 0 0 24px rgba(139, 76, 107, 0.4)
}

.casino-item h4 {
  background: linear-gradient(135deg, var(--text-primary) 0%, #b89aa4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.casino img {
  filter: contrast(1.2) brightness(0.9) sepia(0.2) hue-rotate(320deg) drop-shadow(0 4px 12px rgba(139, 31, 58, 0.4));
  transition: all 0.4s ease
}

.casino-item:hover img {
  filter: contrast(1.4) brightness(1.1) sepia(0.3) hue-rotate(320deg) drop-shadow(0 6px 16px rgba(139, 31, 58, 0.6));
  transform: scale(1.05)
}

.modal-overlay {
  background: radial-gradient(circle at center, rgba(139, 31, 58, 0.2) 0%, rgba(10, 5, 8, 0.95) 70%);
  backdrop-filter: blur(16px)
}

.modal {
  background: linear-gradient(135deg, rgba(244, 241, 242, 0.95) 0%, rgba(232, 223, 225, 0.9) 100%);
  border: 2px solid rgba(139, 76, 107, 0.6);
  box-shadow: 0 24px 48px rgba(139, 31, 58, 0.5), 0 0 32px rgba(139, 76, 107, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px)
}

.modal .age-circle {
  background: linear-gradient(135deg, var(--btn-red) 0%, #6d1829 100%);
  box-shadow: 0 0 24px rgba(139, 31, 58, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(139, 31, 58, 0.4)
}

footer {
  background: linear-gradient(180deg, rgba(26, 14, 20, 0.8) 0%, rgba(10, 5, 8, 0.95) 100%);
  border: 2px solid rgba(139, 76, 107, 0.3);
  backdrop-filter: blur(8px);
  position: relative
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 31, 58, 0.6), transparent);
  box-shadow: 0 0 8px rgba(139, 31, 58, 0.8)
}

.footer-age {
  background: linear-gradient(135deg, rgba(44, 20, 32, 0.9) 0%, rgba(26, 14, 20, 0.95) 100%);
  border: 1px solid rgba(139, 76, 107, 0.4);
  box-shadow: inset 0 2px 8px rgba(139, 31, 58, 0.2)
}

.gdpr-banner {
  background: linear-gradient(180deg, rgba(26, 14, 20, 0.98) 0%, rgba(10, 5, 8, 0.95) 100%);
  border-top: 2px solid rgba(139, 76, 107, 0.4);
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 32px rgba(139, 31, 58, 0.4), inset 0 2px 8px rgba(139, 76, 107, 0.1)
}

.gdpr-title {
  background: linear-gradient(135deg, var(--text-primary) 0%, #b89aa4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(139, 31, 58, 0.5))
}

.gdpr-btn-primary {
  background: linear-gradient(135deg, var(--btn-red) 0%, #6d1829 100%);
  border-color: rgba(139, 31, 58, 0.8);
  box-shadow: 0 0 16px rgba(139, 31, 58, 0.4), 0 4px 12px rgba(0, 0, 0, 0.6)
}

.gdpr-btn-primary:hover {
  box-shadow: 0 0 24px rgba(139, 31, 58, 0.7), 0 6px 16px rgba(0, 0, 0, 0.7)
}

.gdpr-btn-secondary {
  background: linear-gradient(135deg, rgba(26, 14, 20, 0.8) 0%, rgba(44, 20, 32, 0.6) 100%);
  border-color: rgba(139, 76, 107, 0.6);
  backdrop-filter: blur(4px)
}

.gdpr-modal-content {
  background: linear-gradient(135deg, rgba(26, 14, 20, 0.95) 0%, rgba(44, 20, 32, 0.9) 100%);
  border: 2px solid rgba(139, 76, 107, 0.4);
  box-shadow: 0 32px 64px rgba(139, 31, 58, 0.5), 0 0 40px rgba(139, 76, 107, 0.3);
  backdrop-filter: blur(16px)
}

.gdpr-toggle.active {
  background: linear-gradient(135deg, var(--btn-red) 0%, #6d1829 100%);
  border-color: rgba(139, 31, 58, 0.8);
  box-shadow: 0 0 12px rgba(139, 31, 58, 0.6), inset 0 2px 4px rgba(139, 31, 58, 0.3)
}

.container {
  position: relative
}

.container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle at 10% 20%, rgba(139, 31, 58, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(44, 27, 74, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1
}

@keyframes mysticalGlow {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(139, 31, 58, 0.3)
  }

  50% {
    box-shadow: 0 0 24px rgba(139, 31, 58, 0.6), 0 0 32px rgba(139, 76, 107, 0.2)
  }
}

.btn:focus,
.gdpr-btn-primary:focus,
.casino-item:focus {
  animation: mysticalGlow 2s ease-in-out infinite;
  outline: none
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3
  }
}

body::after {
  content: '✦ ✧ ⟐ ✦ ✧ ⟐';
  position: fixed;
  top: 20%;
  left: 5%;
  font-size: 12px;
  color: rgba(139, 76, 107, 0.2);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  transform-origin: center
}

.eighteen section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eighteen .hero-title {
  margin-bottom: 0;
  padding-bottom: 25px;
}

.eighteen .icon {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  background: var(--color-border-gray);
  border-radius: 50%;
}