/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fefefe; /* чистый белый фон */
  color: #1f2937; /* основной текст */
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0c0033, #1a002b);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  border-bottom: 1px solid #00f0ff;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 15px 0;
  backdrop-filter: blur(8px);
  color: #00f0ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 55px;
  filter: drop-shadow(0 0 15px #ff00ff);
}
.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: #00f0ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}
.logo-text span {
  color: #ff00ff;
}

/* Navigation */
.nav {
  display: flex;
}
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: #e0e0ff;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  transition: all 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: #ff00ff;
}
/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 28px;
  height: 3px;
  background: #00f0ff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
/* Hero */
.hero-unique {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at 20% 30%, #170033, #0a0018 80%);
}

/* === ПАРАЛЛАКС ФОН === */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg')
    center/cover no-repeat fixed;
  opacity: 0.25;
  z-index: 0;
  transform: scale(1.1);
  animation: bgFloat 20s ease-in-out infinite alternate;
}
@keyframes bgFloat {
  0% { transform: scale(1.1) translateY(0); }
  100% { transform: scale(1.15) translateY(-30px); }
}

/* === КОНТЕЙНЕР === */
.hero-unique-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* === ТЕКСТОВАЯ ЧАСТЬ === */
.hero-text-block {
  flex: 1 1 450px;
  max-width: 550px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 20px #ff00ff, 0 0 40px rgba(255,0,255,0.5);
}
.hero-title span {
  color: #00f0ff;
  text-shadow: 0 0 25px #00f0ff, 0 0 50px #ff00ff;
}
.hero-subtitle {
  margin: 25px 0 45px;
  font-size: 1.15rem;
  color: #e0e0ff;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
  box-shadow: 0 0 20px #ff00ff, 0 0 40px #00f0ff;
  transition: all 0.3s;
}
.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px #ff00ff, 0 0 60px #00f0ff;
}

/* === БЛОК ПРЕИМУЩЕСТВ === */
.hero-features {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.hero-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff00ff33, #00f0ff33);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.hero-feature:hover::after {
  opacity: 0.7;
}
.hero-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px #ff00ff66, 0 0 40px #00f0ff66;
}
.hero-icon {
  font-size: 2rem;
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff, 0 0 30px #00f0ff;
  animation: pulseIcon 2s infinite alternate;
  z-index: 2;
}
@keyframes pulseIcon {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}
.hero-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px #ff00ff;
  z-index: 2;
  position: relative;
}
.hero-feature p {
  font-size: 0.95rem;
  color: #ccc;
  z-index: 2;
  position: relative;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid #00f0ff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 20px #ff00ff, 0 0 20px #00fff0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px #ff00ff, 0 0 40px #00fff0;
}

.feature-icon {
  font-size: 2rem;
  background: linear-gradient(45deg, #ff00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-text h4 {
  font-size: 1.1rem;
  color: #fff;
}

.feature-text p {
  font-size: 0.95rem;
  color: #aaa;
}

/* Offers */
.offers {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: radial-gradient(circle at 30% 50%, #190020, #000010 80%);
}

/* === КОНТЕЙНЕР === */
.offers-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* === ЗАГОЛОВКИ === */
.offers-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-shadow: 0 0 25px #ff00ff, 0 0 45px #00f0ff;
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.offers-subtitle {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 60px;
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* === СЕТКА КАРТОЧЕК === */
.offers-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* === КАРТОЧКА === */
.offer-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255,0,255,0.15);
  transition: all 0.4s;
}
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #ff00ff66, 0 0 50px #00f0ff66;
}
.offer-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ff00ff33, #00f0ff22);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.offer-card:hover .offer-glow {
  opacity: 1;
}

/* === ЛЕВАЯ ЧАСТЬ === */
.offer-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1 1 45%;
  z-index: 2;
}
.offer-logo img {
  width: 140px;
  height: auto;
  box-shadow: 0 0 25px #00f0ff55, 0 0 50px #ff00ff55;
  transition: transform 0.3s ease;
}
.offer-logo img:hover {
  transform: scale(1.08) rotate(2deg);
}
.offer-info {
  text-align: left;
}
.offer-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 10px #ff00ff;
}
.offer-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}
.offer-18 {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #00f0ff;
}

/* === ПРАВАЯ ЧАСТЬ === */
.offer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1 1 45%;
  gap: 20px;
  z-index: 2;
}
.offer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.offer-payments img {
  width: 45px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 0 8px #00f0ff55);
}
.offer-payments img:hover {
  opacity: 1;
  transform: scale(1.15);
}

