@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0b1020;
  --bg-soft: #111834;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #e9eefb;
  --muted: #aab3cf;
  --primary: #7c5cff;
  --primary-2: #3dd6ff;
  --accent: #ff75c3;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

body {
  background: radial-gradient(1200px 800px at 10% 0%, #121a3a 0%, var(--bg) 45%),
    radial-gradient(1000px 700px at 90% 10%, #0f1a34 0%, var(--bg) 50%), var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.navbar-brand {
  width: 50%;
}

#banner {
  padding: 8px 0;
  background-color: rgb(121, 2, 2);
}

#banner .img {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}

#banner .img img {
  width: 20%;
}

#banner .text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner .text p {
  margin: 0;
  color: #fff;
}

header {
  background: linear-gradient(180deg, rgba(10, 14, 32, 0.85) 0%, rgba(10, 14, 32, 0.35) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header .navbar-brand img {
  width: 40%;
}

header a.nav-link {
  color: var(--muted);
  transition: 0.2s ease;
  padding: 12px 10px;
}

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

header .btn-custom {
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
}

header .navbar-nav li {
  margin-left: 12px;
}

#hero {
  background-image: linear-gradient(180deg, rgba(8, 12, 28, 0.75) 0%, rgba(8, 12, 28, 0.4) 100%), url("../images/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#hero .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 180px 0 160px;
  background: radial-gradient(900px 550px at 30% 50%, rgba(124, 92, 255, 0.22) 0%, rgba(124, 92, 255, 0) 60%),
    linear-gradient(0deg, rgba(9, 14, 33, 0.55), rgba(9, 14, 33, 0.55));
}

#hero .wrap h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

#hero .wrap span {
  color: var(--muted);
  font-weight: 500;
}

#hero .wrap p {
  margin-top: 12px;
  color: #dfe6ff;
}

#hero .wrap .buttons {
  margin-top: 36px;
}

#hero .wrap .buttons a {
  padding: 14px 30px;
  text-decoration: none;
  color: #0e0f14;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

#hero .wrap .buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(124, 92, 255, 0.45);
  filter: brightness(1.05);
}

#hero .img img {
  width: 100%;
}

#about {
  padding: 72px 0;
}

#about .img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#about .item {
  background: var(--card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  height: 180px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

#about .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

#about .item h2 {
  color: var(--text);
}

#about .item p {
  color: var(--muted);
}

#game {
  padding: 72px 0;
}

#game .headline h1 {
  color: var(--text);
  text-align: center;
}

#game .headline p {
  color: var(--muted);
  text-align: center;
}

#game .item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

#game .item .img img {
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
}

#game .item .btn-play {
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-radius: 12px;
  margin-top: 16px;
  box-shadow: 0 10px 24px rgba(61, 214, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#game .item .btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(61, 214, 255, 0.35);
}

#why {
  padding: 72px 0;
}

#why .headline h1 {
  color: var(--text);
  text-align: center;
}

#why .headline p {
  color: var(--muted);
  text-align: center;
}

#why .item {
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  height: 100%;
}

#why .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

#why .item .img {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 260px;
  margin: auto;
}

#why .item .img img {
  width: 100%;
  object-fit: contain;
}

#why .item .desc {
  margin-top: 12px;
}

#why .item .desc h4 {
  text-align: center;
  color: var(--text);
}

#why .item .desc p {
  text-align: center;
  color: var(--muted);
}

#faq .headline h1,
#faq .headline p {
  text-align: center;
}

#disclaimer {
  background: linear-gradient(180deg, rgba(10, 14, 32, 0.9) 0%, rgba(10, 14, 32, 0.7) 100%);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#disclaimer .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#disclaimer .wrap .img {
  display: flex;
  justify-content: center;
}

#disclaimer .wrap .img img {
  width: 28%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

#disclaimer .wrap .headline h3 {
  color: #fff;
  text-align: center;
  font-weight: 700;
}

#disclaimer .wrap .headline p {
  color: var(--muted);
  text-align: center;
}

#disclaimer .wrap .logos {
  display: flex;
}

#disclaimer .wrap .logos a {
  margin: 0 24px;
}

#disclaimer .wrap .logos a img {
  width: 100%;
  height: 36px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

#disclaimer .wrap .logos a img:hover {
  opacity: 1;
}

footer {
  background: linear-gradient(180deg, rgba(9, 13, 30, 0.95) 0%, rgba(9, 13, 30, 0.8) 100%);
  padding-top: 32px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .wrap {
  display: flex;
  flex-direction: column;
}

footer .wrap .img a {
  display: flex;
}

footer .wrap .img a img {
  width: 50%;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5));
}

footer .wrap .img p {
  text-align: left;
}

footer .wrap p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  margin-top: 8px;
}

footer .wrap p span {
  color: var(--accent);
}

footer .list {
  margin-top: 12px;
}

footer .list ul {
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
}

footer .list ul li {
  display: inline-block;
  margin: 0 12px;
}

footer .list ul li a.nav-link {
  color: var(--muted);
  transition: 0.2s ease;
  font-size: 12px;
}

footer .list ul li a.nav-link:hover {
  color: var(--text);
}

footer .copy {
  color: var(--muted);
}

#privacy {
  padding: 24px 0;
}

#privacy h2 {
  color: var(--text);
}

#privacy h3,
#privacy h4,
#privacy p,
#privacy li {
  color: var(--muted);
}

#contact {
  padding: 64px 0;
}

#contact h1 {
  text-align: center;
  color: var(--text);
}

#contact p {
  text-align: center;
  color: var(--muted);
}

#contact .form {
  display: flex;
  justify-content: center;
}

#contact .form form {
  width: 100%;
  margin: auto;
}

#contact .form form .form-group {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

#contact .form form .form-group input {
  background: var(--card);
  color: var(--text);
  padding: 18px 20px;
  border: 1px solid var(--card-border);
  outline: none;
  width: 48%;
  border-radius: 12px;
}

#contact .form form .form-group textarea {
  background: var(--card);
  color: var(--text);
  padding: 18px 20px;
  border: 1px solid var(--card-border);
  outline: none;
  width: 100%;
  border-radius: 12px;
}

#contact .form form button {
  margin-top: 24px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  padding: 12px 28px;
  border: none;
  outline: none;
  font-size: 16px;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(61, 214, 255, 0.25);
}

@media (max-width: 600px) {
  header .navbar-brand img {
    width: 100%;
  }

  #about .item {
    background: var(--card);
    padding: 24px;
    height: 220px;
    margin-top: 12px;
  }

  #disclaimer .wrap .logos a {
    margin: 0 8px;
  }

  #disclaimer .wrap .logos a img {
    height: 25px;
  }

  footer .wrap .list ul li {
    text-align: center;
  }

  footer .wrap .img a img {
    width: 70%;
  }

  footer .wrap .img a {
    justify-content: center;
  }

  footer .wrap .img p {
    text-align: center;
  }

  #contact .form form {
    width: 100%;
  }

  footer .copy {
    text-align: center;
  }

  footer .list ul {
    align-items: center;
  }

  .navbar-toggler {
    background-color: var(--bg-soft);
  }
}

/*# sourceMappingURL=style.css.map */