/* 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 {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(10, 10, 20, 0.95); /* темный фон */
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px #FFD700, 0 0 30px #FFA500; /* жёлто-оранжевый неон */
  z-index: 999;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: center;
}

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

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  transition: transform 0.3s;
}
.logo-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #FFA500);
}

/* Navigation menu */
.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: #FFD700;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-menu a:hover {
  color: #FFA500;
  text-shadow: 0 0 8px #FFD700, 0 0 16px #FFA500;
}



/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 20px;
  background: #0d0d0d;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,0,0.15), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(255,165,0,0.15), transparent 70%);
  z-index:1;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  z-index:2;
}

.hero-main {
  text-align: left;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 4rem;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 30px #FFA500;
  margin-bottom: 15px;
}

.hero-warning {
  color: #FFA500;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF8DC;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0a0a0a;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 20px #FFD700, 0 0 35px #FFA500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px #FFD700, 0 0 55px #FFA500;
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature-card {
  background: rgba(20,20,20,0.7);
  border: 1px solid #FFD700;
  border-radius: 15px;
  padding: 20px;
  width: 48%;
  text-align: center;
  color: #FFF8DC;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  z-index:2;
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #FFD700;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #FFD700;
  margin-bottom: 8px;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #FFD700, 0 0 45px #FFA500;
  border-color: #FFA500;
}

/* Анимационные линии */
.hero-animation .neon-line {
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  animation: slide 5s linear infinite;
  opacity: 0.4;
}

.neon-line-1 { top: 20%; animation-delay: 0s; }
.neon-line-2 { top: 50%; animation-delay: 2s; }
.neon-line-3 { top: 80%; animation-delay: 4s; }

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* SINGLE OFFER */
.single-offer {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a, #000000);
  font-family: 'Orbitron', sans-serif;
  color: #ffd700;
}

.offer-card {
  position: relative;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: row;
  background: rgba(0,0,0,0.8);
  border: 2px solid #ffd700;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px #ffd700, 0 0 50px #ffcc00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px #ffd700, 0 0 70px #ffcc00;
}

.offer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/neon-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.offer-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-logo img {
  width: 150px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #ffd700);
}

.offer-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffcc00;
}

.offer-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff176;
}

.offer-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffd700, #ffcc00);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 15px #ffd700, 0 0 25px #ffcc00;
  transition: all 0.3s ease;
}

.offer-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px #ffd700, 0 0 50px #ffcc00;
}
/* RESPONSIBLE GAMING */
.responsible-gaming {
  background: radial-gradient(circle at top, #0a0a0a 0%, #000 100%);
  color: #f8f8f8;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.rg-container {
  max-width: 900px;
  margin: 0 auto;
}

.rg-title {
  font-size: 2.5rem;
  color: #ffea00;
  text-shadow: 0 0 10px #ffea00, 0 0 20px #ffea00;
  margin-bottom: 40px;
}

.rg-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #ddd;
}

.rg-container strong {
  color: #fff700;
  text-shadow: 0 0 10px #ffea00;
}

.rg-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.tip {
  background: rgba(255, 255, 0, 0.05);
  border: 1px solid rgba(255, 255, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip i {
  font-size: 1.8rem;
  color: #ffea00;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #ffea00;
}

.tip span {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}

.rg-footer {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #fffae5;
}
/* FOOTER */
.site-footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffea00;
  text-shadow: 0 0 8px #ffea00, 0 0 20px #ffd500;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-links a {
  color: #ffea00;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  text-shadow: 0 0 8px #ffea00, 0 0 20px #ffd500;
  transform: translateY(-2px);
}

.footer-trust {
  margin-top: 20px;
}

.age-big {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 0 8px #ffea00;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-badges a img {
  height: 50px;
  transition: transform 0.3s, filter 0.3s;
}

.trust-badges a img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #ffea00);
}

.footer-note {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #ddd;
}
.guide {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 160px 20px;
  font-family: 'Poppins', sans-serif;
}

.guide-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-step {
  background: #111;
  border: 1px solid rgba(255, 234, 0, 0.25);
  border-radius: 14px;
  padding: 25px 30px;
  box-shadow: 0 0 15px rgba(255, 234, 0, 0.05);
  transition: 0.3s ease;
}

.guide-step:hover {
  border-color: #ffea00;
  box-shadow: 0 0 20px rgba(255, 234, 0, 0.2);
  transform: translateY(-3px);
}

.guide-step h3 {
  color: #ffea00;
  margin-bottom: 15px;
  font-size: 1.3rem;
  text-shadow: 0 0 6px #ffea00;
}

.guide-step p, .guide-step li {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

.guide-step ul {
  margin: 10px 0 15px 20px;
  list-style: disc;
}

.guide-final {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #111, #0d0d0d);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 234, 0, 0.15);
}

.guide-final h2 {
  color: #ffea00;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #ffea00;
}

.guide-final p {
  color: #e6e6e6;
  font-size: 1.1rem;
  line-height: 1.7;
}
/* 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; }
}
