    body {
  font-family: 'Changa One', 'Changa One Fallback', Arial Black, sans-serif;
  color: white;
  text-align: center;
  margin: 0;
  padding: 50px 20px;
  background: url('background.webp?v=2') no-repeat center center fixed;
  background-size: cover;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}

@media (max-width: 600px) {
  body { padding: 20px 5px; font-size: 16px; }
  h1 { font-size: 2em; }
  h2 { font-size: 1.3em; }
}
@media (min-width: 601px) and (max-width: 1024px) {
  body { padding: 40px 15px; font-size: 18px; }
  h1 { font-size: 2.5em; }
  h2 { font-size: 1.5em; }
}
@media (min-width: 1025px) {
  body { padding: 50px 20px; font-size: 20px; }
  h1 { font-size: 3em; }
  h2 { font-size: 2em; }
}

a {
  text-decoration: underline;
  font-weight: bold;
  color: #fff;
}
a:visited { color: #ddd; }
a:hover, a:focus {
  color: #FFD700;
  outline: 2px solid #FFD700;
}

.rain {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.drop {
  position: absolute; width: 2px; height: 15px;
  background: rgba(255, 255, 255, 0.3);
  animation: fall 0.8s linear infinite;
}
@keyframes fall {
  0% { transform: translateY(-100px); }
  100% { transform: translateY(100vh); }
}

h1 {
  font-size: 48px; margin-bottom: 20px;
  text-shadow: -2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black, 2px 2px 0 black, 0 0 10px gold, 0 0 20px gold;
}

/* Hero split section */
.hero-split {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 25;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
}
.hero-side {
  display: flex;
  gap: 4vw;
  pointer-events: auto;
}

/* Server menu with dropdown */
.server-menu {
  position: relative;
}
.server-btn {
  display: block;
  padding: 22px 50px;
  font-size: 24px;
  font-family: 'Changa One', 'Changa One Fallback', Arial Black, sans-serif;
  border: 2px solid;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 2px 5px rgba(0,0,0,0.9);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.server-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}
.server-btn:hover::before {
  animation: shine 0.8s ease-in-out;
}
@keyframes shine {
  0% { left: -50%; opacity: 1; }
  100% { left: 150%; opacity: 0; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-2px) rotate(-0.5deg); }
  20% { transform: translateX(2px) rotate(0.5deg); }
  30% { transform: translateX(-2px) rotate(-0.5deg); }
  40% { transform: translateX(2px) rotate(0.5deg); }
  50% { transform: translateX(-1px); }
  60% { transform: translateX(1px); }
  70%, 100% { transform: translateX(0); }
}
.server-btn {
  animation: shake 4s ease-in-out infinite;
}
.server-btn:hover {
  animation: none;
}

/* GEMSTONERO - Purple Theme */
.server-btn-ro {
  background: linear-gradient(145deg, rgba(138,43,226,0.5), rgba(75,0,130,0.6));
  border-color: rgba(186,85,211,0.8);
  box-shadow: 0 0 2vw rgba(138,43,226,0.5), 0 0 4vw rgba(75,0,130,0.3), inset 0 0 1vw rgba(255,255,255,0.1);
}
.server-btn-ro:hover {
  transform: scale(1.15) translateY(-0.5vw);
  background: linear-gradient(145deg, rgba(138,43,226,0.7), rgba(75,0,130,0.8));
  box-shadow: 0 0.5vw 3vw rgba(138,43,226,0.8), 0 0 5vw rgba(186,85,211,0.6), inset 0 0 2vw rgba(255,255,255,0.2);
}

/* GEMSTONEWOW - Orange Theme */
.server-btn-wow {
  background: linear-gradient(145deg, rgba(255,140,0,0.5), rgba(200,80,0,0.6));
  border-color: rgba(255,180,50,0.8);
  box-shadow: 0 0 2vw rgba(255,140,0,0.5), 0 0 4vw rgba(255,100,0,0.3), inset 0 0 1vw rgba(255,255,255,0.1);
}
.server-btn-wow:hover {
  transform: scale(1.15) translateY(-0.5vw);
  background: linear-gradient(145deg, rgba(255,140,0,0.7), rgba(200,80,0,0.8));
  box-shadow: 0 0.5vw 3vw rgba(255,140,0,0.8), 0 0 5vw rgba(255,180,50,0.6), inset 0 0 2vw rgba(255,255,255,0.2);
}

/* Mini dropdown base */
.mini-box {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  width: 300px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 15px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.server-menu:hover:not(.clicked) .mini-box,
.server-menu.open .mini-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.5vw);
}
.server-menu.clicked:not(.open) .mini-box {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* GEMSTONERO Dropdown - Purple */
.server-menu:has(.server-btn-ro) .mini-box {
  background: linear-gradient(180deg, rgba(75,0,130,0.85), rgba(40,0,80,0.95));
  border: 0.15vw solid rgba(186,85,211,0.6);
  box-shadow: 0 0.5vw 2vw rgba(138,43,226,0.5), inset 0 0 2vw rgba(186,85,211,0.2);
  top: auto;
  bottom: 100%;
  margin-bottom: 10px;
}
.server-menu:has(.server-btn-ro):hover .mini-box,
.server-menu.open:has(.server-btn-ro) .mini-box {
  transform: translateX(-50%) translateY(-0.5vw);
}
.server-menu:has(.server-btn-ro) .mini-box h3 { color: #DDA0DD; text-shadow: 0 0 1vw rgba(186,85,211,0.8); }
.server-menu:has(.server-btn-ro) .mini-box .highlight { color: #EE82EE; }
.server-menu:has(.server-btn-ro) .mini-btn.join {
  background: linear-gradient(135deg, rgba(138,43,226,0.9), rgba(186,85,211,0.7));
  box-shadow: 0 0 1vw rgba(138,43,226,0.6);
}

/* GEMSTONEWOW Dropdown - Orange */
.server-menu:has(.server-btn-wow) .mini-box {
  background: linear-gradient(180deg, rgba(150,60,0,0.85), rgba(80,30,0,0.95));
  border: 0.15vw solid rgba(255,180,50,0.6);
  box-shadow: 0 0.5vw 2vw rgba(255,140,0,0.5), inset 0 0 2vw rgba(255,180,50,0.2);
  top: auto;
  bottom: 100%;
  margin-bottom: 10px;
}
.server-menu:has(.server-btn-wow):hover .mini-box,
.server-menu.open:has(.server-btn-wow) .mini-box {
  transform: translateX(-50%) translateY(-0.5vw);
}
.server-menu:has(.server-btn-wow) .mini-box h3 { color: #FFD700; text-shadow: 0 0 1vw rgba(255,180,50,0.8); }
.server-menu:has(.server-btn-wow) .mini-box .highlight { color: #FFA500; }
.server-menu:has(.server-btn-wow) .mini-btn.join {
  background: linear-gradient(135deg, rgba(255,140,0,0.9), rgba(255,180,50,0.7));
  box-shadow: 0 0 1vw rgba(255,140,0,0.6);
}

.mini-box h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  text-align: center;
}
.mini-box p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
.mini-box .features {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}
.mini-box .mini-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.mini-box .mini-btn {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.4);
}
.mini-btn.discord {
  background: linear-gradient(135deg, rgba(88,101,242,0.9), rgba(114,137,218,0.7));
  box-shadow: 0 0 0.8vw rgba(88,101,242,0.5);
}
.mini-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Top description section */
.top-description {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  max-width: 800px;
  width: 90%;
}
.desc-box {
  background: linear-gradient(145deg, rgba(40, 20, 60, 0.6), rgba(20, 10, 40, 0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(138,43,226,0.8), rgba(255,140,0,0.8)) 1;
  border-radius: 15px;
  padding: 18px 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 
    0 0 20px rgba(138, 43, 226, 0.6),
    0 0 40px rgba(255, 140, 0, 0.5),
    inset 0 0 30px rgba(138, 43, 226, 0.1);
  animation: descGlow 2s ease-in-out infinite;
}
@keyframes descGlow {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(138, 43, 226, 0.6),
      0 0 40px rgba(255, 140, 0, 0.4),
      inset 0 0 30px rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.8);
  }
  50% { 
    box-shadow: 
      0 0 25px rgba(255, 140, 0, 0.7),
      0 0 50px rgba(138, 43, 226, 0.4),
      inset 0 0 35px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.8);
  }
}
.desc-box:hover {
  transform: scale(1.03);
  box-shadow: 
    0 0 40px rgba(138, 43, 226, 0.8),
    0 0 70px rgba(255, 140, 0, 0.6),
    inset 0 0 40px rgba(255, 255, 255, 0.1);
}
.desc-short {
  font-size: 18px;
  margin: 0;
  color: #4ade80;
  text-shadow: 0 0 15px rgba(74, 222, 128, 0.6);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%, 100% { text-shadow: 0 0 10px rgba(74, 222, 128, 0.4); }
  50% { text-shadow: 0 0 25px rgba(74, 222, 128, 0.8), 0 0 40px rgba(74, 222, 128, 0.3); }
}
.desc-box.open .desc-short {
  color: #f87171;
  text-shadow: 0 0 15px rgba(248, 113, 113, 0.6);
  animation: pulseRed 1.5s ease-in-out infinite;
}
@keyframes pulseRed {
  0%, 100% { text-shadow: 0 0 10px rgba(248, 113, 113, 0.4); }
  50% { text-shadow: 0 0 25px rgba(248, 113, 113, 0.8), 0 0 40px rgba(248, 113, 113, 0.3); }
}
.desc-long {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}
.desc-box.open .desc-long {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

@media (max-width: 900px) {
  .rain {
    display: none;
  }
  .top-description {
    top: 10px;
    max-width: 90%;
  }
  .desc-short {
    font-size: 13px;
  }
  .desc-long {
    font-size: 12px;
  }
  .desc-box {
    padding: 12px 18px;
  }
  .hero-split {
    flex-direction: column;
    gap: 15px;
    padding-top: 80px;
  }
  .hero-side {
    flex-direction: column;
    gap: 15px;
  }
  .server-btn {
    padding: 16px 32px;
    font-size: 18px;
  }
  .mini-box {
    width: 240px;
    padding: 12px;
  }
  .mini-box h3 { font-size: 14px; }
  .mini-box p, .mini-box .features { font-size: 12px; }
  .mini-btn { font-size: 12px; padding: 8px 16px; }
  .bottom-disclaimer {
    font-size: 12px;
    bottom: 10px;
  }
}

@media (max-width: 600px) {
  body {
    background: url('phone.webp?v=2') no-repeat center center fixed;
    background-size: cover;
  }
  .top-description {
    top: 5px;
  }
  .desc-short {
    font-size: 12px;
  }
  .desc-box {
    padding: 10px 14px;
  }
  .hero-split {
    padding-top: 100px;
    gap: 10px;
  }
  .hero-side {
    gap: 10px;
  }
  .server-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  .mini-box {
    width: 200px;
    padding: 10px;
  }
  .mini-box h3 { font-size: 12px; }
  .mini-box p, .mini-box .features { font-size: 12px; }
  .mini-btn { font-size: 12px; padding: 6px 12px; }
  .bottom-disclaimer {
    display: none;
  }
}

/* Bottom disclaimer */
.bottom-disclaimer {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  background: rgba(0,0,0,0.85);
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-sizing: border-box;
}
.bottom-disclaimer a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: 500;
}
.bottom-disclaimer a:hover {
  color: #FFF000;
}
.desc-h1 {
  font-size: 18px;
  margin: 0 0 4px 0;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
/* SEO About panel */
.seo-details {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 21;
  box-sizing: border-box;
  pointer-events: none;
}
.seo-details summary,
.seo-details .seo-content {
  pointer-events: auto;
}
.seo-content {
  background: linear-gradient(180deg, transparent 0%, rgba(5,0,15,0.99) 10%);
  padding: 40px 20px 20px;
  max-height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.seo-content-inner {
  max-width: 900px;
  margin: 0 auto;
  text-shadow: none;
}
.seo-title {
  text-align: center;
  color: #DDA0DD;
  font-size: 16px;
  margin: 0 0 16px 0;
  text-shadow: 0 0 12px rgba(186,85,211,0.4);
  letter-spacing: 1px;
}
.seo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.seo-card {
  background: linear-gradient(145deg, rgba(138,43,226,0.18), rgba(20,5,40,0.85));
  border: 1px solid rgba(138,43,226,0.35);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.seo-card:hover {
  border-color: rgba(186,85,211,0.5);
  transform: translateY(-2px);
}
.seo-card h3 {
  color: #DDA0DD;
  font-size: 12px;
  margin: 0 0 6px 0;
  text-shadow: none;
}
.seo-card p {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
.seo-card strong {
  color: #fff;
}
.seo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.seo-feat {
  background: rgba(138,43,226,0.1);
  border: 1px solid rgba(138,43,226,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.seo-feat strong {
  display: block;
  color: #EE82EE;
  font-size: 12px;
  margin-bottom: 2px;
  text-shadow: none;
}
.seo-feat span {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.seo-footer-text {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.seo-footer-text a {
  color: rgba(255,215,0,0.85);
  text-decoration: none;
}
.seo-footer-text a:hover {
  color: #FFD700;
}

/* Hide default details marker */
.seo-details summary::-webkit-details-marker { display: none; }
.seo-details summary::marker { display: none; content: ""; }
.seo-details[open] .seo-toggle { margin-bottom: 0; }
/* When About is open, hide overlapping elements via body class */
body.seo-open .hero-split,
body.seo-open .top-description,
body.seo-open .bottom-disclaimer,
body.desc-open .hero-split,
body.desc-open .bottom-disclaimer {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.seo-toggle {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 30px;
  z-index: 21;
  list-style: none;
  background: linear-gradient(145deg, rgba(138,43,226,0.45), rgba(75,0,130,0.55));
  border: 1px solid rgba(186,85,211,0.6);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 30px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Changa One', 'Changa One Fallback', Arial Black, sans-serif;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: 1.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  box-shadow: 0 2px 10px rgba(138,43,226,0.3), inset 0 0 8px rgba(186,85,211,0.1);
}
.seo-toggle:hover {
  background: linear-gradient(145deg, rgba(138,43,226,0.65), rgba(75,0,130,0.75));
  color: #fff;
  box-shadow: 0 4px 20px rgba(138,43,226,0.5), inset 0 0 12px rgba(186,85,211,0.2);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .seo-cards { grid-template-columns: 1fr; }
  .seo-features { grid-template-columns: repeat(2, 1fr); }
  .seo-title { font-size: 14px; }
}

/* Fixed logo bottom-left */
.site-logo {
  position: fixed;
  bottom: 12px;
  left: 20px;
  z-index: 21;
  display: block;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  outline: none;
}
.site-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(138,43,226,0.6));
}
.site-logo:focus {
  outline: none;
}
.site-logo img {
  display: block;
  border: none;
}
body.seo-open .site-logo,
body.desc-open .site-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
  .site-logo { display: none; }
}
