* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-blue: #1e3a8a;
  --sky-blue: #60a5fa;
  --light-blue: #bfdbfe;
  --ice-blue: #f0f9ff;
  --silver: #94a3b8;
  --dark-slate: #0f172a;
  --slate: #1e293b;
  --light-slate: #334155;
  --white-text: #f8fafc;
  --gray-text: #cbd5e1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-slate);
  color: var(--white-text);
  line-height: 1.65;
}

.wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Verification Screen */
.verification-screen {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(14px);
}

.verification-screen.hidden {
  display: none;
}

.verification-panel {
  background: linear-gradient(135deg, var(--slate), var(--dark-slate));
  border: 3px solid var(--sky-blue);
  border-radius: 18px;
  padding: 52px 46px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(96, 165, 250, 0.5);
}

.panel-icon {
  font-size: 100px;
  margin-bottom: 26px;
  animation: rotate-slow 6s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.verification-panel h2 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--sky-blue);
}

.panel-subtitle,
.panel-text,
.panel-note {
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--silver);
}

.panel-text {
  font-size: 20px !important;
  color: var(--white-text) !important;
  font-weight: 700;
}

.panel-note {
  color: var(--light-blue) !important;
  font-weight: 600;
}

.verification-buttons {
  display: flex;
  gap: 20px;
  margin-top: 38px;
  justify-content: center;
}

.verify-button {
  padding: 18px 42px;
  font-size: 19px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.verify-button.confirm {
  background: linear-gradient(135deg, var(--navy-blue), var(--sky-blue));
  color: white;
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.verify-button.confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(96, 165, 250, 0.6);
}

.verify-button.reject {
  background: transparent;
  border: 2px solid var(--silver);
  color: var(--silver);
}

.verify-button.reject:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
}

/* Header */
.top-header {
  background: var(--slate);
  border-bottom: 3px solid var(--sky-blue);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.top-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white-text);
}

.brand-mark {
  font-size: 36px;
  color: var(--sky-blue);
}

.brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--sky-blue);
}

/* Menu Trigger */
.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.trigger-bar {
  width: 30px;
  height: 3px;
  background: var(--sky-blue);
  transition: all 0.3s;
  border-radius: 3px;
}

.menu-trigger.active .trigger-bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-trigger.active .trigger-bar:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active .trigger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Top Menu */
.top-menu {
  display: flex;
  gap: 34px;
}

.menu-link {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--sky-blue);
  transition: width 0.3s;
}

.menu-link:hover,
.menu-link.current-page {
  color: var(--sky-blue);
}

.menu-link:hover::after,
.menu-link.current-page::after {
  width: 100%;
}

/* Showcase Section */
.showcase-section {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--sky-blue) 100%);
  padding: 105px 0;
  text-align: center;
}

.showcase-inner {
  max-width: 880px;
  margin: 0 auto;
}

.showcase-section h1 {
  font-family: 'Inter', sans-serif;
  font-size: 66px;
  font-weight: 900;
  margin-bottom: 26px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.showcase-text {
  font-size: 22px;
  margin-bottom: 42px;
  line-height: 1.75;
}

.action-btn {
  display: inline-block;
  padding: 20px 56px;
  background: white;
  color: var(--navy-blue);
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
}

/* Overview Section */
.overview-section {
  padding: 92px 0;
  background: var(--dark-slate);
}

.overview-intro {
  text-align: center;
  margin-bottom: 62px;
}

.overview-intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--sky-blue);
}

.overview-description {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.75;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.pillar {
  background: var(--slate);
  border: 2px solid var(--light-slate);
  border-radius: 14px;
  padding: 44px;
  transition: all 0.3s;
}

.pillar:hover {
  border-color: var(--sky-blue);
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(96, 165, 250, 0.3);
}

.pillar-symbol {
  font-size: 76px;
  display: block;
  margin-bottom: 24px;
}

.pillar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--sky-blue);
}

.pillar p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
}

/* Gaming Section */
.gaming-section {
  padding: 92px 0;
  background: var(--slate);
}

.section-header {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--sky-blue);
}

.section-description {
  text-align: center;
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 52px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.game-container {
  border: 4px solid var(--sky-blue);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(96, 165, 250, 0.4);
}

.game-viewport {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}

/* Benefits Section */
.benefits-section {
  padding: 92px 0;
  background: var(--dark-slate);
}

.benefits-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.benefit-card {
  background: var(--slate);
  padding: 36px;
  border-radius: 12px;
  border: 2px solid var(--light-slate);
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--sky-blue);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.card-badge {
  font-family: 'Inter', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--sky-blue);
  opacity: 0.4;
}

