@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Share Tech Mono", monospace;
  line-height: 1.6;
  color: #00f0ff;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Cyberpunk grid background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Animated neon particles */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: neonPulse 4s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px #00f0ff);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list-mobile {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: all 0.2s ease;
}

.nav-list-mobile li {
  list-style: none;
}

.nav-list a,
.nav-list-mobile a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Orbitron", monospace;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-list a::before,
.nav-list-mobile a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::before,
.nav-list-mobile a:hover::before {
  width: 100%;
}

.nav-list a:hover,
.nav-list-mobile a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  color: #ff00ff !important;
  font-weight: 700;
  text-shadow: 0 0 10px #ff00ff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid #00f0ff;
  border-radius: 4px;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  margin: 0;
  color: #00f0ff !important;
  font-weight: 500 !important;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(0, 240, 255, 0.1);
  color: #ff00ff !important;
  text-shadow: 0 0 5px #ff00ff;
}

.header-cta {
  flex-shrink: 0;
}

.header-cta a .mobile {
  display: none;
}

.play-btn {
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  color: #000;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  font-family: "Orbitron", monospace;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.play-btn:hover::before {
  left: 100%;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #00f0ff;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #00f0ff;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКА - СТИЛЬ БЕГУНКА
   ============================================ */

.language-switcher-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.language-switcher-slider input[type="radio"] {
  display: none;
}

.slider-labels {
  position: relative;
  display: flex;
  width: 90px;
  height: 36px;
  background: #4a4a4a;
  border-radius: 18px;
  overflow: hidden;
}

.slider-labels label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.slider-labels label a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 36px;
  background: #ffd700;
  border-radius: 18px;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* Когда выбран IT (первый radio) */
#it:checked ~ .slider-labels .slider {
  transform: translateX(0);
}

#it:checked ~ .slider-labels .label-it a {
  color: #000;
}

/* Когда выбран EN (второй radio) */
#en:checked ~ .slider-labels .slider {
  transform: translateX(45px);
}

#en:checked ~ .slider-labels .label-en a {
  color: #000;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.badge {
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(0, 240, 255, 0.2));
  color: #00f0ff;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Orbitron", monospace;
  border: 1px solid #00f0ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.3); }
  100% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.6); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  font-family: "Orbitron", monospace;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlight {
  color: #ff00ff;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% { filter: drop-shadow(0 0 10px #ff00ff); }
  100% { filter: drop-shadow(0 0 20px #00f0ff); }
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.7;
  font-family: "Share Tech Mono", monospace;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Orbitron", monospace;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  border: 1px solid transparent;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: #00f0ff;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.game-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-preview-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  transition: all 0.3s ease;
}

.game-preview-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.8);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat {
  text-align: center;
  padding: 25px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  border: 1px solid #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Orbitron", monospace;
  color: #00f0ff;
  margin-bottom: 8px;
  text-shadow: 0 0 10px #00f0ff;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Share Tech Mono", monospace;
}

/* Sections */
section {
  padding: 80px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Orbitron", monospace;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-family: "Share Tech Mono", monospace;
}

/* Casinos Section */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.casino-card {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
}

.casino-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.05), rgba(0, 240, 255, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-card:hover::after {
  opacity: 1;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
  border-color: #ff00ff;
}

.casino-header {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

.casino-logo img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.casino-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #00f0ff;
  font-family: "Orbitron", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #00f0ff;
}

.rating {
  color: #ff00ff;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Share Tech Mono", monospace;
}

.casino-info p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
  font-family: "Share Tech Mono", monospace;
}

.bonus {
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.15), rgba(0, 240, 255, 0.15));
  color: #00f0ff;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Orbitron", monospace;
  text-align: center;
  border: 1px solid #00f0ff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature {
  background: rgba(10, 10, 10, 0.6);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: "Share Tech Mono", monospace;
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-buttons {
  display: flex;
  gap: 12px;
}

