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

body {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0a0e27 100%);
  color: #e0e7ff;
  min-height: 100vh;
  line-height: 1.7;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  border-bottom: 2px solid #06b6d4;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-glyph {
  font-size: 2rem;
  color: #06b6d4;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #06b6d4;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #06b6d4;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(6, 182, 212, 0.6);
}

.top-nav {
  display: flex;
  gap: 2rem;
}

.nav-item {
  color: #94a3b8;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.nav-item.active {
  color: #06b6d4;
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.hero-banner {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15)),
              radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1), transparent);
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 4rem;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: #06b6d4;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

.hero-lead {
  font-size: 1.5rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.action-btn {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  color: #0a0e27;
  padding: 1.25rem 3rem;
  border: none;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.9);
}

.info-strip {
  padding: 3rem 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.strip-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: #8b5cf6;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.strip-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.feature-blocks {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
  border-top: 1px solid rgba(6, 182, 212, 0.3);
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

.blocks-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.feature-block {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(10, 14, 39, 0.6));
  padding: 2.5rem;
  border: 2px solid rgba(6, 182, 212, 0.3);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.8);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.block-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-block h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-block p {
  color: #94a3b8;
  line-height: 1.8;
}

.game-display {
  padding: 4rem 0;
}

.display-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.display-wrapper h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #8b5cf6;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.display-intro {
  text-align: center;
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.game-window {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(10, 14, 39, 0.6));
  padding: 2rem;
  border: 2px solid rgba(6, 182, 212, 0.5);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.game-viewport {
  width: 100%;
  height: 600px;
  border: none;
}

.critical-notices {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
}

.notices-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.notice-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(10, 14, 39, 0.8));
  padding: 2.5rem;
  border: 2px solid;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.warning-type {
  border-color: rgba(239, 68, 68, 0.6);
}

.info-type {
  border-color: rgba(59, 130, 246, 0.6);
}

.alert-type {
  border-color: rgba(245, 158, 11, 0.6);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.header-symbol {
  font-size: 2rem;
}

.notice-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #06b6d4;
  font-weight: 700;
  letter-spacing: 1px;
}

.notice-card p {
  color: #94a3b8;
  line-height: 1.8;
}

.advantages-module {
  padding: 4rem 0;
}

.module-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.module-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #8b5cf6;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.advantages-grid {
  display: grid;
  gap: 2rem;
}

.advantage-tile {
  display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.5), rgba(10, 14, 39, 0.5));
  padding: 2rem;
  border: 2px solid rgba(6, 182, 212, 0.3);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  align-items: center;
}

.tile-marker {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(6, 182, 212, 0.3);
  flex-shrink: 0;
}

.tile-data h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #06b6d4;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.tile-data p {
  color: #94a3b8;
  line-height: 1.8;
}

.bottom-bar {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(16, 33, 62, 0.95));
  border-top: 2px solid #06b6d4;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-section p {
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.support-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-links a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-links a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.95rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(6, 182, 212, 0.3);
  color: #64748b;
  font-size: 0.9rem;
}

.age-gate-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.age-gate-modal.hidden {
  display: none;
}

.age-gate-container {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(22, 33, 62, 0.95));
  padding: 3rem;
  border: 3px solid #06b6d4;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.6);
}

.gate-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

.age-gate-container h2 {
  font-family: 'Orbitron', sans-serif;
  color: #06b6d4;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}

.age-gate-container p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gate-subtext {
  font-size: 0.95rem;
  color: #94a3b8;
}

.gate-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.gate-btn {
  padding: 1.25rem 2.5rem;
  border: 2px solid;
  background: transparent;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.gate-btn.accept {
  border-color: #06b6d4;
  color: #06b6d4;
}

.gate-btn.accept:hover {
  background: #06b6d4;
  color: #0a0e27;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.gate-btn.decline {
  border-color: #64748b;
  color: #94a3b8;
}

.gate-btn.decline:hover {
  background: rgba(100, 116, 139, 0.3);
}

.page-header {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 3rem;
}

.header-box {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
}

.page-header p {
  font-size: 1.3rem;
  color: #cbd5e1;
  letter-spacing: 1px;
}

.page-header-compact {
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 2rem;
}

.page-header-compact h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #06b6d4;
  margin-bottom: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

.page-header-compact p {
  font-size: 1.1rem;
  color: #94a3b8;
}

.play-area {
  padding: 2rem 0 4rem;
}

.play-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.instructions-panel {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(10, 14, 39, 0.6));
  padding: 2.5rem;
  border: 2px solid rgba(6, 182, 212, 0.4);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  margin-bottom: 3rem;
}

.instructions-panel h2 {
  font-family: 'Orbitron', sans-serif;
  color: #06b6d4;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.panel-text p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.panel-text h3 {
  font-family: 'Orbitron', sans-serif;
  color: #8b5cf6;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.guide-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.guide-list li {
  color: #94a3b8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.8;
}

.guide-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #06b6d4;
}

.system-alert {
  background: rgba(6, 182, 212, 0.1);
  padding: 1.5rem;
  border: 2px solid rgba(6, 182, 212, 0.4);
  margin-top: 1.5rem;
  color: #06b6d4;
  line-height: 1.8;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.game-module h2 {
  font-family: 'Orbitron', sans-serif;
  color: #8b5cf6;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.module-desc {
  text-align: center;
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.game-container {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(10, 14, 39, 0.6));
  padding: 2rem;
  border: 2px solid rgba(6, 182, 212, 0.5);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.game-interface {
  width: 100%;
  height: 700px;
  border: none;
}

.document-area {
  padding: 2rem 0 4rem;
}

.doc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.doc-block {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(10, 14, 39, 0.6));
  padding: 2.5rem;
  border: 2px solid rgba(6, 182, 212, 0.3);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  margin-bottom: 2rem;
}

.doc-block h2 {
  font-family: 'Orbitron', sans-serif;
  color: #06b6d4;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.doc-block p {
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.doc-block ul {
  color: #94a3b8;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.doc-block li {
  margin-bottom: 0.75rem;
  line-height: 1.9;
}

.warning-block {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(10, 14, 39, 0.8));
  padding: 3rem;
  border: 3px solid;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  margin-bottom: 2rem;
}

.age-warning {
  border-color: rgba(245, 158, 11, 0.8);
}

.money-warning {
  border-color: rgba(6, 182, 212, 0.8);
}

.entertainment-warning {
  border-color: rgba(139, 92, 246, 0.8);
}

.warning-symbol {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.warning-block h2 {
  font-family: 'Orbitron', sans-serif;
  color: #06b6d4;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
}

.warning-block p {
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

.warning-block ul {
  color: #cbd5e1;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.warning-block li {
  margin-bottom: 0.75rem;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .top-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
  }

  .top-nav.active {
    max-height: 500px;
  }

  .nav-item {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  }

  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .strip-content h2 {
    font-size: 2rem;
  }

  .display-wrapper h2, .module-title {
    font-size: 2.2rem;
  }

  .game-viewport {
    height: 400px;
  }

  .game-interface {
    height: 500px;
  }

  .advantage-tile {
    flex-direction: column;
    text-align: center;
  }

  .tile-marker {
    font-size: 2.5rem;
  }

  .age-gate-container {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .gate-buttons {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header-compact h1 {
    font-size: 2.2rem;
  }
}
