* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #1c1c1c;
  color: #ececec;
  line-height: 1.6;
  min-height: 100vh;
}

.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.main-header {
  background: #2a2a2a;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 7000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  border-bottom: 3px solid #ff6b35;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ff6b35;
}

.brand-symbol {
  font-size: 34px;
}

.brand-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #ff6b35;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-option {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-option:hover,
.nav-option.current {
  color: #ff6b35;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: rgba(42, 42, 42, 0.98);
    width: 72%;
    max-width: 270px;
    padding: 32px 22px;
    gap: 20px;
    transition: right 0.3s;
    box-shadow: -5px 0 18px rgba(0, 0, 0, 0.7);
    border-radius: 18px 0 0 18px;
  }

  .site-nav.active {
    right: 0;
  }

  .nav-option {
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: 7px;
    background: rgba(255, 107, 53, 0.1);
  }
}

.intro-hero {
  padding: 100px 22px;
  text-align: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
  border-bottom: 3px solid #ff6b35;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ff6b35;
  letter-spacing: 5px;
}

.hero-content p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.7;
  color: #cfcfcf;
}

.hero-button {
  display: inline-block;
  background: #ff6b35;
  color: #ffffff;
  padding: 15px 42px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 5px 18px rgba(255, 107, 53, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  background: #ff8055;
}

.about-section {
  padding: 80px 22px;
  background: #1c1c1c;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: #ff6b35;
  letter-spacing: 4px;
  font-weight: 400;
}

.section-intro {
  text-align: center;
  font-size: 16px;
  max-width: 850px;
  margin: 0 auto 50px;
  color: #b0b0b0;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.benefit-card {
  background: #2a2a2a;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.3);
  border-color: #ff6b35;
}

.benefit-icon {
  font-size: 54px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 13px;
  color: #ff6b35;
  font-weight: 700;
}

.benefit-card p {
  color: #b0b0b0;
  line-height: 1.7;
}

.alerts-section {
  padding: 80px 22px;
  background: #2a2a2a;
}

.alerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.alert-item {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 14px;
  border-left: 5px solid;
}

.alert-item.critical {
  border-left-color: #dc3545;
}

.alert-item.standard {
  border-left-color: #17a2b8;
}

.alert-item.caution {
  border-left-color: #ffc107;
}

.alert-item h3 {
  font-size: 20px;
  margin-bottom: 13px;
  color: #ff6b35;
  font-weight: 700;
}

.alert-item p {
  color: #b0b0b0;
  line-height: 1.7;
}

.game-section {
  padding: 80px 22px;
  background: #1c1c1c;
}

.section-description {
  text-align: center;
  font-size: 15px;
  margin-bottom: 42px;
  color: #b0b0b0;
}

.game-display {
  max-width: 1150px;
  margin: 0 auto;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.game-window {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}

.perks-section {
  padding: 80px 22px;
  background: #2a2a2a;
}

.perks-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.perk-item {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.perk-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.3);
}

.perk-number {
  width: 52px;
  height: 52px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.perk-item h3 {
  font-size: 21px;
  margin-bottom: 11px;
  color: #ff6b35;
  font-weight: 700;
}

.perk-item p {
  color: #b0b0b0;
  line-height: 1.7;
}

.cta-section {
  padding: 90px 22px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
  text-align: center;
  border-top: 3px solid #ff6b35;
}

.cta-section h2 {
  font-size: 50px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  margin-bottom: 36px;
  color: #cfcfcf;
}

.cta-button {
  display: inline-block;
  background: #ff6b35;
  color: #ffffff;
  padding: 15px 42px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 5px 18px rgba(255, 107, 53, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  background: #ff8055;
}

.site-footer {
  background: #2a2a2a;
  padding: 60px 22px 26px;
  border-top: 3px solid #ff6b35;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 13px;
  color: #ff6b35;
  font-weight: 700;
}

.footer-column p {
  color: #b0b0b0;
  margin-bottom: 13px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  color: #808080;
  font-size: 13px;
}

.verify-screen {
  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(7px);
}

.verify-screen.hidden {
  display: none;
}

.verify-box {
  background: #2a2a2a;
  padding: 45px;
  border-radius: 20px;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.9);
  border: 3px solid #ff6b35;
}

.verify-icon {
  font-size: 72px;
  margin-bottom: 18px;
}

.verify-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  margin-bottom: 16px;
  color: #ff6b35;
  letter-spacing: 3px;
  font-weight: 400;
}

.verify-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #cfcfcf;
}

