* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at top, #1b1834 0%, #090913 70%);
  color: white;
  overflow-x: hidden;
}

/* ========== BACKGROUND ========== */

.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 90px 90px;
  background-position: 0 0, 45px 45px;
  opacity: 0.08;
  z-index: -10;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: -9;
  animation: blobMove 10s infinite alternate ease-in-out;
}

.blob1 {
  width: 350px;
  height: 350px;
  background: #8b5cf6;
  top: -120px;
  left: -80px;
}

.blob2 {
  width: 280px;
  height: 280px;
  background: #ec4899;
  right: -60px;
  top: 40%;
}

.blob3 {
  width: 240px;
  height: 240px;
  background: #3b82f6;
  bottom: -60px;
  left: 40%;
}

@keyframes blobMove {
  to {
    transform: translateY(35px) translateX(35px);
  }
}

/* ========== LAYOUT ========== */

.layout {
  width: min(1400px, calc(100% - 40px));
  margin: auto;
  padding: 35px 0;

  display: grid;
  grid-template-columns: 1fr 280px; /* sidebar RIGHT */
  gap: 35px;
}

/* ========== GLASS ========== */

.glass {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);

  position: relative;
  overflow: hidden;
}

/* shimmer ONLY on hover (no lag) */
.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.16),
    transparent
  );

  transform: skewX(-20deg);
  opacity: 0;
}

.shimmer:hover::before {
  opacity: 1;
  animation: shimmerMove 1.2s ease;
}

@keyframes shimmerMove {
  0% { left: -120%; }
  100% { left: 160%; }
}

/* ========== SIDEBAR ========== */

.sidebar {
  border-radius: 30px;
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 30px;
}

.head-box {
  width: 180px;
  height: 180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head-box img {
  width: 150px;
  image-rendering: pixelated;
}

.sidebar h1 {
  font-size: 3rem;
  margin-top: 10px;
  text-align: center;
}

.tagline {
  color: #d1d5db;
  line-height: 1.8;
  margin-top: 12px;
  text-align: center;
}

/* socials */
.social-links {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.social-links a {
  text-decoration: none;
  color: white;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 16px;

  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
}

.social-links a:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.1);
}

/* ========== MINI INFO ========== */

.mini-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-box {
  border-radius: 18px;
  padding: 16px;
}

.info-box span {
  display: block;
  opacity: 0.6;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

/* ========== MAIN CONTENT ========== */

.main-content {
  width: 100%;
}

/* intro */
.intro-section {
  margin-top: 10px;
}

.intro-section h2 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
}

.gradient-text {
  background: linear-gradient(135deg,#c084fc,#ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-description {
  margin-top: 20px;
  max-width: 700px;
  color: #d1d5db;
  line-height: 1.9;
}

/* about */
.about-section {
  margin-top: 50px;
}

.about-section h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* staff */
.staff-section {
  margin-top: 60px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 25px;
}

.staff-card {
  border-radius: 30px;
  padding: 28px;
  transition: 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-8px);
}

.large {
  min-height: 260px;
}

.wide {
  grid-column: span 2;
}

.card-top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.server-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;
  font-weight: 700;
}

.role {
  font-weight: 600;
}

.owner { color: #f9a8d4; }
.admin { color: #c084fc; }
.mod { color: #60a5fa; }
.dev { color: #34d399; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 750px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: span 1;
  }

  .intro-section h2 {
    font-size: 3rem;
  }
}

.server-icon {
  background: none;
  width: 55px;
  height: 55px;
  border-radius: 14px;
  object-fit: cover;
}

.staff-card {
  border-radius: 26px;
  padding: 18px;
  transition: 0.3s ease;
}

.staff-card p {
  font-size: 0.85rem;
  opacity: 0.75;
}

.card-top h4 {
  font-size: 1rem;
}

.copy-box {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.85rem;
}

.copy-box:hover {
  background: rgba(255,255,255,0.12);
}


.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.staff-card {
  transition: 0.3s ease;
}

/* subtle glow on hover */
.staff-card:hover {
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: -9;
  animation: floatBlob 12s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, -30px) scale(1.1);
  }
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 14px;

  background: rgba(20, 20, 30, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);

  color: white;
  font-size: 0.9rem;

  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: 0.25s ease;

  pointer-events: none;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* mobile positioning */
@media (max-width: 600px) {
  .toast {
    right: 50%;
    bottom: 15px;
    transform: translateX(50%) translateY(15px) scale(0.95);
  }

  .toast.show {
    transform: translateX(50%) translateY(0) scale(1);
  }
}
