@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #020d21;
  --bg-dark: #010817;
  --panel: rgba(5, 27, 63, 0.86);
  --panel-light: rgba(9, 46, 96, 0.8);
  --line: rgba(93, 201, 255, 0.28);
  --blue: #258fff;
  --cyan: #6bdcff;
  --purple: #7777ff;
  --green: #25d366;
  --text: #effaff;
  --muted: #accde0;
  --title-font: "Fredoka", sans-serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 20%, rgba(19, 126, 226, 0.13), transparent 25%),
    radial-gradient(circle at 90% 65%, rgba(90, 74, 255, 0.1), transparent 24%),
    var(--bg);
}

h1,
h2,
h3,
.brand,
.btn,
.nav-links a,
.copy-btn,
.platform-btn,
.journey-btn {
  font-family: var(--title-font);
}

/* NAVBAR */
.navbar {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(790px, calc(100% - 32px));
  min-height: 51px;
  padding: 6px 10px 6px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(111, 201, 255, 0.22);
  border-radius: 14px;
  background: rgba(2, 16, 43, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.brand {
  display: none;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.brand span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #d8eeff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #fff;
  background: rgba(58, 154, 255, 0.28);
}

.nav-links .shop-btn {
  color: #fff;
  background: linear-gradient(135deg, #329eff, #075fc8);
  box-shadow: 0 3px 10px rgba(13, 114, 224, 0.35);
}

.menu-toggle {
  display: none;
  border: 0;
  color: #fff;
  font-size: 24px;
  background: transparent;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 114px 20px 90px;
  background:
    linear-gradient(to bottom, rgba(1, 10, 29, 0.18), rgba(2, 18, 46, 0.76), var(--bg)),
    url("../images/background.png") center top / cover fixed no-repeat;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 15% 17%, rgba(91, 197, 255, 0.19), transparent 24%),
    radial-gradient(circle at 84% 35%, rgba(76, 93, 255, 0.18), transparent 26%);
}

.hero::after {
  top: 170px;
  left: 50%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(48, 151, 255, 0.11), transparent 67%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(135, 218, 255, 0.05) 50%, transparent 50.2%),
    radial-gradient(circle at 50% 8%, rgba(74, 180, 255, 0.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-status {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(80, 223, 133, 0.36);
  border-radius: 999px;
  color: #bfffd6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  background: rgba(15, 119, 67, 0.17);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45ed87;
  box-shadow: 0 0 10px #45ed87;
  animation: statusPulse 1.7s ease-in-out infinite;
}

@keyframes statusPulse {
  50% {
    transform: scale(1.45);
    opacity: 0.45;
  }
}

.server-logo {
  display: block;
  width: min(390px, 86%);
  max-height: 245px;
  margin: 0 auto -2px;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.57));
  animation: logoFloat 3.4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-11px) rotate(1deg);
  }
}

.info-card {
  padding: 23px 31px;
  border: 1px solid rgba(104, 207, 255, 0.39);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(74, 177, 255, 0.15), transparent 38%),
    rgba(3, 23, 56, 0.81);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.43);
  backdrop-filter: blur(13px);
}

.info-card p {
  color: #eaf7ff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.info-card strong {
  color: var(--cyan);
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  min-width: 162px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.13);
}

