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

:root {
  --primary-color: #1a73e8;
  --secondary-color: #0d47a1;
  --accent-color: #ff6b35;
  --dark-bg: #0a1929;
  --darker-bg: #050d18;
  --light-bg: #132f4c;
  --text-light: #ffffff;
  --text-gray: #b0bec5;
  --border-color: #1e3a5f;
  --success-color: #4caf50;
  --card-bg: #0f1f33;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--darker-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Age Gateway */
.age-gateway {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-gateway-content {
  text-align: center;
  padding: 48px;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

.age-gateway-logo {
  font-size: 72px;
  margin-bottom: 24px;
}

.age-gateway-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  color: var(--text-light);
}

.age-gateway-content p {
  color: var(--text-gray);
  margin-bottom: 32px;
  font-size: 16px;
}

.age-gateway-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.age-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-btn-yes {
  background-color: var(--success-color);
  color: white;
}

.age-btn-yes:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.age-btn-no {
  background-color: transparent;
  color: var(--text-gray);
  border: 2px solid var(--border-color);
}

.age-btn-no:hover {
  border-color: var(--text-gray);
  color: var(--text-light);
}

/* Navigation */
.navbar {
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand-icon {
  font-size: 32px;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text-light);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link:hover::after {
  width: 80%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  overflow: hidden;
  border-bottom: 4px solid var(--accent-color);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--dark-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* About Section */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Features Section */
.features-section {
  background: var(--darker-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
}

.feature-icon {
  margin-bottom: 24px;
  position: relative;
}

.feature-icon img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.3));
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Why Section */
.why-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 40px;
  text-align: center;
}

.play-ground-area {
  margin-top: 48px;
}

.play-game {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.play-game iframe {
  display: block;
  width: 100%;
  min-height: 600px;
}

/* About Us Section */
.about-us-section {
  background: var(--dark-bg);
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-us-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-us-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.about-us-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  display: flex;
  justify-content: center;
}


.about-us-image img {
  width: 60%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-us-image:hover img {
  transform: scale(1.05);
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--darker-bg);
}

.disclaimer-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 48px;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--accent-color);
  text-transform: uppercase;
}

.disclaimer-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Developer & License Section */
.dev-license-section {
  background: var(--dark-bg);
}

.dev-license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dev-card,
.license-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  transition: all 0.3s ease;
}

.dev-card:hover,
.license-card:hover {
  border-color: var(--primary-color);
}

.dev-card h2,
.license-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.dev-card p,
.license-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 2px solid var(--border-color);
  padding: 60px 0 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-group {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-main {
  margin-bottom: 40px;
}

.footer-main p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.support-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.support-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.support-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.copyright {
  text-decoration: none;
}

.copyright p {
  color: var(--text-gray);
  font-size: 13px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge {
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-badge img {
  height: 32px;
  width: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-bg);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    padding: 32px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 16px;
    width: 100%;
    display: block;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .hero-title {
    font-size: 64px;
  }

  .section-title {
    font-size: 40px;
  }

  .about-us-grid {
    grid-template-columns: 1fr;
  }

  .about-us-image {
    order: -1;
  }

  .dev-license-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 16px;
  }

  .disclaimer-card {
    padding: 32px 24px;
  }

  .age-gateway-content {
    padding: 32px 24px;
  }

  .age-gateway-content h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .age-gateway-buttons {
    flex-direction: column;
  }

  .age-btn {
    width: 100%;
  }
}

  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #ffffff;
}

.content-block p,
ul {
    color: rgba(183, 183, 183, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: rgba(0, 0, 0, 0);
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}