.offer-rating {
  text-align: right;
  color: #fff;
  font-size: 0.95rem;
}
.offer-rating .stars {
  font-size: 1.3rem;
  color: #00f0ff;
  text-shadow: 0 0 10px #ff00ff;
}

.offer-btn {
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 40px;
  text-transform: uppercase;
  box-shadow: 0 0 20px #ff00ff, 0 0 40px #00f0ff;
  transition: all 0.3s ease;
}
.offer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px #ff00ff, 0 0 60px #00f0ff;
}
/* About */
.about-modern {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #1a001f, #0a0012 70%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Заголовок --- */
.about-modern h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #ff007f, 0 0 25px #ff00ff;
}

.about-modern h2 span {
  color: #00f0ff;
  text-shadow: 0 0 15px #00f0ff, 0 0 35px #fffacd;
}

/* --- Текст --- */
.about-modern p {
  font-size: 1.05rem;
  color: #e5e5e5;
  line-height: 1.8;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* --- Сетка --- */
.about-modern-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  z-index: 2;
  position: relative;
}

.about-modern-text {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

/* --- Список особенностей --- */
.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s, color 0.3s;
  position: relative;
}

.about-features li .icon {
  font-size: 1.6rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 25px #ff33ff;
  animation: pulseGlow 2s infinite alternate;
}

.about-features li:hover {
  transform: translateX(6px);
  color: #00f0ff;
}

@keyframes pulseGlow {
  0% { text-shadow: 0 0 10px #ff00ff; }
  100% { text-shadow: 0 0 20px #ff00ff, 0 0 40px #00f0ff; }
}

/* --- Визуальный блок --- */
.about-modern-visual {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  position: relative;
}

.about-modern-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,255,0.3), transparent 70%);
  filter: blur(50px);
  animation: spinGlow 10s linear infinite;
}

@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Декор круги --- */
.decor-circles span.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  filter: blur(6px);
  animation: floatCircle 8s ease-in-out infinite alternate;
}

