/* ==========================================================================
   KSMC HOME LANDING PAGE — style.css
   Redesigned to follow the exact Discord style & premium theme
   ========================================================================== */

/* --- Reset & Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Discord Official Palette (Transitioned to premium Purple) */
  --discord-blurple: #7c3aed;
  --discord-blurple-hover: #6d28d9;
  --discord-deep-blurple: #6d28d9;
  --discord-deep-blurple-hover: #4c1d95;
  --discord-dark: #23272a;
  --discord-black: #111214;
  --discord-chat-bg: #313338;
  --discord-sidebar: #2b2d31;
  --discord-input: #1e1f22;
  --discord-green: #248046;
  --discord-green-hover: #1a6535;
  --discord-white: #ffffff;
  --discord-offwhite: #f6f6f6;
  --discord-gray: #4e5058;
  
  /* Text */
  --text-normal: #dbdee1;
  --text-muted: #949ba4;
  --text-light: #ffffff;
  --text-dark: #2e3035;

  /* Font Families */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-pill: 40px;
  --radius-card: 12px;
  --radius-mockup: 12px;
  --container-width: 1180px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.discord-theme-body {
  font-family: var(--font-sans);
  background-color: var(--discord-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. HEADER OFICIAL STYLE
   ========================================================================== */
.discord-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
}

.header-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discord-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--discord-white);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.discord-logo-white {
  fill: currentColor;
  transition: transform 0.2s ease;
}

.discord-logo-row:hover .discord-logo-white {
  transform: rotate(-5deg) scale(1.05);
}

.discord-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.discord-nav a {
  color: var(--discord-white);
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s ease;
  position: relative;
  opacity: 0.9;
}

.discord-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.discord-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--discord-white);
  border-radius: 2px;
}