.card-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--sky-blue);
}

.benefit-card p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
}

/* Notices Section */
.notices-section {
  padding: 92px 0;
  background: var(--slate);
}

.notices-container {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--dark-slate);
  border: 3px solid var(--sky-blue);
  border-radius: 16px;
  padding: 52px;
}

.notices-container h3 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 42px;
  color: var(--sky-blue);
}

.notices-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.notice-item {
  background: var(--slate);
  padding: 28px;
  border-radius: 10px;
  border: 2px solid var(--light-slate);
}

.notice-item h5 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--light-blue);
}

.notice-item p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.65;
}

/* Title Section */
.title-section {
  background: var(--slate);
  padding: 72px 0;
  text-align: center;
  border-bottom: 3px solid var(--sky-blue);
}

.title-section h1 {
  font-family: 'Inter', sans-serif;
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--sky-blue);
}

.title-text {
  font-size: 20px;
  color: var(--gray-text);
}

/* Play Zone */
.play-zone {
  padding: 72px 0;
  background: var(--dark-slate);
}

.play-info {
  background: var(--slate);
  border: 2px solid var(--sky-blue);
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 48px;
}

.play-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--sky-blue);
}

.info-points {
  list-style: none;
}

.info-points li {
  padding: 13px 0;
  padding-left: 34px;
  position: relative;
  color: var(--gray-text);
  font-size: 16px;
}

.info-points li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-size: 20px;
}

/* Legal Section */
.legal-section {
  padding: 72px 0;
  background: var(--dark-slate);
}

.legal-text {
  max-width: 980px;
  margin: 0 auto;
  background: var(--slate);
  padding: 58px;
  border-radius: 14px;
  border: 2px solid var(--light-slate);
}

.effective-date {
  text-align: center;
  color: var(--silver);
  font-style: italic;
  margin-bottom: 44px;
  font-size: 15px;
}

.legal-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 18px;
  color: var(--sky-blue);
}

.legal-text h2:first-of-type {
  margin-top: 0;
}

.legal-text p {
  margin-bottom: 18px;
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 16px;
}

.legal-text ul {
  margin: 20px 0;
  padding-left: 40px;
}

.legal-text li {
  margin-bottom: 12px;
  color: var(--gray-text);
}

.legal-text a {
  color: var(--sky-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-text a:hover {
  color: var(--light-blue);
}

.warning-block {
  background: var(--dark-slate);
  border: 3px solid var(--light-blue);
  border-radius: 12px;
  padding: 34px;
  margin: 38px 0;
}

.warning-block h2 {
  margin-top: 0 !important;
  color: var(--light-blue) !important;
}

/* Footer */
.bottom-footer {
  background: var(--slate);
  border-top: 3px solid var(--sky-blue);
  padding: 66px 0 40px;
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--silver);
  font-size: 15px;
}

.footer-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--sky-blue);
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}

.footer-nav a:hover {
  color: var(--sky-blue);
}

.footer-base {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid var(--dark-slate);
  color: var(--silver);
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-trigger {
    display: flex;
  }

  .top-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--slate);
    flex-direction: column;
    align-items: flex-start;
    padding: 95px 34px 34px;
    gap: 26px;
    transition: right 0.4s;
    border-left: 3px solid var(--sky-blue);
  }

  .top-menu.open {
    right: 0;
  }

  .menu-link {
    width: 100%;
    padding: 12px 0;
    font-size: 20px;
  }

  .showcase-section {
    padding: 78px 0;
  }

  .showcase-section h1 {
    font-size: 46px;
  }

  .showcase-text {
    font-size: 19px;
  }

  .overview-intro h2,
  .section-header {
    font-size: 38px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .game-viewport {
    height: 560px;
  }

  .notices-columns {
    grid-template-columns: 1fr;
  }

  .legal-text {
    padding: 40px 26px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .verification-panel {
    margin: 20px;
    padding: 40px 28px;
  }

  .verification-panel h2 {
    font-size: 34px;
  }

  .verification-buttons {
    flex-direction: column;
  }

  .verify-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 24px;
  }

  .brand-mark {
    font-size: 28px;
  }

  .showcase-section h1 {
    font-size: 36px;
  }

  .title-section h1 {
    font-size: 42px;
  }

  .game-viewport {
    height: 460px;
  }
}