.circle1 { width: 140px; height: 140px; background: #ff00ff; top: -40px; left: -30px; }
.circle2 { width: 90px; height: 90px; background: #00f0ff; bottom: 30px; right: -40px; }
.circle3 { width: 120px; height: 120px; background: #ff007f; top: 50%; left: 75%; transform: translate(-50%, -50%); }
.circle4 { width: 70px; height: 70px; background: #00ffff; bottom: 15%; left: 45%; transform: translate(-50%, -50%); }

@keyframes floatCircle {
  0% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-20px) translateX(10px) scale(1.1); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}

/* --- Кнопка --- */
.btn-primary {
  background: linear-gradient(90deg, #ff007f, #ff00ff);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px #ff00ff, 0 0 30px #ff007f;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff00ff, #00f0ff);
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00ff;
  transform: translateY(-4px);
}

/* FAQ */
.faq-casino {
  background: linear-gradient(135deg, #1a001a, #0b001f);
  padding: 100px 20px;
  color: #fff;
}

.faq-casino h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #00fff0;
  margin-bottom: 60px;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px #ff00ff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px #ff00ff, 0 0 40px #00fff0;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: #00001a;
  color: #ff00ff;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
  background: #ff00ff;
  color: #0b001f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer p {
  padding: 20px;
  
}
.age18-page {
    background: radial-gradient(circle at 30% 30%, #1a001f, #0a0012 70%);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #0b1f3a;
}
.age18-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff; /* акцентный красный для важности */
  margin-bottom: 30px;
}

.age18-page p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  color: #fff;
}

.age18-page a {
  color: #2980b9;
  text-decoration: underline;
}

.age18-page a:hover {
  color: #1c5980;
}

/* Для кнопок или ссылок к ресурсам */
.age18-page .cuar-btn {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.age18-page .cuar-btn-primary {
  background-color: #c0392b;
  color: #fff;
  border: none;
}

.age18-page .cuar-btn-primary:hover {
  background-color: #a83224;
}

.age18-page .cuar-btn-outline {
  background-color: transparent;
  color: #c0392b;
  border: 2px solid #c0392b;
}

.age18-page .cuar-btn-outline:hover {
  background-color: #c0392b;
  color: #fff;
}
/* Contact Card */
.age-warning-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  color: #0b001f;
  text-align: center;
  border-radius: 20px;
  margin: 0 auto 50px auto;
  max-width: 500px;
  box-shadow: 0 0 25px #ff00ff66, 0 0 25px #00fff066;
  animation: pulseBanner 2s infinite alternate;
}
.age-warning-banner p {
  color: #fff;
}
.age-warning-banner .age-img {
  width: 100%;
}

@keyframes pulseBanner {
  0% { transform: scale(1); box-shadow: 0 0 25px #ff00ff66, 0 0 25px #00fff066; }
  50% { transform: scale(1.05); box-shadow: 0 0 40px #ff00ff, 0 0 40px #00fff0; }
  100% { transform: scale(1); box-shadow: 0 0 25px #ff00ff66, 0 0 25px #00fff066; }
}

/* Остальной блок контактов как раньше */
.contacts-casino {
  position: relative;
  padding: 50px 20px 120px 20px;
  background: radial-gradient(circle at top, #0b001f, #1a002b 100%);
  color: #fff;
  overflow: hidden;
}

.contacts-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовок */
.contact-header h2 {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px #ff00ff, 0 0 30px #00fff0;
}
.contact-header h2 span {
  color: #ff00ff;
}
.contact-header p {
  text-align: center;
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 60px;
}

/* Основной блок: контакты + форма */
.contact-main {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Карточка контактной информации */
.contact-info-card {
  flex: 1;
  min-width: 280px;
  background: rgba(255,255,255,0.05);
  border: 1px solid #00fff0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px #ff00ff33, 0 0 25px #00fff033;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info-card h3 {
  margin-bottom: 20px;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px #ff00ff66, 0 0 50px #00fff066;
}
.contact-info-card ul {
  list-style: none;
  padding: 0;
}
.contact-info-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #ccc;
  transition: color 0.3s;
}
.contact-info-card ul li span {
  font-size: 1.3rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}

/* Форма */
.contact-form-card {
  flex: 1;
  min-width: 280px;
  background: rgba(0,0,0,0.5);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px #ff00ff33, 0 0 25px #00fff033;
}
.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #00fff0;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid #00fff0;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #ff00ff;
  box-shadow: 0 0 10px #ff00ff, 0 0 15px #00fff0;
  outline: none;
}
.contact-form-card button {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #0b001f;
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  box-shadow: 0 0 20px #ff00ff, 0 0 35px #00fff0;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form-card button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px #ff00ff, 0 0 50px #00fff0;
}




/* Footer */
.footer {
  position: relative;
  background: #0b001f;
  color: #fff;
  padding: 60px 20px 30px 20px;
  overflow: hidden;
}

/* Фоновый градиент + анимация свечения */
.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #ff00ff55, #00fff055 70%);
  z-index: 0;
  filter: blur(60px);
  animation: pulseFooterBg 8s infinite alternate;
}
@keyframes pulseFooterBg {
  0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.05) rotate(10deg); opacity: 0.9; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
}

.footer-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* Верхняя часть футера */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-card {
  flex: 1;
  min-width: 250px;
  background: rgba(0,0,0,0.5);
  border: 1px solid #00fff0;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 0 20px #ff00ff66, 0 0 20px #00fff066;
  transition: all 0.3s;
}
.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 45px #ff00ff, 0 0 45px #00fff0;
}

/* Заголовки */
.footer-card h3, .footer-card h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}

/* Age warning */
.footer-card .age-warning {
  font-size: 0.9rem;
  color: #ff99ff;
  margin-top: 15px;
  line-height: 1.4;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #00fff0;
}

/* Ссылки */
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  position: relative;
}
.footer-links ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#ff00ff,#00fff0);
  bottom: -3px;
  left: 0;
  transition: 0.3s;
}
.footer-links ul li a:hover::after {
  width: 100%;
}
.footer-links ul li a:hover {
  color: #ff00ff;
}

/* Сертификаты */
.seals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.seals-grid a img {
  max-width: 60px;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px #ff00ff) drop-shadow(0 0 10px #00fff0);
  transition: all 0.3s;
}
.seals-grid a img:hover {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 0 20px #ff00ff) drop-shadow(0 0 20px #00fff0);
}

