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

body {
  background: linear-gradient(180deg, rgba(11, 9, 17, 0.90) 0%, rgba(11, 9, 17, 0.95) 50%, rgba(11, 9, 17, 0.98) 100%), url('./banner.png') center top / cover no-repeat fixed;
  color: #a8a7b4;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: #0b0911;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.p7-svg-icon {
  shape-rendering: geometricPrecision;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.25));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #7a7988;
}

.nav-right a {
  transition: color 0.15s ease;
}

.nav-right a:hover {
  color: #ffffff;
}

.cta-link {
  color: #c084fc !important;
  font-weight: 600;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 100px;
}

.hero-content {
  max-width: 620px;
}

.hero-logo-svg {
  width: 140px;
  height: auto;
  margin: 0 auto 28px auto;
  display: block;
  animation: fadeUp 0.6s ease both;
  filter: drop-shadow(0 0 24px rgba(147, 51, 234, 0.4));
}

h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.seven {
  color: #c084fc;
}

.hero-desc {
  font-size: 16px;
  color: #8c8b98;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-block;
  background: #c084fc;
  color: #0b0911;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 6px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(192, 132, 252, 0.2);
}

.btn-primary:hover {
  background: #d4a8ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(192, 132, 252, 0.35);
}

.btn-text {
  display: inline-block;
  font-size: 14px;
  color: #b0b0b8;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-text:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.about-section {
  padding: 100px 0;
  background: rgba(15, 12, 23, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-main p {
  color: #8c8b98;
  font-size: 15px;
  line-height: 1.8;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.role-card {
  background: #120e1b;
  border: 1px solid #1f182d;
  border-radius: 8px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.role-card:hover {
  border-color: #34284b;
  transform: translateY(-2px);
}

.role-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #c084fc;
}

.role-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #e2e1e8;
  margin-bottom: 6px;
}

.role-card p {
  font-size: 13px;
  color: #7a7988;
  line-height: 1.6;
}

.leadership-section {
  padding: 100px 0;
}

.leadership-section h2 {
  margin-bottom: 24px;
}

.leader-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  max-width: 680px;
}

.leader-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: #120e1b;
  border: 1px solid #1f182d;
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.leader-row:hover {
  border-color: #34284b;
  transform: translateX(4px);
}

.leader-avatar-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #281f3b;
}

.leader-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1527;
  color: #c084fc;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  flex-grow: 1;
}

.leader-role {
  font-size: 13px;
  font-weight: 500;
}

.founder-role {
  color: #c084fc;
}

.owner-role {
  color: #c084fc;
}

.board-role {
  color: #60a5fa;
}

.games-section {
  padding: 100px 0;
}

.games-section h2 {
  margin-bottom: 24px;
}

.games-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #120e1b;
  border: 1px solid #1f182d;
  border-radius: 8px;
  max-width: 340px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-row:hover {
  border-color: #34284b;
  transform: translateY(-2px);
}

.game-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.game-status {
  font-size: 12px;
  color: #c084fc;
  font-weight: 500;
}

.coming-soon {
  margin-top: 16px;
  font-size: 13px;
  color: #5a5968;
  font-style: italic;
}

.merch-section {
  padding: 100px 0;
}

.merch-section h2 {
  margin-bottom: 24px;
}

.merch-box {
  background: #120e1b;
  border: 1px solid #1f182d;
  border-radius: 12px;
  padding: 40px 36px;
  transition: border-color 0.2s ease;
}

.merch-box:hover {
  border-color: #34284b;
}

.merch-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.merch-info p {
  color: #8c8b98;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 580px;
}

.partners-section {
  padding: 100px 0;
  background: rgba(15, 12, 23, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.partners-section h2 {
  margin-bottom: 24px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.partner-card {
  display: block;
  background: #120e1b;
  border: 1px solid #1f182d;
  border-radius: 10px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
  border-color: #34284b;
  transform: translateY(-2px);
}

.partner-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #c084fc;
}

.partner-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.partner-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.partner-info p {
  font-size: 14px;
  color: #8c8b98;
  line-height: 1.6;
}

.partner-contact-card {
  border-style: dashed;
  border-color: #2b223c;
}

.partner-btn {
  margin-top: 16px;
}

.cta-section {
  padding: 100px 0;
  background: rgba(15, 12, 23, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-inner {
  text-align: center;
}

.cta-inner p {
  color: #8c8b98;
  margin-bottom: 28px;
  font-size: 15px;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-size: 13px;
  color: #5a5968;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  font-size: 13px;
  color: #7a7988;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-socials a:hover {
  color: #c084fc;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 44px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .leader-list {
    grid-template-columns: 1fr;
  }

  .nav-right a:not(.cta-link) {
    display: none;
  }

  .footer-row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