.discord-btn-white-pill {
  background-color: var(--discord-white);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.discord-btn-white-pill:hover {
  color: var(--discord-blurple);
  background-color: var(--discord-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--discord-white);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.mobile-toggle-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile navigation dropdown */
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--discord-dark);
  padding: 24px;
  border-bottom: 2px solid var(--discord-black);
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-nav-menu.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-menu a {
  color: var(--text-normal);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 4px;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #fff;
  background-color: rgba(255,255,255,0.05);
}

.btn-mobile-login {
  background-color: var(--discord-blurple);
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-pill) !important;
  margin-top: 10px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.discord-hero {
  background-color: var(--discord-deep-blurple);
  position: relative;
  padding: 150px 0 130px;
  overflow: hidden;
  z-index: 1;
}

.hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.hero-left {
  max-width: 820px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-bg-glows {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  background: radial-gradient(circle, #fff, transparent 70%);
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle, var(--discord-blurple), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--discord-white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #57f287;
  border-radius: 50%;
  box-shadow: 0 0 8px #57f287;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--discord-white);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--discord-white);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0.95;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--primary {
  background-color: var(--discord-white);
  color: var(--discord-black);
}

.btn--primary:hover {
  color: var(--discord-blurple);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: var(--discord-dark);
  color: var(--discord-white);
}

.btn--ghost:hover {
  background-color: var(--discord-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.hero-visual-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

.hero-wave-svg {
  width: 100%;
  height: 100%;
  fill: var(--discord-white);
}

/* ==========================================================================
   3. ISOMETRIC HUB VISUAL
   ========================================================================== */
.isometric-hub-visual {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hub-floating-card {
  position: absolute;
  background: rgba(20, 14, 40, 0.65);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 15px rgba(124, 58, 237, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 235px;
  transition: all 0.3s ease;
}

.hub-floating-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(124, 58, 237, 0.25);
  background: rgba(26, 18, 52, 0.75);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-desc {
  display: flex;
  flex-direction: column;
}

.card-desc span {
  font-size: 11px;
  color: var(--text-muted);
}

.card-desc strong {
  font-size: 13px;
  color: #fff;
}

.card-minecraft {
  top: 15%;
  left: 5%;
  border-left: 3px solid #22c55e;
  animation: float-minecraft 4.5s ease-in-out infinite;
}

.card-discord {
  bottom: 15%;
  left: 8%;
  border-left: 3px solid #7c3aed;
  animation: float-discord 5s ease-in-out infinite;
}

.card-vps {
  top: 40%;
  right: 5%;
  border-left: 3px solid #a78bfa;
  animation: float-vps 4s ease-in-out infinite;
}

@keyframes float-minecraft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-discord {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-vps {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================
   SVG ICON GLOBAL UTILITIES
   ========================================== */
.icon-svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.2s ease;
}

.icon-svg.mr-2 {
  margin-right: 8px;
}

.icon-svg.ml-2 {
  margin-left: 8px;
}

.btn:hover .icon-svg {
  transform: translateX(3px);
}

.icon-minecraft {
  color: #22c55e !important;
}

.icon-discord {
  color: #a78bfa !important;
}

.icon-vps {
  color: #c084fc !important;
}

.hub-isometric-plate {
  position: absolute;
  width: 320px;
  height: 320px;
  transform: rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
  opacity: 0.55;
}

.grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ==========================================================================
   4. UNIVERSES SECTION
   ========================================================================== */
.universes-section {
  padding: 100px 0;
  background-color: var(--discord-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--discord-black);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--discord-gray);
  line-height: 1.6;
}

.universes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.universe-card {
  background-color: var(--discord-white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.universe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.minecraft-theme-card:hover { border-color: rgba(34, 197, 94, 0.25); }
.discord-theme-card:hover { border-color: rgba(88, 101, 242, 0.25); }
.vps-theme-card:hover { border-color: rgba(167, 139, 250, 0.25); }

.universe-badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.universe-badge.minecraft {
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--discord-green);
}

.universe-badge.discord {
  background-color: rgba(88, 101, 242, 0.1);
  color: var(--discord-blurple);
}

.universe-badge.vps {
  background-color: rgba(167, 139, 250, 0.1);
  color: #8b5cf6;
}

.universe-visual {
  height: 110px;
  background-color: var(--discord-offwhite);
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
}

.pixel-creeper-art, .clyde-logo-art, .vps-rack-art {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: visual-float 4s ease-in-out infinite;
}

.pixel-creeper-art { color: var(--discord-green); }
.clyde-logo-art { color: var(--discord-blurple); }
.vps-rack-art { color: #8b5cf6; }

@keyframes visual-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.visual-grid-decoration {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1.5px, transparent 0);
  background-size: 12px 12px;
}

.visual-chat-decor {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
}

.decor-bubble {
  background: var(--discord-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 3px 8px;
  font-size: 10px;
  color: var(--discord-gray);
  align-self: flex-start;
}

.decor-bubble.reply {
  background: rgba(88, 101, 242, 0.05);
  color: var(--discord-blurple);
  align-self: flex-end;
}

.visual-terminal-lines {
  position: absolute;
  bottom: 8px;
  left: 12px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
}

.visual-terminal-lines .success {
  color: var(--discord-green);
}

.universe-content h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--discord-black);
  margin-bottom: 8px;
}

.universe-content p {
  font-size: 13.5px;
  color: var(--discord-gray);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 60px;
}

.universe-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}

.universe-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--discord-gray);
}

.bullet-emoji {
  font-size: 15px;
}

.universe-actions {
  margin-top: auto;
}

.btn-universe {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-minecraft {
  background-color: var(--discord-green);
  color: #fff;
}

.btn-minecraft:hover {
  background-color: var(--discord-green-hover);
}

.btn-discord {
  background-color: var(--discord-blurple);
  color: #fff;
}

.btn-discord:hover {
  background-color: var(--discord-blurple-hover);
}

.btn-vps {
  background-color: #8b5cf6;
  color: #fff;
}

.btn-vps:hover {
  background-color: #7c3aed;
}

/* ==========================================================================
   5. SPECS SECTION (TECHNICAL FEATURES)
   ========================================================================== */
.specs-section {
  padding: 100px 0;
  background-color: var(--discord-offwhite);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.spec-feature {
  background-color: var(--discord-white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.spec-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.spec-icon-box-svg {
  color: var(--discord-blurple);
  margin-bottom: 16px;
  display: inline-flex;
}

.spec-feature h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--discord-black);
  margin-bottom: 8px;
}

.spec-feature p {
  font-size: 13px;
  color: var(--discord-gray);
  line-height: 1.5;
}

/* ==========================================================================
   6. FAQ SECTION (ACCORDION STYLE)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--discord-white);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--discord-offwhite);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(88, 101, 242, 0.15);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--discord-black);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-icon-arrow {
  display: flex;
  transition: transform 0.25s ease;
  color: var(--discord-gray);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--discord-blurple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255,255,255,0.4);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--discord-gray);
  line-height: 1.6;
}

/* ==========================================================================
   7. WHATSAPP / SUPPORT BANNER
   ========================================================================== */
.support-banner-section {
  padding: 60px 0;
  background-color: var(--discord-white);
}

.support-banner {
  background-color: var(--discord-deep-blurple);
  border-radius: var(--radius-card);
  padding: 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(88, 101, 242, 0.15);
}

.support-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  top: -150px;
  right: -100px;
}

.support-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.support-banner-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.support-banner-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 30px;
}

.support-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--whatsapp {
  background-color: #248046;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--whatsapp:hover {
  background-color: #1a6535;
}

.btn--support-portal {
  background-color: var(--discord-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--support-portal:hover {
  background-color: var(--discord-black);
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.discord-footer {
  background-color: var(--discord-black);
  color: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1.5;
  max-width: 320px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links {
  flex: 2.5;
  display: flex;
  justify-content: flex-end;
  gap: 80px;
  flex-wrap: wrap;
}

.links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-group h4 {
  font-size: 14px;
  color: var(--discord-blurple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.links-group a {
  font-size: 13px;
  color: var(--text-normal);
  transition: color 0.2s ease;
}

.links-group a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  font-size: 12px;
  color: var(--text-muted);
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   9. ANIMATIONS & SCROLL REVEAL
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   10. RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .discord-nav {
    display: none;
  }
  
  .mobile-toggle-btn {
    display: flex;
  }

  .hero-split {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 580px;
  }
  
  .universes-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    justify-content: flex-start;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .discord-header {
    height: 68px;
  }
  .mobile-nav-menu {
    top: 68px;
  }
  .discord-hero {
    padding: 130px 0 80px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
