/* ================================================
   MINEOUS — Tebex Custom Theme CSS
   Paste into: generic.css in the template editor
   ================================================ */

/* ── Variables ── */
:root {
  --brand-300: #d8b4fe;
  --brand-400: #c084fc;
  --brand-500: #a855f7;
  --brand-600: #9333ea;
  --brand-700: #7e22ce;
  --brand-800: #6b21a8;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--slate-950) !important;
  color: var(--slate-200) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.site, main, .site-content, .site-main {
  background-color: var(--slate-950) !important;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Animations ── */
@keyframes logo-bounce {
  0%   { transform: translateY(0); }
  28%  { transform: translateY(-6px); }
  55%  { transform: translateY(-2px); }
  75%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes purple-pulse {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
@keyframes bar-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================================
   HEADER
   ================================================ */
.site-header, #header {
  background: rgba(2, 6, 23, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: none !important;
  box-shadow: 0 1px 0 rgba(168,85,247,0.25), 0 4px 32px rgba(168,85,247,0.10) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
}
.mn-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mn-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none !important;
}
.mn-logo img {
  height: 38px;
  width: auto;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.mn-logo:hover img {
  animation: logo-bounce 0.45s ease forwards;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.75));
}
.mn-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c084fc, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Website button next to the logo */
.mn-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--brand-300) !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.mn-website-btn:hover {
  background: rgba(168, 85, 247, 0.24);
  border-color: var(--brand-500);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

/* Discord button next to the website button (left side) */
.mn-discord-btn-left {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #c7d2fe !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.mn-discord-btn-left:hover {
  background: rgba(88, 101, 242, 0.28);
  border-color: #5865f2;
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.35);
  color: #fff !important;
}
.mn-discord-btn-left svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .mn-website-btn,
  .mn-discord-btn-left { display: none; }
}

/* Nav links */
.mn-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.mn-nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300) !important;
  transition: color 0.15s, background 0.15s;
}
.mn-nav-links a:hover, .mn-nav-links a.active {
  color: var(--brand-300) !important;
  background: rgba(168, 85, 247, 0.1);
}

/* Right actions */
.mn-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}
.mn-server-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  color: var(--slate-300);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.mn-server-btn:hover { border-color: var(--brand-500); color: var(--brand-300); }
.mn-server-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.mn-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  color: var(--slate-300) !important;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: border-color 0.15s, color 0.15s;
}
.mn-discord-btn:hover { border-color: #5865f2 !important; color: #818cf8 !important; }
.mn-basket-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem !important;
  border-radius: var(--radius) !important;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700)) !important;
  border: 1px solid var(--brand-500) !important;
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: box-shadow 0.15s, opacity 0.15s !important;
}
.mn-basket-btn:hover { opacity: 0.9 !important; box-shadow: 0 0 14px rgba(168,85,247,0.4) !important; }
.mn-user-group { display: flex; align-items: center; gap: 0.5rem; }
.mn-user-btn { display: inline-flex !important; align-items: center; gap: 0.45rem; padding: 0.4rem 0.85rem !important; border-radius: var(--radius) !important; font-size: 0.82rem !important; background: var(--slate-800) !important; border: 1px solid var(--slate-700) !important; color: var(--slate-200) !important; }
.mn-user-head {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  image-rendering: pixelated;
  flex-shrink: 0;
}
.mn-login-btn { font-size: 0.82rem !important; color: var(--slate-300) !important; text-decoration: none !important; }
.mn-login-btn:hover { color: var(--brand-300) !important; }
.mn-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 6px !important;
}
.mn-toggle span { display: block; width: 22px; height: 2px; background: var(--slate-300); border-radius: 1px; }
.mn-sale-banner {
  text-align: center;
  padding: 0.4rem 1rem;
  background: linear-gradient(90deg, var(--brand-800), var(--brand-700), var(--brand-800));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ================================================
   HERO
   ================================================ */
.mn-hero {
  position: relative;
  overflow: hidden;
  background: var(--slate-900);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.mn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(168,85,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 48px, rgba(168,85,247,0.04) 48px, rgba(168,85,247,0.04) 50px);
  pointer-events: none;
}
.mn-hero-inner { position: relative; z-index: 1; }
.mn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #c084fc;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
  animation: eyebrow-pulse 2.8s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { color: #9333ea; text-shadow: 0 0 6px rgba(168, 85, 247, 0.35); }
  50%      { color: #f3e8ff; text-shadow: 0 0 26px rgba(168, 85, 247, 0.95); }
}
.mn-eyebrow::before, .mn-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--brand-500);
  animation: bar-pulse 3s ease-in-out infinite;
}
.mn-hero-sub {
  font-size: 1rem;
  color: var(--slate-400);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.mn-ip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.05em;
}
.mn-ip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--slate-500); /* gray while checking */
  flex-shrink: 0;
}
.mn-ip-dot.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
  animation: pulse-dot 2s infinite;
}
.mn-ip-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.7);
}