/* Нижняя часть футера */
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  border-top: 1px solid #00fff0;
  padding-top: 20px;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #00fff0;
}
/* Offer Items */
.offer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #cbd5e1;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(26,31,54,0.08);
  margin-bottom: 20px;
  background: #fff;
}
.offer-logo img {
  max-width: 120px;
  height: auto;
}
.offer-bonus {
  flex: 1;
  text-align: center;
  color: #1a1f36;
}
.bonus-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.bonus-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.offer-payments {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.offer-payments img {
  width: 50px;
  height: auto;
  opacity: 0.9;
  transition: 0.3s;
}
.offer-payments img:hover {
  opacity: 1;
}
.offer-rating {
  text-align: center;
  flex: 0.5;
}

.offer-rating p {
  font-size: 14px;
  color: #fff;
}
.offer-action {
  flex: 0.7;
  text-align: center;
}
.offer-action .btn {
  background: #00f0ff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.offer-action .btn:hover {
  background: #2563eb;
}

/* Stats */
.stats-casino {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
   background: linear-gradient(135deg,#0b001f,#1a001a);
  color: #fff;
  
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: url('../img/casino-bg-parallax.jpg') center/cover no-repeat fixed;
  opacity: 0.25;
  z-index: 1;
}

.stats-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.stats-title {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #FFF;
}
.stats-title span {
  color: #ff00ff;
  text-shadow: 0 0 20px #000, 0 0 40px #000;
}

.stats-subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.stats-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 320px;
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 0 30px #ff00ff, 0 0 30px #00fff0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px) rotateY(10deg);
   box-shadow: 0 0 50px #ff00ff, 0 0 50px #00fff0;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff00ff;
  text-shadow: 0 0 20px #ff00ff, 0 0 40px #00fff0;
  animation: glow 1.8s infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 10px #ff00ff; }
  50% { text-shadow: 0 0 30px #ff00ff, 0 0 50px #00fff0; }
  100% { text-shadow: 0 0 10px #ff00ff; }

}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

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

/* Прогресс-бары */
.progress-bar {
  width: 100%;
  height: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00f0ff, #fffacd);
  border-radius: 50px;
  animation: fillProgress 2s forwards;
}

@keyframes fillProgress {
  from { width: 0; }
  to { width: var(--percent); }
}

/* Sparkle эффект */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #00f0ff 0%, rgba(255,255,255,0) 70%);
  top: 10%;
  left: 20%;
  animation: sparkleAnim 3s infinite ease-in-out;
}

.stat-card:nth-child(2) .sparkle {
  top: 30%;
  left: 70%;
  animation-delay: 1s;
}

.stat-card:nth-child(3) .sparkle {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
}

@keyframes sparkleAnim {
  0%,100% { transform: scale(1) translateY(0); opacity: 0.6; }
  50% { transform: scale(1.5) translateY(-10px); opacity: 0.3; }
}

/* Guide */
.guide {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
  color: #1f2233;
}

.guide-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #111827;
}

.guide-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.guide-block h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ff00ff;
}

.guide-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.guide-block.final {
  border-left: 4px solid #d4af37;
}
/* Footer seals */
.footer-seals img {
    width: 100%;
}
.footer-seals {
    display: grid;
    gap: 14px;
    align-items: center;
    justify-items: center;
}
.nav-list li {
  padding: 10px;
}
.top-banner {
    background-color: #ff00ff;
    color: #000;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
#age-popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 10, 30, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#age-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* Карточка */
.age-card {
  position: relative;
  background: linear-gradient(145deg, #1a1a2e, #162447);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  padding: 40px 30px 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #fff;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

#age-popup.active .age-card {
  transform: scale(1);
}

/* Кнопка закрытия */
.age-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}
.age-close:hover {
  color: #ff4b5c;
}

/* Заголовок */
.age-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
}

/* Текст */
.age-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #ccc;
}

/* Кнопки */
.age-actions {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-actions .btn-primary,
.age-actions .btn-ghost {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  color: #0b001f;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 0 20px #ff00ff, 0 0 40px #00fff0;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #00fff0, #ff00ff);
  transform: scale(1.05);
  box-shadow: 0 0 50px #ff00ff, 0 0 50px #00fff0;
}

.btn-ghost {
  background: transparent;
  color: #f9cb40;
  border: 2px solid #f9cb40;
}

.btn-ghost:hover {
  background: #f9cb40;
  color: #1a1a2e;
  transform: scale(1.05);
}
.age-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.age-actions {
  margin-top: 20px;
}

.age-actions button {
  margin: 0 5px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}



.btn-ghost {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}


.age-container {
  max-width: 800px;
  margin: 5% auto;
  background: #ffffff;
  
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 60, 150, 0.1);
}

.age-image img {
  width: 140px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(0, 60, 150, 0.3));
}

