* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0b0b;
  color: #e0e0e0;
}

html {  
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.nav-logo {
  height: 40px;
  filter: drop-shadow(0 0 10px orange);
}

.menu {
  font-size: 26px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: url('background_logo.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding-top: 80px;
}

.big-logo {
  width: 320px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px orange);
}

.hero-box {
  background: linear-gradient(180deg, #1c1c1c, #111);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 35px rgba(255,140,42,0.15);
}

.hero-box span {
  color: orange;
  font-weight: 600;
}

.hero-box p {
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.play {
  background: orange;
  color: #000;
}

.discord {
  border: 2px solid orange;
  color: orange;
}

.btn:hover {
  transform: scale(1.05);
}

/* ABOUT */
.about {
  padding: 80px 20px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
}

.about h2 span {
  color: orange;
  border-bottom: 3px solid orange;
}

.subtitle {
  margin: 15px auto 40px;
  max-width: 600px;
  color: #aaa;
}

.about-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  background: linear-gradient(180deg, #202020, #121212);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h3 {
  color: orange;
  margin-bottom: 5px;
}

.about-text span {
  font-size: 13px;
  color: #888;
}

.about-text p {
  margin-top: 15px;
  line-height: 1.7;
  color: #d0d0d0;
}

.about-image {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
}

/* ===== HOW TO PLAY FIX ===== */
.howtoplay-section {
  padding: 90px 15px;
  background: transparent;
  position: relative;
  z-index: 5;
}

.howtoplay-title {
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}

.howtoplay-title span {
  color: #ff8c2a;
}

.howtoplay-sub {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
}

.how-card {
  max-width: 800px;
  margin: 0 auto 30px;
  background: #121212;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* HEADER */
.how-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.how-header img {
  width: 36px;
}

.how-header h3 {
  font-size: 20px;
  color: #ff8c2a;
}

/* LIST */
.how-card ol {
  padding-left: 18px;
}

.how-card li {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* CODE */
.how-card code {
  background: #0b0b0b;
  padding: 4px 6px;
  border-radius: 6px;
  color: #ff8c2a;
  font-size: 13px;
}

.how-card pre {
  background: #0b0b0b;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  margin: 10px 0;
  overflow-x: auto;
}

/* LINK */
.link {
  color: #ff8c2a;
  font-weight: 600;
}

/* SERVER COMMUNITY */
.community-section {
  position: relative;
  padding: 120px 15px;
}

.community-bg {
  position: absolute;
  inset: 0;
  background: url("2nd_bg.png") center / cover no-repeat;
  filter: blur(6px);
  opacity: 0.25;
}

.community-content {
  position: relative;
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.community-title span {
  color: orange;
  border-bottom: 3px solid orange;
}

.community-desc {
  color: #aaa;
  margin: 15px 0 30px;
}

.community-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.tab {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.tab img {
  width: 18px;
}

.tab.active {
  outline: 2px solid orange;
}

.community-card {
  background: rgba(18,18,18,0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.community-card h3 {
  margin-bottom: 12px;
}

.community-card p {
  margin-bottom: 22px;
  line-height: 1.6;
}

.join-btn {
  margin-top: 10px;
}
.hidden {
  display: none;
}

.join-btn {
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  cursor: default;
}

.join-btn.discord { background:#5865f2; color:#fff; }
.join-btn.whatsapp { background:#22c55e; color:#fff; }
.join-btn.tiktok { background:#000; color:#fff; }

.site-footer {
  text-align: center;
  padding: 24px 16px;
  color: #b5b5b5;
  font-size: 14px;
}

.site-footer span {
  color: #ff8c2b; /* warna orange brand */
  font-weight: 600;
}

.site-footer .disclaimer {
  margin-top: 6px;
  font-size: 13px;
  color: #8f8f8f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
  }

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