* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #240000 0%, #5f0d0d 28%, #8b1e1e 48%, #5f1152 75%, #ffffff 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.bg-blur-1 {
  width: 420px;
  height: 420px;
  background: #ff2f54;
  top: -110px;
  left: -90px;
}

.bg-blur-2 {
  width: 420px;
  height: 420px;
  background: #8b5cf6;
  right: -110px;
  top: 120px;
}

.navbar {
  width: 100%;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-box,
.mobile-language {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-flag {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.language-select {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  outline: none;
  font-weight: 700;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.language-select option {
  color: black;
}

.nav-button {
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ff3c3c, #a855f7);
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.22);
  transition: 0.25s;
}

.nav-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 9;
}

.mobile-menu a {
  color: white;
  font-weight: 700;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 70px 70px 40px;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: 78px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6666 0%, #ffffff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  padding: 15px 24px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(90deg, #ff3838, #9333ea);
  color: white;
  box-shadow: 0 14px 35px rgba(147, 51, 234, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px) scale(1.02);
}

.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 140px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  margin-top: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-right {
  display: flex;
  justify-content: center;
}

.preview-card {
  width: 100%;
  max-width: 470px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: floatCard 4s ease-in-out infinite;
}

.preview-top {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red {
  background: #ff4d4d;
}

.yellow {
  background: #ffd166;
}

.purple {
  background: #a855f7;
}

.preview-content {
  padding: 28px;
}

.preview-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #ffd7d7;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.preview-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.preview-content p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 24px;
}

.preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preview-links a {
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 80, 80, 0.22), rgba(168, 85, 247, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  transition: 0.25s;
}

.preview-links a:hover {
  transform: translateY(-2px);
}

.section {
  padding: 30px 70px 80px;
}

.section-title-wrap {
  margin-bottom: 28px;
}

.section-mini {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.section h2 {
  font-size: 42px;
  line-height: 1.1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: 0.25s;
}

.info-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.info-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.social-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.social-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: 0.25s;
}

.social-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.social-name {
  display: block;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.social-url {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  word-break: break-word;
}

.discord-card:hover {
  box-shadow: 0 18px 35px rgba(88, 101, 242, 0.18);
}

.youtube-card:hover {
  box-shadow: 0 18px 35px rgba(255, 0, 0, 0.18);
}

.twitch-card:hover {
  box-shadow: 0 18px 35px rgba(145, 70, 255, 0.18);
}

.join-section {
  padding-top: 10px;
  padding-bottom: 120px;
}

.join-box {
  text-align: center;
  padding: 50px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.join-box h2 {
  font-size: 46px;
  margin-bottom: 16px;
}

.join-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 18px;
}

.join-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.credit-fixed {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 30;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.footer {
  padding: 26px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 28px 30px;
  }

  .section {
    padding: 30px 28px 70px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .cards,
  .social-list {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 20px 18px;
  }

  .nav-links,
  .nav-button,
  .language-box {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section h2,
  .join-box h2 {
    font-size: 34px;
  }

  .preview-content h2 {
    font-size: 28px;
  }

  .credit-fixed {
    right: 14px;
    bottom: 14px;
    font-size: 13px;
    padding: 8px 12px;
  }
}