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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(10,10,10,0.95);
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 15px 20px;
  box-shadow: 0 0 10px #ff00ff;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff;
  font-weight: bold;
}

.nav-menu a {
  color: #00ffff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
  text-shadow: 0 0 4px #00ffff;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff;
}

/* HERO */
.hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 180px 20px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #00ffff;
  font-family: 'Arial', sans-serif;
}

.hero-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

.hero-left {
  flex: 1.2;
}

.hero-title {
  font-size: 3rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
  margin-bottom: 10px;
}

.age-warning {
  color: #ff5555;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: #0a0a0a;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff00ff, 0 0 50px #00ffff;
}

.hero-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px #ff00ff, 0 0 15px #00ffff;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card p {
  font-size: 1rem;
  color: #00ffff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #ff00ff, 0 0 35px #00ffff;
}

/* SINGLE OFFER */
.single-offer {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.offer-card {
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 40px #ff00ff, 0 0 60px #00ffff;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 60px #ff00ff, 0 0 80px #00ffff;
}

.offer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a1a, #3a003a);
  background-size: 200% 200%;
  animation: gradientMove 12s ease infinite;
  z-index: 0;
}

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

.offer-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  text-align: center;
}

.offer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.offer-content h2 {
  font-size: 2.8rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
  margin-bottom: 20px;
}

.offer-content p {
  font-size: 1.2rem;
  color: #00ffff;
  margin-bottom: 30px;
}

.offer-btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  color: #0a0a0a;
  background: #ff00ff;
  box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
  transition: all 0.3s ease;
}
.trust-inner {
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-badge img {
    height: 50px;
    filter: brightness(1) invert(1);
    transition: transform 0.3s, filter 0.3s;
}
.offer-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff00ff, 0 0 50px #00ffff;
}
/* RESPONSIBLE GAMING */
.responsible-gaming {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
}

.responsible-gaming h2 {
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff;
  margin-bottom: 20px;
}

.responsible-gaming p {
  color: #00ffff;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  background-color: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
}

.footer-logo {
  color: #ff00ff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 6px #ff00ff;
}

.footer-links a {
  color: #00ffff;
  margin: 0 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #ff00ff;
}

.footer-note {
  margin-top: 20px;
  color: #888;
}

.footer-socials a {
  margin: 0 10px;
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-socials a:hover {
  color: #ff00ff;
}
.guide {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #00ffff;
  padding: 180px 20px;
  font-family: 'Arial', sans-serif;
}

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

.guide-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #ff00ff;
}

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

/* Стиль карточек шагов */
.guide-step {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
}

.guide-step h3 {
  font-size: 1.4rem;
  color: #ff00ff;
  margin-bottom: 15px;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #00ffff;
}

.guide-step p, .guide-step ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #00ffff;
}

.guide-step ul {
  padding-left: 20px;
  list-style: none;
}

.guide-step ul li::before {
  content: '✓';
  color: #ff00ff;
  margin-right: 10px;
}

/* Финальный блок */
.guide-final {
  grid-column: 1 / -1;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px #ff00ff, 0 0 35px #00ffff;
}

.guide-final h2 {
  font-size: 2rem;
  color: #ff00ff;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #ff00ff, 0 0 15px #00ffff;
}

.guide-final p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #00ffff;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  nav.nav-menu {
    display: none;
  }
  .hero-container { flex-direction: column; gap: 30px; }
  .hero-right { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-btn { padding: 12px 25px; }

  .offer-card { padding: 30px; }
  .offer-card h2 { font-size: 2rem; }
  .offer-card p { font-size: 1rem; }

  .nav-menu a { margin-left: 15px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .offer-card { padding: 20px; }
}