/* ================================================
   CATEGORY TABS
   ================================================ */
.mn-category-bar {
  background: var(--slate-900);
  border-bottom: 1px solid rgba(168,85,247,0.1);
  padding: 0.75rem 0;
  position: sticky;
  top: 64px;
  z-index: 40;
}
.mn-category-tabs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.mn-category-tabs::-webkit-scrollbar { display: none; }
.mn-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--slate-400) !important;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.15s;
  text-decoration: none !important;
}
.mn-tab:hover, .mn-tab.active {
  color: var(--brand-300) !important;
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.35);
}

/* ================================================
   PACKAGE GRID
   ================================================ */
.mn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.mn-store-section { padding: 2.5rem 0 4rem; }
.mn-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mn-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-200);
  margin: 0;
}
/* Pulsing purple variant (e.g. "⛏ Prison Store") */
.mn-pulse-title {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: #c084fc;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
  animation: eyebrow-pulse 2.8s ease-in-out infinite;
}
.mn-section-bar {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(168,85,247,0.4), transparent);
  border-radius: 1px;
}
.mn-section-more {
  font-size: 0.8rem;
  color: var(--brand-400) !important;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
}
.mn-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* ── Breadcrumb + category page bits ── */
.mn-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}
.mn-breadcrumb a { color: var(--brand-400) !important; text-decoration: none !important; }
.mn-breadcrumb a:hover { color: var(--brand-300) !important; }
.mn-breadcrumb-sep { color: var(--slate-700); }
.mn-category-desc {
  color: var(--slate-300);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.mn-no-products {
  color: var(--slate-500);
  text-align: center;
  padding: 3rem 0;
}

/* ── Category tiles (home page) ── */
.mn-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.mn-cat-tile {
  background: var(--slate-900);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  text-decoration: none !important;
  color: var(--slate-200) !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.mn-cat-tile:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.15);
  transform: translateY(-3px);
}
.mn-cat-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.mn-cat-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mn-cat-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mn-cat-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-400);
}
.mn-package-card {
  background: var(--slate-900);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none !important;
  color: var(--slate-200) !important;
}
.mn-package-card:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 4px 24px rgba(168,85,247,0.15);
  transform: translateY(-2px);
}
.mn-sale-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}
.mn-package-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--slate-800);
}
.mn-package-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.mn-package-body {
  padding: 1rem 1rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mn-package-imglink { display: block; }
.mn-package-name {
  font-size: 0.975rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.mn-package-name a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
.mn-package-name a:hover { color: var(--brand-300) !important; }

.mn-package-footer {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--slate-800);
  margin-top: 0.75rem;
}

/* ================================================
   PACKAGE ACTIONS (price + add + gift + quantity)
   Tebex package-actions.twig — shared by cards & detail
   ================================================ */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* Price */
.product-actions .price {
  margin: 0;
  font-weight: 800;
  color: var(--brand-400);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-right: auto; /* push buttons to the right */
}
.product-actions .price .discount,
.product-actions .price del {
  color: var(--slate-600);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.8em;
}

/* Main CTA buttons: Add to Basket / Subscribe / Added */
.product-actions .add,
.product-actions .subscribe,
.product-actions .open-basket-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid var(--brand-500);
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.15s, box-shadow 0.15s;
}
.product-actions .add:hover,
.product-actions .subscribe:hover,
.product-actions .open-basket-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.4);
}

/* Gift button → small icon-only square */
.product-actions .gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius);
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: transparent;
  font-size: 0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.product-actions .gift::before {
  content: "🎁";
  font-size: 1.05rem;
  line-height: 1;
}
.product-actions .gift:hover {
  border-color: var(--brand-500);
  background: rgba(168, 85, 247, 0.28);
}

/* Quantity stepper */
.product-actions .quantity-field {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--slate-700);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-800);
}
.product-actions .quantity-field .adjust {
  background: transparent;
  border: none;
  color: var(--slate-300);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}
.product-actions .quantity-field .adjust:hover { color: var(--brand-300); }
.product-actions .quantity-field .open-basket {
  background: transparent;
  border: none;
  color: var(--slate-300);
  font-size: 0.75rem;
  white-space: nowrap;
  padding: 0.4rem 0.55rem;
  cursor: pointer;
}
.product-actions .quantity-field .open-basket:hover { color: var(--brand-300); }
.product-actions .quantity-field .quantity {
  width: 36px;
  text-align: center;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  box-shadow: none !important;
  padding: 0.3rem 0.35rem !important;
  margin: 0 0.15rem;
  -moz-appearance: textfield;
}
.product-actions .quantity-field .quantity::-webkit-outer-spin-button,
.product-actions .quantity-field .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* ================================================
   PACKAGE DETAIL PAGE
   ================================================ */