.age-text h2 {
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.age-text p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.age-text strong {
  color: #ff00ff;
  font-weight: 700;
}
a {
  text-decoration: none;
}
.responsible {
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  margin: 12px auto 0;
  border-radius: 2px;
}

.lead {
  font-size: 1.15rem;
  color: #333;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.block {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.card-glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00f0ff, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
section.age-warning {
  width: 100%;
}
.block h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #000;
}

.block ul {
  list-style: none;
  padding-left: 0;
}
.block ul li::before {
  content: '✅';
  color: #f8fc07;
  margin-right: 10px;
}
.guide-neon {
  background: #0b001f;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
}

.guide-neon::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, #ff00ff55, #00fff055 60%, transparent 80%);
  filter: blur(80px);
  animation: rotateGuide 40s linear infinite;
  z-index: 0;
}

@keyframes rotateGuide {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.guide-neon .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.guide-intro {
  font-size: 1.2rem;
  margin-bottom: 50px;
  text-align: center;
  color: #00fff0;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.guide-block {
  background: rgba(0,0,0,0.5);
  border: 1px solid #ff00ff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 0 20px #ff00ff66, 0 0 20px #00fff066;
  transition: all 0.3s ease;
  position: relative;
}

.guide-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px #ff00ff, 0 0 45px #00fff0;
}

.guide-block .step-number {
  font-size: 2rem;
  font-weight: 900;
  color: #00fff0;
  background: linear-gradient(135deg, #ff00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px #ff00ff, 0 0 25px #00fff0;
  margin-bottom: 15px;
}

.guide-block h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 5px #ff00ff, 0 0 15px #00fff0;
}

.guide-block p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  text-shadow: 0 0 3px #ff00ff, 0 0 8px #00fff0;
}

.guide-block.final {
  grid-column: span 2;
  background: linear-gradient(135deg, #1a001a, #0b001f);
  border: 1px solid #00fff0;
  padding: 40px 30px;
  text-align: left;
}

.guide-block.final h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00fff0;
}

.guide-block.final .checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.guide-block.final .checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #00fff0;
  text-shadow: 0 0 5px #ff00ff, 0 0 15px #00fff0;
}
.guide-block.final .checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 15px #00fff0;
}

/* Responsive */
@media(max-width: 992px) {
  .guide-block.final {
    grid-column: 1 / -1;
  }
  .guide-grid {
    gap: 20px;
  }
  .contact-main {
    flex-direction: column;
  }
  .contact-header h2 {
    font-size: 2.2rem;
  }
  .contact-form-card h3, .contact-info-card h3 {
    font-size: 1.5rem;
  }
  .age-warning-banner {
    max-width: 90%;
  }
  .hero-unique-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .offer-card {
    flex-direction: column;
    text-align: center;
  }
  .offer-left, .offer-right {
    align-items: center;
    justify-content: center;
  }
  .offer-right {
    align-items: center;
  }
  .hero-unique-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .hero-left, .hero-right {
    text-align: center;
  }
  .hero-right {
    align-items: start;
  }
  .offer-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .offer-left {
    flex-direction: column;
    align-items: center;
  }
  .offer-right {
    align-items: center;
  }
  .hero-unique-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .feature-card {
    width: 100%;
  }
   .guide-articles {
    gap: 30px;
  }

  .guide-block {
    padding: 30px 35px;
  }

  .guide-block h4 {
    font-size: 1.4rem;
  }

  .guide-title {
    font-size: 1.8rem;
  }
  .contact-card {
    flex-direction: column;
  }
  .contact-card > div {
    text-align: center;
  }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; gap: 15px; }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-modern-grid { flex-direction: column; text-align: center; }
  .about-modern-visual { margin-top: 40px; height: 250px; }
  .offer-item {
    flex-direction: column;
    text-align: center;
  }
  .offer-payments {
    justify-content: center;
  }
}
@media(max-width: 768px) {
  .offers-title {
    font-size: 2rem;
  }
  .offer-logo img {
    width: 80px;
  }
  .offer-btn {
    font-size: 0.9rem;
    padding: 10px 22px;
  }
  .contact-card {
    flex-direction: column;
  }
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 200px;
    transition: right 0.3s;
    padding: 20px;
    display: none;
    border-left: 2px solid #00f0ff;
  }
  .nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .nav a {
    color: #fff;
  }
  .nav.active {
    right: 0;
    margin-top: 16px;
    display: block;
    background: linear-gradient(135deg, #0c0033, #1a002b);
    border-bottom: 2px solid #00f0ff;
  }
  .burger {
    display: flex;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }
}
