* {
  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;
}

/* Smallfooter */
.smallfooter {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.smallfooter-logo {
  height: 40px;
  filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}
.smallfooter-size {
  font-size: 26px;
}

/* Introduction */
.introduction {
  min-height: 100vh;
  background: url('background1rd.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.introduction-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.089);
}
.introduction-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding-top: 80px;
}
.introduction-image {
  width: 350px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px rgb(255, 255, 255));
}
.introduction-box {
  background: linear-gradient(180deg, #1c1c1c93, #11111177);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 35px rgba(110, 0, 105, 0.15);
}
.introduction-box span {
  color: rgb(252, 158, 255);
  font-weight: 600;
}
.introduction-box p {
  line-height: 1.7;
  margin-bottom: 25px;
}
.introduction-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.introduction-btn {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.introduction-play {
  background: rgb(255, 255, 255);
  color: #000;
}
.introduction-discord {
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.introduction-btn:hover {
  transform: scale(1.05);
}

/* Server About */
.server-about {
  padding: 80px 20px;
  text-align: center;
}
.server-about h2 {
  font-size: 36px;
}
.server-about h2 span {
  color: rgb(252, 158, 255);
  border-bottom: 3px solid rgb(252, 158, 255);
}
.server-subtitle {
  margin: 15px auto 40px;
  max-width: 600px;
  color: #aaa;
}
.server-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);
}
.server-about-text {
  flex: 1;
  text-align: left;
}
.server-about-text h3 {
  color: rgb(252, 158, 255);
  margin-bottom: 5px;
}
.server-about-text span {
  font-size: 13px;
  color: #888;
}
.server-about-text p {
  margin-top: 15px;
  line-height: 1.7;
  color: #d0d0d0;
}
.server-about-image {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.server-about-image img {
  width: 100%;
  border-radius: 18px;
}

/* How To Play */
.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: rgb(252, 158, 255);
  border-bottom: 3px solid rgb(252, 158, 255);
}
.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);
}
.how-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.how-header img {
  width: 36px;
}
.how-header h3 {
  font-size: 20px;
  color: rgb(252, 158, 255);
}
.how-card ol {
  padding-left: 18px;
}
.how-card li {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.how-card code {
  background: #0b0b0b;
  padding: 4px 6px;
  border-radius: 6px;
  color:rgb(252, 158, 255);
  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 {
  color: rgb(252, 158, 255);
  font-weight: 600;
}

/* Server Community */
.community-section {
  position: relative;
  padding: 120px 15px;
}
.community-bg {
  position: absolute;
  inset: 0;
  background: url("background1rd.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: rgb(252, 158, 255);
  border-bottom: 3px solid rgb(252, 158, 255);
}
.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 rgb(252, 158, 255);
}
.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: rgb(252, 158, 255);
}
.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;
  }
}