.btn-primary {
  background: linear-gradient(135deg, #36a8ff, #0755b5);
  box-shadow: 0 5px 0 #04356f, 0 10px 20px rgba(15, 121, 232, 0.23);
}

.btn-outline {
  border-color: rgba(101, 205, 255, 0.72);
  color: #d6f3ff;
  background: rgba(8, 55, 113, 0.55);
}

.hero-mini-stats {
  width: min(530px, 100%);
  margin: 23px auto 0;
  padding: 13px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(103, 199, 255, 0.18);
  border-radius: 14px;
  background: rgba(2, 18, 47, 0.42);
}

.hero-mini-stats > div {
  padding: 0 12px;
  border-right: 1px solid rgba(119, 210, 255, 0.18);
}

.hero-mini-stats > div:last-child {
  border-right: 0;
}

.hero-mini-stats strong,
.hero-mini-stats span {
  display: block;
}

.hero-mini-stats strong {
  color: var(--cyan);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
}

.hero-mini-stats span {
  margin-top: 2px;
  color: #aacde0;
  font-size: 9px;
  font-weight: 700;
}

.scroll-text {
  margin-top: 23px;
  color: rgba(215, 241, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.scroll-arrow {
  display: inline-block;
  color: var(--cyan);
  font-family: var(--title-font);
  font-size: 35px;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  50% {
    transform: translateY(8px);
  }
}

/* GENERAL SECTIONS */
.play-section,
.features-section,
.community-section,
.server-about-section,
.moon-journey-section {
  position: relative;
  z-index: 1;
}

.play-section {
  padding: 68px 20px 85px;
}

.features-section {
  padding: 10px 20px 92px;
}

.community-section {
  padding: 10px 20px 95px;
}

.server-about-section {
  padding: 10px 20px 96px;
}

.moon-journey-section {
  padding: 0 20px 95px;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.section-heading h2 {
  margin-top: 7px;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(32px, 5vw, 45px);
  font-weight: 600;
  line-height: 1.12;
}

.section-heading p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* HOW TO PLAY */
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.play-card {
  position: relative;
  min-height: 430px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(48, 153, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(7, 35, 75, 0.94), rgba(2, 18, 47, 0.97));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.play-card:hover {
  transform: translateY(-7px);
  border-color: rgba(106, 210, 255, 0.7);
}

.featured-play-card {
  border-color: rgba(112, 210, 255, 0.64);
  box-shadow: 0 16px 36px rgba(14, 111, 220, 0.15);
}

.recommended-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 8px;
  border: 1px solid rgba(120, 221, 255, 0.38);
  border-radius: 99px;
  color: #a9edff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(20, 121, 212, 0.28);
}

.play-card-top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.play-number {
  color: rgba(110, 211, 255, 0.6);
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.play-device {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(111, 212, 255, 0.26);
  border-radius: 12px;
  font-size: 21px;
  background: rgba(22, 113, 198, 0.14);
}

.play-card h3 {
  margin-bottom: 1px;
  color: #f6fcff;
  font-size: 23px;
  font-weight: 600;
}

.play-subtitle {
  margin-bottom: 17px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(117, 207, 255, 0.18);
  color: #7ed6ff;
  font-size: 11px;
  font-weight: 700;
}

.play-card ol {
  padding-left: 18px;
  color: #c6e4f3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.play-card li {
  margin-bottom: 8px;
}

.play-card strong {
  color: #f2fbff;
  font-weight: 800;
}

.copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 14px;
  padding: 10px;
  border: 1px solid rgba(80, 191, 255, 0.22);
  border-radius: 9px;
  background: rgba(0, 9, 29, 0.72);
}

.copy-box-multi {
  align-items: flex-start;
}

.copy-box code {
  overflow-wrap: anywhere;
  color: #77d7ff;
  font-family: Consolas, monospace;
  font-size: 10px;
  line-height: 1.6;
}

.copy-btn {
  flex-shrink: 0;
  padding: 7px 10px;
  border: 1px solid #359fe7;
  border-radius: 7px;
  color: #e3f8ff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(24, 126, 215, 0.28);
  transition: 0.2s ease;
}

.copy-btn:hover {
  background: #168cff;
}

/* FEATURES */
.feature-slider {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.feature-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 225px;
  padding: 28px 25px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 148, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(6, 34, 73, 0.92), rgba(2, 18, 48, 0.95));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: var(--cyan);
}

.feature-icon {
  display: grid;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(97, 204, 255, 0.28);
  border-radius: 13px;
  font-size: 25px;
  background: rgba(35, 131, 216, 0.14);
}

.feature-tag {
  color: #81dcff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.feature-card h3 {
  margin: 5px 0 9px;
  color: #f1fbff;
  font-size: 19px;
  font-weight: 600;
}

.feature-card p {
  color: #c5e2f2;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}

/* MOON JOURNEY */
.journey-card {
  position: relative;
  width: min(1080px, 100%);
  min-height: 285px;
  margin: 0 auto;
  padding: 45px 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(108, 207, 255, 0.44);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 45%, rgba(70, 100, 255, 0.34), transparent 30%),
    radial-gradient(circle at 15% 10%, rgba(65, 188, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #082c61, #031837 72%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

.journey-content {
  position: relative;
  z-index: 1;
  max-width: 570px;
}

.journey-label {
  color: #7fdbff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.journey-content h2 {
  margin: 9px 0 13px;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.08;
}

.journey-content p {
  max-width: 460px;
  color: #c9e5f7;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.journey-btn {
  display: inline-flex;
  margin-top: 20px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #2d9eff, #1265cf);
  box-shadow: 0 5px 0 #084389;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.journey-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.journey-orbit {
  position: relative;
  width: 235px;
  height: 235px;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(133, 221, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-one {
  width: 160px;
  height: 160px;
  animation: rotateOrbit 12s linear infinite;
}

.orbit-ring-two {
  width: 220px;
  height: 100px;
  transform: translate(-50%, -50%) rotate(-28deg);
  border-color: rgba(121, 125, 255, 0.37);
  animation: rotateOrbitReverse 15s linear infinite;
}

.orbit-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 95px;
  height: 95px;
  place-items: center;
  border: 1px solid rgba(155, 225, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background: radial-gradient(circle, rgba(61, 160, 255, 0.28), rgba(9, 47, 103, 0.18));
  box-shadow: 0 0 36px rgba(77, 182, 255, 0.35);
}

.orbit-star {
  position: absolute;
  color: #a7edff;
  font-size: 20px;
  text-shadow: 0 0 12px #58caff;
  animation: starGlow 2s ease-in-out infinite;
}

.star-one {
  top: 13px;
  right: 30px;
}

.star-two {
  bottom: 18px;
  left: 20px;
  animation-delay: 0.7s;
}

.star-three {
  top: 55px;
  left: 3px;
  font-size: 13px;
  animation-delay: 1.2s;
}

@keyframes rotateOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateOrbitReverse {
  to {
    transform: translate(-50%, -50%) rotate(332deg);
  }
}

@keyframes starGlow {
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

/* COMMUNITY */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.community-platform-card {
  position: relative;
  padding: 33px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.community-platform-card::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  opacity: 0.25;
}

.discord-platform {
  background: linear-gradient(145deg, rgba(34, 43, 111, 0.9), rgba(10, 18, 57, 0.96));
  border-color: rgba(124, 137, 255, 0.43);
}

.discord-platform::after {
  background: #5965f2;
}

.whatsapp-platform {
  background: linear-gradient(145deg, rgba(8, 80, 58, 0.9), rgba(4, 31, 42, 0.96));
  border-color: rgba(63, 220, 132, 0.42);
}

.whatsapp-platform::after {
  background: #25d366;
}

.platform-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 19px;
  border-radius: 15px;
  color: #fff;
  font-size: 25px;
}

.discord-platform .platform-icon {
  border: 1px solid rgba(164, 171, 255, 0.42);
  background: rgba(88, 101, 242, 0.35);
}

.whatsapp-platform .platform-icon {
  border: 1px solid rgba(105, 255, 167, 0.42);
  background: rgba(37, 211, 102, 0.25);
}

.platform-label {
  position: relative;
  z-index: 1;
  color: #a9dcf7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.whatsapp-platform .platform-label {
  color: #9df4bd;
}

.community-platform-card h3 {
  position: relative;
  z-index: 1;
  margin: 7px 0 10px;
  color: #fff;
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 600;
}

.community-platform-card p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: #c4dff1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.platform-list {
  position: relative;
  z-index: 1;
  margin: 20px 0;
  list-style: none;
  color: #d8efff;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
}

.whatsapp-platform .platform-list {
  color: #d0ffe0;
}

.platform-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.platform-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.discord-platform-btn {
  background: linear-gradient(135deg, #6570ff, #414bd1);
  box-shadow: 0 5px 0 #2a3299;
}

.whatsapp-platform-btn {
  background: linear-gradient(135deg, #2ddb6a, #148c45);
  box-shadow: 0 5px 0 #0a6331;
}

/* ABOUT */
.server-about-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 28px;
  width: min(1020px, 100%);
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-bottom: 20px;
}

.about-image-frame {
  height: 355px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(94, 198, 255, 0.46);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 62, 119, 0.92), rgba(2, 18, 48, 0.96));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -10px;
  bottom: 0;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(104, 209, 255, 0.52);
  border-radius: 12px;
  background: rgba(3, 30, 70, 0.96);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.38);
}

.about-badge > span {
  font-size: 27px;
}

.about-badge strong,
.about-badge small {
  display: block;
}

.about-badge strong {
  color: var(--cyan);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
}

.about-badge small {
  margin-top: 2px;
  color: #b9dcec;
  font-size: 10px;
  font-weight: 800;
}

.about-story-card {
  padding: 38px;
  border: 1px solid rgba(87, 191, 255, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 130, 236, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(6, 34, 73, 0.92), rgba(2, 18, 47, 0.94));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.story-label {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.about-story-card h3 {
  max-width: 540px;
  margin: 9px 0 18px;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(25px, 3vw, 33px);
  font-weight: 600;
  line-height: 1.2;
}

.about-story-card > p {
  margin-bottom: 12px;
  color: #c8e5f4;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid rgba(117, 207, 255, 0.18);
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about-point > span {
  font-size: 19px;
}

.about-point strong,
.about-point small {
  display: block;
}

.about-point strong {
  color: #7bd7ff;
  font-size: 12px;
  font-weight: 800;
}

.about-point small {
  margin-top: 3px;
  color: #a9cfdf;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}

/* FOOTER */
.about-section {
  min-height: 210px;
  padding: 55px 20px 28px;
  text-align: center;
  border-top: 1px solid rgba(94, 196, 255, 0.13);
  background:
    linear-gradient(rgba(2, 13, 40, 0.88), rgba(1, 7, 24, 0.98)),
    url("../images/background.png") center / cover no-repeat;
}

.about-logo {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.45));
}

.copyright {
  color: #d9f2ff;
  font-size: 13px;
  font-weight: 600;
}

.copyright strong {
  color: var(--cyan);
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 600;
}

.disclaimer {
  margin-top: 8px;
  color: #ff8890;
  font-size: 12px;
  font-weight: 700;
}

.footer {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .play-grid,
  .feature-track,
  .community-grid {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
  }

  .play-card {
    min-height: auto;
  }

  .journey-card {
    padding: 40px;
  }

  .journey-orbit {
    width: 180px;
    height: 180px;
  }

  .orbit-ring-one {
    width: 130px;
    height: 130px;
  }

  .orbit-ring-two {
    width: 170px;
    height: 80px;
  }

  .orbit-moon {
    width: 78px;
    height: 78px;
    font-size: 39px;
  }

  .server-about-layout {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
  }

  .about-image-frame {
    height: 330px;
  }
}

@media (max-width: 700px) {
  .navbar {
    top: 14px;
    padding: 8px 14px;
  }

  .brand,
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(117, 202, 255, 0.2);
    border-radius: 14px;
    background: rgba(4, 20, 52, 0.97);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 15px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 91px 16px 70px;
    background-attachment: scroll;
  }

  .server-logo {
    width: min(310px, 88%);
  }

  .info-card {
    padding: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-mini-stats {
    margin-top: 18px;
  }

  .hero-mini-stats > div {
    padding: 0 5px;
  }

  .hero-mini-stats strong {
    font-size: 16px;
  }

  .hero-mini-stats span {
    font-size: 8px;
  }

  .play-section {
    padding: 50px 16px 65px;
  }

  .features-section,
  .community-section,
  .server-about-section {
    padding: 5px 16px 65px;
  }

  .moon-journey-section {
    padding: 0 16px 65px;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .play-card,
  .feature-card,
  .community-platform-card {
    padding: 22px;
  }

  .journey-card {
    min-height: auto;
    padding: 30px 24px;
    display: block;
  }

  .journey-orbit {
    width: 170px;
    height: 170px;
    margin: 28px auto 0;
  }

  .journey-btn {
    width: 100%;
    justify-content: center;
  }

  .community-platform-card h3 {
    font-size: 25px;
  }

  .about-story-card {
    padding: 26px 21px;
  }

  .about-image-frame {
    height: 270px;
  }

  .about-badge {
    right: 10px;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================
   FIX COMMUNITY UNTUK INDEX.PHP VERSI LAMA
   Tempel di PALING BAWAH style.css
========================================= */

.community-section {
  padding: 85px 20px 100px;
}

.community-card {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(86, 207, 255, 0.8),
    rgba(86, 94, 255, 0.45),
    rgba(39, 218, 137, 0.5)
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

.community-main {
  min-height: 355px;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 45px;
  align-items: center;
  border-radius: 23px;
  background:
    radial-gradient(circle at 15% 15%, rgba(56, 172, 255, 0.24), transparent 34%),
    radial-gradient(circle at 90% 84%, rgba(38, 211, 102, 0.12), transparent 30%),
    linear-gradient(135deg, #082c60, #03142f 72%);
}

.community-text {
  min-width: 0;
}

.community-label {
  display: inline-block;
  margin-bottom: 9px;
  color: #77dcff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.community-text h3 {
  margin: 0 0 13px;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.12;
}

.community-text > p {
  max-width: 590px;
  color: #c5e4f4;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.community-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 23px 0 17px;
}

.community-discord-btn,
.community-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 11px;
  color: #fff;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.community-discord-btn {
  background: linear-gradient(135deg, #6572ff, #414bd1);
  box-shadow: 0 5px 0 #2a3299;
}

.community-whatsapp-btn {
  background: linear-gradient(135deg, #2ddb6a, #138a44);
  box-shadow: 0 5px 0 #0a6331;
}

.community-discord-btn:hover,
.community-whatsapp-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.community-discord-btn span,
.community-whatsapp-btn span {
  font-size: 17px;
}

.community-note {
  color: #9ec5dc !important;
  font-size: 11px !important;
  line-height: 1.65 !important;
}

/* Kotak preview WhatsApp */
.discord-preview {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(92, 244, 145, 0.45);
  border-radius: 15px;
  background: #10241d;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.discord-preview-header {
  min-height: 56px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, #2ad56a, #128c45);
}

.discord-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.2);
}

.discord-preview-header strong {
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.discord-preview-header small {
  margin-left: auto;
  color: #effff4;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.online-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border-radius: 50%;
  background: #dcffe9;
  box-shadow: 0 0 7px #dcffe9;
}

.discord-preview-body {
  min-height: 192px;
  padding: 20px 17px;
  color: #dff8e8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  background:
    radial-gradient(circle at 100% 0%, rgba(40, 211, 104, 0.13), transparent 37%),
    #10241d;
}

.discord-preview-body p {
  margin-bottom: 3px;
}

.discord-channel {
  margin-bottom: 12px !important;
  color: #67f29c;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
}

.discord-muted {
  margin-top: 12px;
  color: #92b7a1;
  font-size: 10px;
}

/* Responsive Community */
@media (max-width: 900px) {
  .community-main {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  .discord-preview {
    width: min(360px, 100%);
  }
}

@media (max-width: 700px) {
  .community-section {
    padding: 60px 16px 70px;
  }

  .community-main {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .community-card {
    border-radius: 21px;
  }

  .community-text h3 {
    font-size: 29px;
  }

  .community-buttons {
    flex-direction: column;
  }

  .community-discord-btn,
  .community-whatsapp-btn {
    width: 100%;
  }

  .discord-preview {
    width: 100%;
  }

  .discord-preview-header small {
    font-size: 7px;
  }
}

/* =========================================
   NAVBAR BARU — TEMPEL PALING BAWAH
========================================= */

.navbar {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: calc(100% - 28px);
  min-height: 56px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(111, 201, 255, 0.3);
  border-radius: 16px;
  background: rgba(2, 16, 43, 0.92);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px rgba(170, 228, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 10px;
  color: #d9efff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(63, 159, 255, 0.2);
  transform: translateY(-1px);
}

.nav-links .active {
  color: #fff;
  background: linear-gradient(135deg, #2589dd, #174d91);
  box-shadow:
    inset 0 1px rgba(181, 232, 255, 0.24),
    0 4px 10px rgba(21, 116, 221, 0.2);
}

.nav-links .shop-btn {
  margin-left: 4px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(135deg, #35a8ff, #0761ce);
  box-shadow: 0 4px 12px rgba(10, 111, 229, 0.35);
}

.nav-links .shop-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #59b8ff, #1779e6);
}

/* Navbar HP */
@media (max-width: 700px) {
  .navbar {
    top: 12px;
    width: calc(100% - 28px);
    min-height: 53px;
    padding: 7px 14px;
    justify-content: space-between;
  }

  .brand,
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 9px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(117, 202, 255, 0.23);
    border-radius: 15px;
    background: rgba(3, 18, 48, 0.98);
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.34);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .nav-links .shop-btn {
    width: 100%;
    margin-left: 0;
    padding: 11px 13px;
    text-align: center;
  }
}

/* =========================================
   BACKGROUND MUSIC BUTTON
========================================= */

.music-toggle {
  position: fixed;
  z-index: 2000;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(107, 220, 255, 0.45);
  border-radius: 999px;
  color: #e9faff;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(3, 25, 59, 0.9);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.music-toggle:hover {
  transform: translateY(-3px);
  border-color: #6bdcff;
  background: rgba(10, 64, 130, 0.96);
}

.music-toggle.playing {
  border-color: rgba(75, 240, 150, 0.7);
  color: #c9ffe0;
  background: rgba(8, 103, 60, 0.92);
}

.music-icon {
  display: inline-block;
  font-size: 19px;
  line-height: 1;
}

.music-toggle.playing .music-icon {
  animation: musicPulse 0.9s ease-in-out infinite;
}

@keyframes musicPulse {
  50% {
    transform: scale(1.25) rotate(-8deg);
  }
}

@media (max-width: 700px) {
  .music-toggle {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .music-text {
    display: none;
  }

  .music-icon {
    font-size: 22px;
  }
}

/* =========================================
   HOW TO PLAY - DEVICE SELECTOR
========================================= */

.device-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(850px, 100%);
  margin: 0 auto 28px;
}

.device-choice {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(93, 201, 255, 0.28);
  border-radius: 15px;
  color: #d9f3ff;
  font-family: var(--body-font);
  cursor: pointer;
  background: linear-gradient(145deg, rgba(7, 35, 75, 0.94), rgba(2, 18, 47, 0.97));
  transition: 0.25s ease;
}

.device-choice:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 220, 255, 0.8);
  background: rgba(10, 64, 130, 0.92);
}

.device-choice.active {
  border-color: #6bdcff;
  background:
    radial-gradient(circle at top, rgba(61, 169, 255, 0.3), transparent 75%),
    linear-gradient(145deg, rgba(10, 70, 140, 0.96), rgba(3, 27, 70, 0.98));
  box-shadow: 0 10px 25px rgba(27, 141, 255, 0.2);
}

.device-choice > span {
  font-size: 29px;
}

.device-choice strong {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 600;
}

.device-choice small {
  color: #9ac8e1;
  font-size: 10px;
  font-weight: 700;
}

.tutorial-container {
  display: none;
  width: min(680px, 100%);
  margin: 0 auto;
  animation: tutorialShow 0.3s ease;
}

.tutorial-container.active {
  display: block;
}

@keyframes tutorialShow {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tutorial-card {
  padding: 32px;
  border: 1px solid rgba(95, 205, 255, 0.42);
  border-radius: 19px;
  background:
    radial-gradient(circle at top right, rgba(55, 159, 255, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(7, 35, 75, 0.96), rgba(2, 18, 47, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.tutorial-card-header {
  padding-bottom: 18px;
  margin-bottom: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(117, 207, 255, 0.2);
}

.tutorial-label {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.tutorial-card h3 {
  margin-top: 5px;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

.tutorial-step {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(107, 220, 255, 0.45);
  border-radius: 12px;
  color: var(--cyan);
  font-family: var(--title-font);
  font-size: 17px;
  background: rgba(28, 126, 215, 0.18);
}

.tutorial-card ol {
  padding-left: 19px;
  color: #c6e4f3;
  font-size: 13px;
  line-height: 1.9;
}

.tutorial-card li {
  margin-bottom: 7px;
}

.ios-notice {
  padding: 18px;
  display: flex;
  gap: 13px;
  border: 1px solid rgba(255, 204, 87, 0.4);
  border-radius: 13px;
  background: rgba(125, 90, 10, 0.18);
}

.ios-notice > span {
  font-size: 25px;
}

.ios-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #ffe39b;
  font-family: var(--title-font);
  font-size: 17px;
}

.ios-notice p {
  color: #f1dfb2;
  font-size: 12px;
  line-height: 1.7;
}

.ios-discord-link {
  display: block;
  margin-top: 20px;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #6572ff, #414bd1);
  box-shadow: 0 5px 0 #2a3299;
}

@media (max-width: 700px) {
  .device-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .device-choice {
    padding: 14px 9px;
  }

  .tutorial-card {
    padding: 22px 18px;
  }

  .tutorial-card h3 {
    font-size: 21px;
  }
}

/* =========================================
   HOW TO PLAY - CARD REDESIGN
========================================= */

.device-selector {
  width: min(900px, 100%);
  gap: 16px;
  margin-bottom: 34px;
}

.device-choice {
  position: relative;
  min-height: 132px;
  padding: 20px 14px 17px;
  overflow: hidden;
  justify-content: center;
  border: 1px solid rgba(96, 196, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -15%, rgba(51, 165, 255, 0.24), transparent 55%),
    linear-gradient(145deg, rgba(8, 44, 93, 0.94), rgba(2, 17, 47, 0.98));
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(190, 237, 255, 0.06);
}

.device-choice::before {
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, #7ae6ff, transparent);
  transition: 0.25s ease;
}

.device-choice::after {
  position: absolute;
  right: -50px;
  bottom: -55px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  background: #238fff;
  filter: blur(15px);
}

.device-choice:hover {
  transform: translateY(-7px);
  border-color: rgba(113, 218, 255, 0.65);
  box-shadow:
    0 17px 32px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(34, 153, 255, 0.13);
}

.device-choice:hover::before,
.device-choice.active::before {
  opacity: 1;
}

.device-choice.active {
  border-color: #73dfff;
  background:
    radial-gradient(circle at 50% -10%, rgba(58, 184, 255, 0.38), transparent 58%),
    linear-gradient(145deg, rgba(10, 71, 145, 0.98), rgba(3, 28, 73, 0.99));
  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(108, 222, 255, 0.13),
    0 0 30px rgba(32, 161, 255, 0.25);
}

.device-choice.active::after {
  opacity: 0.27;
}

.device-choice > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 4px;
  border: 1px solid rgba(126, 222, 255, 0.26);
  border-radius: 14px;
  font-size: 25px;
  background: rgba(5, 22, 54, 0.4);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.device-choice.active > span {
  border-color: rgba(124, 229, 255, 0.56);
  background: rgba(26, 150, 230, 0.22);
  box-shadow: 0 0 18px rgba(62, 185, 255, 0.22);
}

.device-choice strong,
.device-choice small {
  position: relative;
  z-index: 1;
}

.device-choice strong {
  color: #f3fcff;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.device-choice small {
  color: #91c9e5;
  font-size: 10px;
}

.device-choice.active small {
  color: #b8efff;
}

/* Tutorial card */
.tutorial-container {
  width: min(730px, 100%);
}

.tutorial-card {
  position: relative;
  padding: 34px 36px;
  overflow: hidden;
  border: 1px solid rgba(99, 207, 255, 0.35);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 157, 255, 0.24), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(50, 101, 255, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(7, 38, 82, 0.98), rgba(1, 15, 43, 0.99));
  box-shadow:
    0 23px 46px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(189, 236, 255, 0.07);
}

.tutorial-card::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(106, 212, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.tutorial-card-header {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  margin-bottom: 21px;
}

.tutorial-label {
  color: #6fdbff;
  font-size: 10px;
  letter-spacing: 2px;
}

.tutorial-card h3 {
  margin-top: 7px;
  font-size: 27px;
  letter-spacing: 0.2px;
}

.tutorial-step {
  width: 48px;
  height: 48px;
  border-color: rgba(113, 220, 255, 0.58);
  border-radius: 14px;
  color: #92eaff;
  background: linear-gradient(145deg, rgba(33, 153, 237, 0.26), rgba(5, 61, 134, 0.35));
  box-shadow:
    0 0 17px rgba(40, 167, 255, 0.16),
    inset 0 1px rgba(205, 245, 255, 0.14);
}

.tutorial-card ol,
.tutorial-card .copy-box {
  position: relative;
  z-index: 1;
}

.tutorial-card ol {
  color: #cfeafa;
  font-size: 13px;
  line-height: 2;
}

.tutorial-card li::marker {
  color: #6bdcff;
  font-weight: 800;
}

.tutorial-card .copy-box {
  padding: 12px 13px;
  border-color: rgba(86, 196, 255, 0.28);
  border-radius: 12px;
  background: rgba(0, 10, 31, 0.67);
  box-shadow: inset 0 1px rgba(189, 238, 255, 0.04);
}

.tutorial-card .copy-box code {
  color: #8ae5ff;
  font-size: 11px;
}

.tutorial-card .copy-btn {
  padding: 8px 13px;
  border-color: rgba(99, 207, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(135deg, #1f91df, #0b5aaf);
  box-shadow: 0 3px 0 #063976;
}

.tutorial-card .copy-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #46b4ff, #1473d4);
}

@media (max-width: 700px) {
  .device-selector {
    gap: 11px;
    margin-bottom: 24px;
  }

  .device-choice {
    min-height: 119px;
    padding: 15px 8px 12px;
    border-radius: 15px;
  }

  .device-choice > span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 22px;
  }

  .device-choice strong {
    font-size: 16px;
  }

  .device-choice small {
    font-size: 9px;
  }

  .tutorial-card {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .tutorial-card h3 {
    font-size: 22px;
  }

  .tutorial-step {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 15px;
  }
}

/* =========================================
   HOW TO PLAY - CLEAN REDESIGN
========================================= */

.device-selector {
  width: min(900px, 100%);
  gap: 12px;
  margin: 0 auto 30px;
}

.device-choice {
  position: relative;
  min-height: 104px;
  padding: 17px 14px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(120, 204, 255, 0.18);
  border-radius: 12px;
  background: rgba(3, 25, 61, 0.78);
  box-shadow: none;
}

.device-choice::before,
.device-choice::after {
  display: none;
}

.device-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 211, 255, 0.5);
  background: rgba(7, 43, 94, 0.92);
  box-shadow: none;
}

.device-choice.active {
  border-color: #58cfff;
  background: rgba(9, 69, 136, 0.88);
  box-shadow: inset 3px 0 0 #58cfff;
}

.device-choice > span {
  width: 42px;
  height: 42px;
  margin: 0;
  flex-shrink: 0;
  border: 0;
  border-radius: 10px;
  font-size: 23px;
  background: rgba(73, 176, 255, 0.13);
  box-shadow: none;
}

.device-choice.active > span {
  border: 0;
  background: rgba(92, 203, 255, 0.18);
  box-shadow: none;
}

.device-choice strong,
.device-choice small {
  display: block;
}

.device-choice strong {
  margin-top: 1px;
  color: #effaff;
  font-size: 17px;
  line-height: 1.2;
}

.device-choice small {
  margin-top: 5px;
  color: #8fb9d2;
  font-size: 10px;
}

/* Tutorial */
.tutorial-container {
  width: min(760px, 100%);
}

.tutorial-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(114, 205, 255, 0.26);
  border-radius: 15px;
  background: rgba(3, 24, 58, 0.93);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.tutorial-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border: 0;
  border-radius: 0;
  content: "";
  background: #4fcaff;
}

.tutorial-card-header {
  padding: 24px 28px 20px;
  margin: 0;
  border-bottom: 1px solid rgba(121, 204, 255, 0.14);
  background: rgba(8, 49, 105, 0.38);
}

.tutorial-label {
  color: #6bdcff;
  font-size: 9px;
  letter-spacing: 1.7px;
}

.tutorial-card h3 {
  margin-top: 6px;
  color: #f5fcff;
  font-size: 25px;
  line-height: 1.2;
}

.tutorial-step {
  width: auto;
  height: auto;
  padding: 6px 9px;
  border: 1px solid rgba(111, 218, 255, 0.35);
  border-radius: 7px;
  color: #8be4ff;
  font-size: 12px;
  background: transparent;
  box-shadow: none;
}

.tutorial-card ol {
  padding: 24px 30px 0 48px;
  color: #c9e2f1;
  font-size: 13px;
  line-height: 1.85;
}

.tutorial-card li {
  margin-bottom: 9px;
}

.tutorial-card li::marker {
  color: #6bdcff;
  font-weight: 800;
}

.tutorial-card .copy-box {
  margin: 2px 28px 10px;
  padding: 10px 11px;
  border: 1px solid rgba(104, 201, 255, 0.2);
  border-radius: 9px;
  background: rgba(0, 10, 29, 0.62);
  box-shadow: none;
}

.tutorial-card .copy-box code {
  color: #86dfff;
  font-size: 10px;
}

.tutorial-card .copy-btn {
  padding: 7px 11px;
  border: 1px solid rgba(90, 196, 255, 0.7);
  border-radius: 7px;
  color: #eafbff;
  font-size: 11px;
  background: #126fca;
  box-shadow: none;
}

.tutorial-card .copy-btn:hover {
  transform: none;
  background: #248ce9;
}

.tutorial-card ol:last-child {
  padding-bottom: 25px;
}

/* iOS */
.ios-notice {
  margin: 25px 28px;
}

.ios-discord-link {
  margin: 0 28px 28px;
}

@media (max-width: 700px) {
  .device-selector {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .device-choice {
    min-height: 74px;
    padding: 13px;
  }

  .device-choice > span {
    width: 40px;
    height: 40px;
  }

  .tutorial-card-header {
    padding: 20px 20px 17px;
  }

  .tutorial-card h3 {
    font-size: 21px;
  }

  .tutorial-card ol {
    padding: 20px 20px 0 39px;
    font-size: 12px;
  }

  .tutorial-card .copy-box {
    margin-right: 20px;
    margin-left: 20px;
  }

  .tutorial-card ol:last-child {
    padding-bottom: 21px;
  }
}

/* HOW TO PLAY - COMPACT SQUARE STYLE */

.device-selector {
  width: min(720px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.device-choice {
  min-height: 78px;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-align: center;
  border-radius: 9px;
}

.device-choice > span {
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  border: 0;
  border-radius: 0;
  font-size: 21px;
  background: transparent;
}

.device-choice.active > span {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.device-choice strong {
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
}

.device-choice small {
  margin: 2px 0 0;
  font-size: 8px;
  line-height: 1;
}

/* Tutorial hanya selebar isi, lebih pendek */
.tutorial-container {
  width: min(560px, 100%);
}

.tutorial-card {
  border-radius: 10px;
  box-shadow: none;
}

.tutorial-card::before {
  width: 3px;
}

.tutorial-card-header {
  padding: 14px 18px 12px;
}

.tutorial-label {
  font-size: 8px;
  letter-spacing: 1.3px;
}

.tutorial-card h3 {
  margin-top: 3px;
  font-size: 19px;
}

.tutorial-step {
  padding: 4px 7px;
  border-radius: 5px;
  font-size: 10px;
}

.tutorial-card ol {
  padding: 14px 18px 0 34px;
  font-size: 11px;
  line-height: 1.55;
}

.tutorial-card li {
  margin-bottom: 6px;
}

.tutorial-card .copy-box {
  min-height: 34px;
  margin: 0 18px 6px;
  padding: 7px 8px;
  border-radius: 6px;
}

.tutorial-card .copy-box code {
  font-size: 9px;
}

.tutorial-card .copy-btn {
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 9px;
}

.tutorial-card ol:last-child {
  padding-bottom: 15px;
}

@media (max-width: 700px) {
  .device-selector {
    grid-template-columns: repeat(2, 1fr);
    width: min(390px, 100%);
  }

  .device-choice {
    min-height: 72px;
  }

  .tutorial-container {
    width: 100%;
  }
}

/* HOW TO PLAY - MEDIUM COMPACT */

.device-selector {
  width: min(820px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.device-choice {
  min-height: 100px;
  padding: 14px 10px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  text-align: center;
  border-radius: 11px;
}

.device-choice > span {
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  border: 0;
  background: transparent;
  font-size: 25px;
}

.device-choice.active > span {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.device-choice strong {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.device-choice small {
  margin: 2px 0 0;
  font-size: 9px;
  line-height: 1.2;
}

/* Tutorial ukuran sedang */
.tutorial-container {
  width: min(650px, 100%);
}

.tutorial-card {
  border-radius: 13px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.tutorial-card::before {
  width: 3px;
}

.tutorial-card-header {
  padding: 20px 24px 17px;
}

.tutorial-label {
  font-size: 9px;
  letter-spacing: 1.5px;
}

.tutorial-card h3 {
  margin-top: 5px;
  font-size: 23px;
}

.tutorial-step {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 11px;
}

.tutorial-card ol {
  padding: 20px 24px 0 42px;
  font-size: 12px;
  line-height: 1.7;
}

.tutorial-card li {
  margin-bottom: 8px;
}

.tutorial-card .copy-box {
  min-height: 40px;
  margin: 1px 24px 9px;
  padding: 9px 10px;
  border-radius: 7px;
}

.tutorial-card .copy-box code {
  font-size: 10px;
}

.tutorial-card .copy-btn {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 10px;
}

.tutorial-card ol:last-child {
  padding-bottom: 20px;
}

@media (max-width: 700px) {
  .device-selector {
    grid-template-columns: repeat(2, 1fr);
    width: min(430px, 100%);
  }

  .device-choice {
    min-height: 90px;
  }

  .tutorial-container {
    width: 100%;
  }
}

/* JS EFFECTS */

.site-toast {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 9999;
  padding: 12px 16px;
  border: 1px solid rgba(115, 223, 255, 0.45);
  border-radius: 9px;
  color: #eafaff;
  font-size: 13px;
  background: rgba(3, 30, 67, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s ease;
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-toast.success {
  border-color: rgba(89, 226, 162, 0.55);
}

.site-toast.error {
  border-color: rgba(255, 101, 101, 0.65);
}

.copy-btn.copied {
  background: #168cff !important;
}

.copy-btn.failed {
  background: #d94343 !important;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

button,
.btn,
.community-discord-btn,
.community-whatsapp-btn {
  position: relative;
  overflow: hidden;
}

.button-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 0.6s ease-out forwards;
}

@keyframes buttonRipple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (max-width: 700px) {
  .site-toast {
    right: 14px;
    bottom: 16px;
    left: 14px;
    text-align: center;
  }
}

.coming-soon-content {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.coming-soon-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(61, 184, 255, 0.13);
  border: 1px solid rgba(91, 205, 255, 0.45);
  font-size: 22px;
}

.coming-soon-text strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}

.coming-soon-text p {
  margin: 0;
  color: #a9cde1;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .coming-soon-content {
    padding: 18px;
  }
}