.verify-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.verify-btn {
  padding: 14px 36px;
  border: none;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.confirm-btn {
  background: #ff6b35;
  color: #ffffff;
}

.confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(255, 107, 53, 0.5);
  background: #ff8055;
}

.reject-btn {
  background: transparent;
  color: #ececec;
  border: 2px solid #ececec;
}

.reject-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-top {
  padding: 80px 22px 52px;
  text-align: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
  border-bottom: 3px solid #ff6b35;
}

.top-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  margin-bottom: 16px;
  color: #ff6b35;
  letter-spacing: 4px;
  font-weight: 400;
}

.top-content p {
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto;
  color: #cfcfcf;
  line-height: 1.7;
}

.instructions-section {
  padding: 55px 22px;
  background: #2a2a2a;
}

.instructions-box {
  max-width: 860px;
  margin: 0 auto;
  background: #1c1c1c;
  padding: 35px;
  border-radius: 16px;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.instructions-box h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #ff6b35;
  font-weight: 700;
}

.instructions-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.instructions-items li {
  padding-left: 26px;
  position: relative;
  color: #b0b0b0;
  line-height: 1.7;
}

.instructions-items li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #ff6b35;
}

.gameplay-section {
  padding: 55px 0;
  background: #1c1c1c;
}

.full-width-game {
  max-width: 1350px;
  margin: 0 auto;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.game-screen {
  width: 100%;
  height: 820px;
  border: none;
  display: block;
}

.caution-section {
  padding: 55px 22px;
  background: #2a2a2a;
}

.caution-box {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(220, 53, 69, 0.1);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid rgba(220, 53, 69, 0.4);
  text-align: center;
}

.caution-box h3 {
  font-size: 24px;
  margin-bottom: 13px;
  color: #dc3545;
  font-weight: 700;
}

.caution-box p {
  color: #b0b0b0;
  line-height: 1.7;
}

.legal-top {
  padding: 88px 22px 55px;
  text-align: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
  border-bottom: 3px solid #ff6b35;
}

.legal-top-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  margin-bottom: 13px;
  color: #ff6b35;
  letter-spacing: 4px;
  font-weight: 400;
}

.date-text {
  font-size: 14px;
  color: #b0b0b0;
}

.legal-content {
  padding: 70px 22px;
  background: #1c1c1c;
}

.legal-block {
  max-width: 960px;
  margin: 0 auto 30px;
  background: #2a2a2a;
  padding: 35px;
  border-radius: 16px;
  border-left: 5px solid #ff6b35;
}

.legal-block h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #ff6b35;
  font-weight: 700;
  text-align: left;
}

.legal-block p {
  margin-bottom: 14px;
  color: #b0b0b0;
  line-height: 1.8;
}

.legal-block ul {
  margin-left: 26px;
  margin-bottom: 14px;
  color: #b0b0b0;
}

.legal-block li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-block strong {
  color: #ececec;
}

.legal-block a {
  color: #ff6b35;
  text-decoration: none;
  border-bottom: 1px solid #ff6b35;
}

.legal-block a:hover {
  color: #ff8055;
  border-bottom-color: #ff8055;
}

.legal-block.urgent {
  border-left-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

.legal-block.final {
  border: 3px solid #ff6b35;
  text-align: center;
  background: rgba(255, 107, 53, 0.05);
}

@media (max-width: 768px) {
  .hero-content h1,
  .top-content h1,
  .legal-top-content h1 {
    font-size: 38px;
  }

  .hero-content p,
  .top-content p {
    font-size: 15px;
  }

  .game-window {
    height: 520px;
  }

  .game-screen {
    height: 620px;
  }

  .benefits-grid,
  .alerts-grid,
  .perks-layout {
    grid-template-columns: 1fr;
  }

  .verify-box {
    padding: 30px;
    margin: 16px;
  }

  .verify-buttons {
    flex-direction: column;
  }

  .legal-block {
    padding: 26px 20px;
  }
}
