* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 50%, #1a0033 100%);
  color: #d4c5e8;
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
}

.verification-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 0, 51, 0.97);
  backdrop-filter: blur(10px);
}

.verification-modal.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-panel {
  background: linear-gradient(145deg, #2d1b4e, #1a0033);
  padding: 3.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid #8b5cf6;
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
}

.modal-emblem {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
}

.emblem-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #c4b5fd;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

.emblem-letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a0033;
  font-family: 'Cinzel', serif;
}

.modal-heading {
  font-size: 2.1rem;
  margin-bottom: 1.25rem;
  color: #c4b5fd;
  font-weight: 600;
}

.modal-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #a78bfa;
}

.modal-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
}

.action-btn.confirm {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #1a0033;
}

.action-btn.confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.action-btn.decline {
  background: transparent;
  color: #8b5cf6;
  border: 2px solid #4c1d95;
}

.action-btn.decline:hover {
  border-color: #6d28d9;
  color: #a78bfa;
}

.primary-header {
  background: rgba(26, 0, 51, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #4c1d95;
}

.header-inner {
  max-width: 100%;
  padding: 1.25rem 2.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a0033;
  font-family: 'Cinzel', serif;
  border: 2px solid #c4b5fd;
}

.logo-emblem.small {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}

.logo-text {
  font-size: 1.65rem;
  font-weight: 700;
  color: #c4b5fd;
  font-family: 'Cinzel', serif;
  letter-spacing: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.toggle-line {
  width: 28px;
  height: 3px;
  background: #8b5cf6;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.primary-nav {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: #e9d5ff;
  background: rgba(139, 92, 246, 0.2);
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(26, 0, 51, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 5.5rem;
    gap: 0;
  }

  .primary-nav.open {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1.75rem;
    width: 100%;
    font-size: 1.15rem;
  }
}

main {
  width: 100%;
}

.hero-area {
  padding: 8rem 2.75rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: 4.25rem;
  margin-bottom: 1.75rem;
  color: #e9d5ff;
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtext {
  font-size: 1.4rem;
  color: #a78bfa;
  margin-bottom: 3.25rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 1.35rem 3.5rem;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #1a0033;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.container {
  max-width: 100%;
  padding: 0 2.75rem;
}

.introduction {
  padding: 6.5rem 0;
  background: rgba(45, 27, 78, 0.4);
}

.section-heading {
  font-size: 3rem;
  margin-bottom: 2.25rem;
  text-align: center;
  color: #e9d5ff;
  font-weight: 700;
}

.intro-paragraph {
  font-size: 1.2rem;
  color: #a78bfa;
  margin-bottom: 1.75rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tenets {
  padding: 6.5rem 0;
  background: rgba(26, 0, 51, 0.6);
}

.tenet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.75rem;
  margin-top: 3.25rem;
}

.tenet-box {
  background: linear-gradient(145deg, #2d1b4e, #1a0033);
  padding: 2.75rem;
  border-radius: 10px;
  border: 1px solid #4c1d95;
  transition: all 0.3s ease;
}

.tenet-box:hover {
  border-color: #8b5cf6;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.25);
}

.tenet-symbol {
  font-size: 3.75rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.tenet-title {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: #e9d5ff;
  text-align: center;
}

.tenet-description {
  color: #a78bfa;
  line-height: 1.8;
  text-align: center;
}

.featured-game {
  padding: 6.5rem 0;
  background: rgba(45, 27, 78, 0.4);
}

.game-intro-text {
  text-align: center;
  font-size: 1.25rem;
  color: #a78bfa;
  margin-bottom: 3.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.game-frame-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background: #0d0014;
  padding: 1.75rem;
  border-radius: 10px;
  border: 2px solid #4c1d95;
}

.game-frame {
  width: 100%;
  height: 750px;
  border: none;
  border-radius: 6px;
}

.responsibility {
  padding: 6.5rem 0;
  background: rgba(26, 0, 51, 0.6);
  text-align: center;
}

.responsibility-message {
  font-size: 1.2rem;
  color: #a78bfa;
  max-width: 1000px;
  margin: 0 auto 3.25rem auto;
}

.resources-grid {
  display: flex;
  gap: 2.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 2.75rem;
  background: linear-gradient(145deg, #2d1b4e, #1a0033);
  border: 1px solid #4c1d95;
  border-radius: 8px;
  color: #a78bfa;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.resource-card:hover {
  border-color: #8b5cf6;
  color: #e9d5ff;
  transform: translateY(-3px);
}

.resource-symbol {
  font-size: 2rem;
}

.primary-footer {
  background: #0d0014;
  border-top: 1px solid #4c1d95;
  padding: 4.5rem 2.75rem;
}

.footer-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.75rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c4b5fd;
  font-family: 'Cinzel', serif;
  letter-spacing: 3px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-header {
  font-size: 1.15rem;
  color: #e9d5ff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-link {
  color: #a78bfa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #c4b5fd;
}

.footer-notice {
  color: #7c3aed;
  font-size: 0.975rem;
  margin-bottom: 0.6rem;
}

.footer-rights {
  color: #5b21b6;
  font-size: 0.925rem;
}

.page-intro {
  padding: 5.5rem 2.75rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
}

.intro-title {
  font-size: 3.75rem;
  margin-bottom: 1.25rem;
  color: #e9d5ff;
  font-weight: 700;
}

.intro-description {
  font-size: 1.3rem;
  color: #a78bfa;
  max-width: 900px;
  margin: 0 auto;
}

.legal-date {
  color: #7c3aed;
  font-size: 1.05rem;
}

.game-play {
  padding: 5.5rem 0;
  background: rgba(45, 27, 78, 0.4);
}

.game-info-box {
  max-width: 1400px;
  margin: 3.5rem auto 0 auto;
  padding: 2.75rem;
  background: linear-gradient(145deg, #2d1b4e, #1a0033);
  border-radius: 10px;
  border: 1px solid #4c1d95;
}

.info-title {
  font-size: 2.5rem;
  margin-bottom: 1.75rem;
  color: #e9d5ff;
  text-align: center;
}

.info-description {
  color: #a78bfa;
  margin-bottom: 2.75rem;
  line-height: 1.85;
  font-size: 1.1rem;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.25rem;
}

.feature-entry {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2.75rem;
  flex-shrink: 0;
}

.feature-heading {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  color: #e9d5ff;
}

.feature-text {
  color: #a78bfa;
  line-height: 1.75;
}

.important-notes {
  padding: 5.5rem 0;
  background: rgba(26, 0, 51, 0.6);
}

.notes-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2d1b4e, #1a0033);
  padding: 3.25rem;
  border-radius: 10px;
  border: 2px solid #8b5cf6;
}

.notes-heading {
  font-size: 2.5rem;
  margin-bottom: 2.25rem;
  text-align: center;
  color: #e9d5ff;
}

.notes-listing {
  list-style: none;
  padding: 0;
}

.notes-listing li {
  color: #a78bfa;
  padding: 1.1rem 0;
  padding-left: 2.75rem;
  position: relative;
  line-height: 1.75;
  font-size: 1.1rem;
}

.notes-listing li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-size: 1.4rem;
}

.legal-content {
  padding: 5.5rem 0;
  background: rgba(45, 27, 78, 0.4);
}

.document-box {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2d1b4e, #1a0033);
  padding: 3.75rem;
  border-radius: 10px;
  border: 1px solid #4c1d95;
}

.document-box h2 {
  font-size: 2rem;
  margin-top: 2.75rem;
  margin-bottom: 1.35rem;
  color: #c4b5fd;
}

.document-box h2:first-child {
  margin-top: 0;
}

.document-box p {
  color: #a78bfa;
  margin-bottom: 1.35rem;
  line-height: 1.9;
}

.document-box ul {
  list-style: disc;
  margin-left: 2.5rem;
  margin-bottom: 1.35rem;
  color: #a78bfa;
}

.document-box li {
  margin-bottom: 0.85rem;
  line-height: 1.8;
}

.document-box strong {
  color: #e9d5ff;
}

.document-box a {
  color: #8b5cf6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.document-box a:hover {
  color: #c4b5fd;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 3rem;
  }

  .hero-subtext {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 2.5rem;
  }

  .game-frame {
    height: 500px;
  }

  .tenet-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .document-box,
  .notes-panel {
    padding: 2.25rem 1.75rem;
  }

  .intro-title {
    font-size: 2.75rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}
