* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.modal-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-yes, .btn-no {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-yes {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: white;
}

.btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-no {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-no:hover {
  background: rgba(148, 163, 184, 0.3);
}

header {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: white;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 5rem;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 1.5rem;
    width: 100%;
    font-size: 1.2rem;
  }
}

main {
  width: 100%;
}

.hero {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.feature-badge .icon {
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.content-wrapper {
  max-width: 100%;
  padding: 0 2rem;
}

.about {
  padding: 5rem 0;
  background: rgba(30, 41, 59, 0.3);
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: white;
}

.about p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.important-notices {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.notice-card {
  background: rgba(30, 41, 59, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.notice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.notice-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.notice-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.game-section {
  padding: 5rem 0;
  background: rgba(15, 23, 42, 0.5);
}

.game-section h2,
.important-notices h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.game-frame {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 12px;
  background: #000;
}

.responsible-gaming {
  padding: 5rem 0;
  background: rgba(30, 41, 59, 0.3);
  text-align: center;
}

.responsible-gaming h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.responsible-gaming p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.resource-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.resource-link:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.resource-link span:first-child {
  font-size: 1.5rem;
}

footer {
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand span {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links,
.footer-resources {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-resources a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-resources a:hover {
  color: #ec4899;
}

.footer-resources p {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-disclaimer p {
  margin-bottom: 0.5rem;
}

.play-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.play-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

.game-play-section {
  padding: 4rem 0;
}

.game-info {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.game-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.game-info > p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.game-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.game-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.game-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.game-feature p {
  color: #cbd5e1;
  line-height: 1.6;
}

.play-reminder {
  padding: 4rem 0;
  background: rgba(30, 41, 59, 0.3);
}

.reminder-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(99, 102, 241, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.reminder-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: white;
}

.reminder-box ul {
  list-style: none;
  padding: 0;
}

.reminder-box li {
  color: #cbd5e1;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.reminder-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
  font-size: 1.2rem;
}

.legal-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.legal-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  color: #94a3b8;
  font-size: 1rem;
}

.legal-content {
  padding: 4rem 0;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.3);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.legal-document h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-document ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.legal-document li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-document strong {
  color: white;
}

.legal-document a {
  color: #ec4899;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-document a:hover {
  color: #6366f1;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .about h2,
  .game-section h2,
  .important-notices h2,
  .responsible-gaming h2 {
    font-size: 2rem;
  }

  .game-frame {
    height: 500px;
  }

  .notice-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 2rem 1.5rem;
  }

  .play-hero h1,
  .legal-hero h1 {
    font-size: 2.2rem;
  }
}