.mn-detail {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.mn-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.mn-detail-img,
.mn-detail-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-800);
  background: var(--slate-900);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 1.5rem;
}
.mn-detail-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.mn-detail-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.mn-detail-countdown {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  vertical-align: middle;
}
.mn-detail-desc {
  font-size: 0.9rem;
  color: var(--slate-300) !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.mn-detail-desc p { margin: 0 0 0.75rem; }
.mn-detail-desc ul { padding-left: 1.25rem; list-style: disc; margin: 0 0 0.75rem; }
.mn-detail-desc li { margin-bottom: 0.3rem; }
.mn-detail-desc strong { color: #fff; }

/* Detail page — larger price + CTA */
.mn-detail-actions {
  border-top: 1px solid var(--slate-800);
  padding-top: 1.25rem;
}
.mn-detail-actions .product-actions {
  gap: 0.75rem;
}
.mn-detail-actions .price {
  font-size: 1.6rem;
  font-weight: 900;
}
.mn-detail-actions .add,
.mn-detail-actions .subscribe,
.mn-detail-actions .open-basket-cta {
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.mn-detail-actions .gift { width: 44px; height: 44px; }
.mn-detail-actions .gift::before { font-size: 1.25rem; }
.mn-detail-actions .quantity-field button { padding: 0.55rem 0.85rem; }

@media (max-width: 768px) {
  .mn-detail-grid { grid-template-columns: 1fr; }
}

/* ================================================
   LOGIN PAGE (Java / Bedrock toggle)
   ================================================ */
.mn-login-page { max-width: 460px; margin: 3rem auto; padding: 0 1.25rem; }
.mn-login-card {
  background: var(--slate-900);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.mn-login-title { font-size: 1.35rem; font-weight: 900; color: #fff; margin: 0 0 0.5rem; }
.mn-login-sub { font-size: 0.875rem; color: var(--slate-400); margin: 0 0 1.5rem; line-height: 1.5; }
.mn-platform-toggle { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.mn-platform-btn {
  flex: 1;
  padding: 0.55rem;
  border-radius: var(--radius);
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  color: var(--slate-300);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.mn-platform-btn:hover { border-color: var(--brand-500); color: var(--brand-300); }
.mn-platform-btn.active {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  border-color: var(--brand-500);
  color: #fff;
}
.mn-login-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 0.4rem;
}
.mn-login-input-wrap {
  display: flex;
  align-items: center;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mn-login-input-wrap:focus-within {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}
.mn-login-prefix { padding: 0 0.2rem 0 0.75rem; color: var(--brand-400); font-weight: 800; font-size: 1rem; }
.mn-login-input-wrap input {
  flex: 1;
  padding: 0.6rem 0.875rem;
  background: transparent !important;
  border: none !important;
  color: var(--slate-200) !important;
  font-size: 0.9rem;
  outline: none;
  box-shadow: none !important;
}
.mn-login-hint { font-size: 0.75rem; color: var(--slate-500); margin: 0.4rem 0 1.25rem; }
.mn-login-submit {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--brand-500);
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  transition: opacity 0.15s, box-shadow 0.15s;
}
.mn-login-submit:hover { opacity: 0.9; box-shadow: 0 0 20px rgba(168, 85, 247, 0.35); }

/* ================================================
   FOOTER
   ================================================ */
.mn-footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(168,85,247,0.1);
  padding: 2rem 0 0;
  margin-top: auto;
}
.mn-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.mn-footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.mn-footer-brand img { height: 28px; width: auto; }
.mn-footer-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mn-footer-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.mn-footer-links a { font-size: 0.8rem; color: var(--slate-500) !important; transition: color 0.15s; text-decoration: none !important; }
.mn-footer-links a:hover { color: var(--brand-400) !important; }
.mn-footer-copy {
  font-size: 0.75rem;
  color: var(--slate-600);
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--slate-800);
}

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-950); }
::-webkit-scrollbar-thumb { background: #4c1d95; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-700); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .mn-nav-links { display: none; }
  .mn-server-btn, .mn-discord-btn { display: none; }
  .mn-toggle { display: flex; }
  .mn-footer-inner { flex-direction: column; text-align: center; }
  .mn-footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .mn-package-grid { grid-template-columns: 1fr; }
}