.btn-outline {
  background: transparent;
  color: #00f0ff;
  border: 1px solid #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Demo Section */
.demo {
  text-align: center;
  background: rgba(10, 10, 10, 0.4);
  border-top: 1px solid #00f0ff;
  border-bottom: 1px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.demo iframe,
.demo-iframe {
  border-radius: 8px;
  margin-top: 30px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.demo-iframe {
  padding: 15px;
  background: rgba(10, 10, 10, 0.6);
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-iframe button {
  max-width: 250px;
  max-height: 80px;
  padding: 14px 30px;
}

/* About Section */
.about {
  background: transparent;
  color: #00f0ff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.game-specs {
  background: rgba(10, 10, 10, 0.8);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #00f0ff;
  margin-top: 30px;
}

.game-specs h3 {
  color: #ff00ff;
  margin-bottom: 25px;
  font-size: 20px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ff00ff;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  opacity: 0.8;
}

.spec-value {
  color: #00f0ff;
  font-weight: bold;
}

.game-interface {
  position: relative;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  padding: 30px;
  border: 2px solid #00f0ff;
}

.multiplier-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.multiplier {
  background: rgba(10, 10, 10, 0.6);
  border: 2px solid #00f0ff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #00f0ff;
  transition: all 0.3s ease;
}

.multiplier.active {
  background: linear-gradient(45deg, #00f0ff, #00f0ff);
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  color: #000;
}

.game-screen {
  text-align: center;
}

.game-interface-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

/* Features Section */
.features {
  background: transparent;
  color: #00f0ff;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.features-header h2 {
  color: #ff00ff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ff00ff;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  border: 1px solid #00f0ff;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(10, 10, 10, 0.9);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  color: #ff00ff;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.feature-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.features-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: rgba(10, 10, 10, 0.8);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #00f0ff;
  text-align: center;
}

.feature-box-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-box h4 {
  color: #ff00ff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.feature-box p {
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.infographic-container {
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  padding: 30px;
  border: 2px solid #00f0ff;
}

.features-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

/* Benefits Section */
.benefits {
  background: transparent; 
  color: #00f0ff;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.benefits-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  border: 1px solid #00f0ff;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(10, 10, 10, 0.9);
  transform: translateX(10px);
}

.benefit-icon {
    font-family: 'FontAwesome'; 
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h3 {
  color: #ff00ff;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.benefit-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Guide Section */
.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  border: 1px solid #00f0ff;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(10, 10, 10, 0.9);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.step-text h3 {
  color: #ff00ff;
  margin-bottom: 8px;
  font-size: 18px;
}

.step-text p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Legal Section */
.legal-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.legal-box {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #00f0ff;
  transition: all 0.3s ease;
}

.legal-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.legal-box h3 {
  color: #ff00ff;
  margin-bottom: 25px;
  font-size: 22px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ff00ff;
}

.legal-list {
  list-style: none;
}

.legal-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  opacity: 0.9;
  line-height: 1.6;
}

.legal-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00f0ff;
  font-weight: bold;
  font-size: 18px;
}

/* Pros and Cons */
.pros-cons-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.pros-box,
.cons-box {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #00f0ff;
  transition: all 0.3s ease;
}

.pros-box:hover,
.cons-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.pros-header,
.cons-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.pros-icon,
.cons-icon {
  font-size: 2rem;
}

.pros-header h3 {
  color: #00f0ff;
  font-size: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #00f0ff;
}

.cons-header h3 {
  color: #ff00ff;
  font-size: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: #ff00ff;
}

.pros-list,
.cons-list {
  list-style: none;
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  opacity: 0.9;
  line-height: 1.5;
}

.pros-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00f0ff;
  font-weight: bold;
}

.cons-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff00ff;
  font-weight: bold;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.faq-item {
  background: rgba(10, 10, 10, 0.8);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #00f0ff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(10, 10, 10, 0.9);
}

.faq-question {
  padding: 25px;
  background: rgba(10, 10, 10, 0.8);
  cursor: pointer;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(10, 10, 10, 0.9);
}

.faq-toggle {
  font-size: 24px;
  color: #ff00ff;
  font-weight: bold;
  transition: transform 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 25px 0;
  opacity: 0.9;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Author Block Section */
.author-block {
  padding: 80px 0;
  background: rgba(10, 10, 10, 0.4);
}

.author-block h2 {
  margin-bottom: 50px;
}

.author-block-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid #00f0ff;
}

.author-image-section {
  text-align: center;
}

.author-image-section img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.author-image-section h3 {
  color: #ff00ff;
  font-size: 22px;
  margin-bottom: 8px;
}

.author-image-section p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.author-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.author-socials a {
  color: #00f0ff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.author-socials a:hover {
  color: #ff00ff;
}

.author-bio p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(15px) !important;
  border-top: 1px solid #00f0ff !important;
  padding: 50px 0 30px !important;
  margin-top: 0 !important;
  color: #00f0ff !important;
  width: 100% !important;
  max-width: none !important;
}

.footer-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  flex-wrap: wrap !important;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px #00f0ff);
}

.footer-nav a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #ff00ff;
}

.footer-policy a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-policy a:hover {
  color: #ff00ff;
}
.footer-faq a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-faq a:hover {
  color: #ff00ff;
}
.footer-disclaimer a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-disclaimer a:hover {
  color: #ff00ff;
}

.footer-licenses {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.license-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.license-logo:hover {
  opacity: 1;
}

.license-logo img {
  height: 40px;
  width: auto;
  filter: grayscale(0.3) drop-shadow(0 0 5px #00f0ff);
}

.footer-bottom {
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
  color: #00f0ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .benefits-content,
  .features-content,
  .guide-content {
    gap: 40px;
  }
  
  /* Author block responsive for tablets */
  .author-block-content {
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 30px;
  }
  
  .author-image-section img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .hero-content,
  .about-content,
  .benefits-content,
  .features-content,
  .guide-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-licenses {
    gap: 20px;
  }
  .nav-list-mobile {
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .header-content {
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 15px;
    overflow-x: hidden;
  }
  .header {
    padding-top: 0;
  }
  .nav-list-mobile.active {
    padding-top: 15px;
    max-height: 1000px;
  }
  .dropdown-menu {
    position: relative;
    top: 10px;
    z-index: 100;
    display: block;
    opacity: 1;
    overscroll-behavior: contain;
    visibility: visible;
    transform: translateY(0);
    overflow-y: scroll;
    padding: 0;
    max-height: 0;
  }
  .dropdown-menu li a {
    padding: 10px;
  }
  .dropdown-menu.open {
    margin-top: 10px;
    max-height: 100px;
  }
  
  /* Author block mobile responsive - MAIN FIX */
  .author-block-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 30px 20px;
  }
  
  .author-image-section {
    order: 1;
  }
  
  .author-bio {
    order: 2;
    text-align: left;
  }
  
  .author-image-section img {
    width: 120px;
    height: 120px;
  }
  
  .author-image-section h3 {
    font-size: 20px;
  }
  
  .author-bio p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .casino-card {
    padding: 20px;
  }

  .legal-box,
  .pros-box,
  .cons-box {
    padding: 25px;
  }

  .footer-licenses {
    flex-direction: row !important; /* Make logos horizontal */
    justify-content: center !important; /* Center them */
    gap: 15px !important;
    width: 100% !important; /* Ensure it takes full width */
  }

  .license-logo {
    flex-shrink: 0 !important; /* Prevent shrinking */
  }

  .step-item,
  .benefit-item,
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon,
  .feature-icon {
    font-size: 2rem;
  }
  .logo {
    max-width: 80px;
  }
  .header-cta a .desktop {
    display: none;
  }
  .header-cta a .mobile {
    display: flex;
  }
  .header-cta .play-btn {
    display: block;
    padding: 8px 18px;
  }
  .header-cta {
    flex-shrink: 1;
  }
  .header-content {
    gap: 5px;
  }
  .logo {
    margin-right: 0;
  }
  
  /* Author block extra small mobile responsive */
  .author-block {
    padding: 60px 0;
  }
  
  .author-block h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .author-block-content {
    padding: 20px 15px;
    gap: 25px;
  }
  
  .author-image-section img {
    width: 100px;
    height: 100px;
  }
  
  .author-image-section h3 {
    font-size: 18px;
  }
  
  .author-image-section p {
    font-size: 13px;
  }
  
}

