
/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  color: #e6e6e6;
  background: #050505;
  display: flex;
  flex-direction: column;
}

a { 
  text-decoration: none;
  color: inherit;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid rgba(214,184,106,0.25);
  box-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  position: relative;
}

.logo-icon::before,
.logo-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #d6b86a, #f8e9a5);
  clip-path: polygon(
    0% 100%, 0% 55%, 6% 35%, 14% 65%, 22% 25%, 30% 60%,
    38% 10%, 46% 55%, 54% 15%, 62% 70%, 70% 35%, 78% 80%,
    88% 55%, 100% 75%, 100% 100%
  );
}

.logo-icon::after {
  filter: blur(5px);
  opacity: 0.4;
}

.logo-text-main {
  font-size: 19px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #f5e7b6;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9b8b55;
}

nav {
  display: flex;
  gap: 14px;
}

.nav-link {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  color: #dcdcdc;
  border: 1px solid transparent;
  transition: background 0.1s ease, border-color 0.1s ease;
}

.nav-link:hover {
  color: #f0d776;
  border-color: rgba(214,184,106,0.6);
  background: rgba(214,184,106,0.15);
}

main {
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 18px 40px 18px;
}

.rule-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  color: #f5e7b6;
}

.rule-sub {
  font-size: 12px;
  color: #9f9f9f;
  margin-bottom: 14px;
}

.rule-section {
  padding: 18px 20px;
  border: 1px solid rgba(214,184,106,0.25);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: 0 0 12px rgba(0,0,0,0.7);
}

.rule-category {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.rule-category:first-of-type {
  border-top: none;
  padding-top: 0;
}

.rule-category h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #f0d776;
}

.rule-category ul {
  list-style: none;
  padding-left: 0;
}

.rule-category li {
  font-size: 12px;
  margin-bottom: 6px;
  color: #d4d4d4;
  line-height: 1.45;
  position: relative;
  padding-left: 14px;
}

.rule-category li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #d6b86a;
  position: absolute;
  left: 2px;
  top: 7px;
}

.rule-category b {
  font-weight: 500;
  color: #f5e7b6;
}

.coming-soon-box {
  margin-top: 12px;
  padding: 12px;
  border: 1px dashed rgba(214,184,106,0.6);
  border-radius: 12px;
  background: #0c0c0c;
}

.coming-soon-title {
  font-size: 13px;
  color: #d6b86a;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: .14em;
}

.coming-soon-text {
  font-size: 12px;
  color: #a9a9a9;
  font-style: italic;
}

footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 10px 0 14px 0;
  font-size: 11px;
  color: #707070;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 850px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  nav.nav-menu {
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
  }
}

@media (max-width: 650px) {
  .logo-text-main {
    font-size: 17px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 500px) {
  .rule-section {
    padding: 15px;
  }

  .rule-title {
    font-size: 17px;
  }

  .home-text {
    font-size: 12px !important;
  }

  .nav-link {
    font-size: 12px;
    padding: 5px 10px;
  }

  .index-btn-area {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .discord-btn {
    text-align: center;
  }
}

.admin-hotspot {
  position: fixed;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  opacity: 0;           
  z-index: 9999;
  cursor: pointer;
}

.donate-btn {
  background: linear-gradient(45deg, #ffcc00, #ff9d00);
  color:#000 !important;
  font-weight:700;
  border-radius:6px;
  padding:10px 18px;
  transition:0.2s;
}

.donate-btn:hover {
  background: linear-gradient(45deg, #ffdd55, #ffb533);
  box-shadow:0 0 8px rgba(255,200,50,.7);
  transform:scale(1.05);
}
.kare-btn {
  background: #ffcc00;
  color: #000 !important;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(255, 220, 40, .8);
  transition: .25s;
}

.kare-btn:hover {
  background: #ffe066;
  box-shadow: 0 0 14px rgba(255, 220, 40, 1);
  transform: scale(1.04);
}



