* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
  color: #e8e8e8;
  line-height: 1.6;
  min-height: 100vh;
}

.section-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.top-nav {
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
}

.logo-icon {
  font-size: 32px;
}

.logo-name {
  letter-spacing: 2px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-btn span {
  width: 30px;
  height: 3px;
  background: #e8e8e8;
  border-radius: 3px;
  transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-item {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
  color: #ffd700;
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 88px;
    right: -100%;
    flex-direction: column;
    background: rgba(10, 10, 20, 0.98);
    width: 80%;
    max-width: 300px;
    padding: 40px 30px;
    gap: 25px;
    transition: right 0.3s;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 20px 0 0 20px;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
  }
}

.hero-banner {
  padding: 120px 30px;
  text-align: center;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "✨";
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 80px;
  opacity: 0.1;
}

.hero-banner::after {
  content: "🌙";
  position: absolute;
  bottom: 15%;
  right: 10%;
  font-size: 100px;
  opacity: 0.1;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffd700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #d0d0d0;
}

.hero-btn {
  display: inline-block;
  background: #ffd700;
  color: #1a1a2e;
  padding: 18px 50px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.intro-block {
  padding: 90px 30px;
  background: #16213e;
}

.section-heading {
  font-size: 44px;
  text-align: center;
  margin-bottom: 25px;
  color: #ffd700;
  font-weight: 800;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #b0b0b0;
  line-height: 1.8;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.value-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

.value-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 600;
}

.value-item p {
  color: #b0b0b0;
  line-height: 1.7;
}

.warnings-block {
  padding: 90px 30px;
  background: #1a1a2e;
}

.warning-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.warning-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 15px;
  border-left: 5px solid;
}

.warning-card.danger {
  border-left-color: #e74c3c;
}

.warning-card.info {
  border-left-color: #3498db;
}

.warning-card.alert {
  border-left-color: #f39c12;
}

.warning-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 600;
}

.warning-card p {
  color: #b0b0b0;
  line-height: 1.7;
}

.featured-game-block {
  padding: 90px 30px;
  background: #16213e;
}

.game-intro {
  text-align: center;
  font-size: 17px;
  margin-bottom: 50px;
  color: #b0b0b0;
}

.game-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.game-embed {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}

.advantages-block {
  padding: 90px 30px;
  background: #1a1a2e;
}

.advantage-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 35px;
}

.advantage-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s;
}

.advantage-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
}

.advantage-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #ffd700;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
}

.advantage-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffd700;
  font-weight: 600;
}

.advantage-text p {
  color: #b0b0b0;
  line-height: 1.7;
}

.closing-cta {
  padding: 100px 30px;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  text-align: center;
}

.cta-title {
  font-size: 46px;
  margin-bottom: 20px;
  color: #ffd700;
  font-weight: 800;
}

.cta-text {
  font-size: 19px;
  margin-bottom: 40px;
  color: #d0d0d0;
}

.cta-link {
  display: inline-block;
  background: #ffd700;
  color: #1a1a2e;
  padding: 18px 50px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.page-footer {
  background: #0a0a14;
  padding: 70px 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-block h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 600;
}

.footer-block p {
  color: #b0b0b0;
  margin-bottom: 15px;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: #ffd700;
}

.footer-credits {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #808080;
  font-size: 14px;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(10px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-inner {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  padding: 50px;
  border-radius: 25px;
  text-align: center;
  max-width: 550px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  border: 3px solid #ffd700;
}

.age-modal-header {
  margin-bottom: 25px;
}

.moon-icon {
  font-size: 80px;
  margin-bottom: 15px;
}

.age-modal-header h2 {
  font-size: 36px;
  color: #ffd700;
  font-weight: 800;
}

.age-modal-body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #d0d0d0;
}

.age-modal-footer {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-accept,
.btn-reject {
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-accept {
  background: #ffd700;
  color: #1a1a2e;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.btn-reject {
  background: transparent;
  color: #e8e8e8;
  border: 2px solid #e8e8e8;
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-banner {
  padding: 90px 30px 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}

.banner-inner h1 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #ffd700;
  font-weight: 800;
}

.banner-inner p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #d0d0d0;
  line-height: 1.7;
}

.instructions-block {
  padding: 60px 30px;
  background: #16213e;
}

.instructions-panel {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.instructions-panel h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ffd700;
  font-weight: 600;
}

.instructions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.instructions-list li {
  padding-left: 30px;
  position: relative;
  color: #b0b0b0;
  line-height: 1.7;
}

.instructions-list li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #ffd700;
}

.gameplay-block {
  padding: 60px 0;
  background: #1a1a2e;
}

.game-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.game-fullscreen {
  width: 100%;
  height: 850px;
  border: none;
  display: block;
}

.reminder-block {
  padding: 60px 30px;
  background: #16213e;
}

.reminder-panel {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(231, 76, 60, 0.1);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(231, 76, 60, 0.4);
  text-align: center;
}

.reminder-panel h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #e74c3c;
  font-weight: 600;
}

.reminder-panel p {
  color: #b0b0b0;
  line-height: 1.7;
}

.legal-banner {
  padding: 100px 30px 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}

.legal-banner h1 {
  font-size: 52px;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 800;
}

.legal-date {
  font-size: 16px;
  color: #b0b0b0;
}

.legal-section {
  padding: 80px 30px;
  background: #1a1a2e;
}

.legal-article {
  max-width: 1000px;
  margin: 0 auto 35px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid #ffd700;
}

.legal-article h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #ffd700;
  font-weight: 600;
}

.legal-article p {
  margin-bottom: 18px;
  color: #b0b0b0;
  line-height: 1.8;
}

.legal-article ul,
.legal-article ol {
  margin-left: 30px;
  margin-bottom: 18px;
  color: #b0b0b0;
}

.legal-article li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-article strong {
  color: #ffffff;
}

.legal-article a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid #ffd700;
}

.legal-article a:hover {
  color: #ffed4e;
  border-bottom-color: #ffed4e;
}

.legal-article.warning {
  border-left-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.legal-article.summary {
  border: 3px solid #ffd700;
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .game-embed {
    height: 550px;
  }

  .game-fullscreen {
    height: 650px;
  }

  .value-props,
  .warning-cards {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .age-modal-inner {
    padding: 35px;
    margin: 20px;
  }

  .age-modal-footer {
    flex-direction: column;
  }

  .legal-banner h1 {
    font-size: 36px;
  }

  .legal-article {
    padding: 30px 25px;
  }
}
