/* ==========================================================================
   ASTOM MC · MODERN DARK THEME (ISPIRATO A SCARLETMC)
   ========================================================================== */

:root {
  --bg-main: #070709;
  --bg-surface: #0f1015;
  --bg-surface-alt: #13141b;
  --bg-card: rgba(18, 19, 26, 0.75);
  --bg-card-hover: rgba(26, 28, 38, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-active: rgba(255, 255, 255, 0.18);
  --border-glow: rgba(56, 189, 248, 0.4);

  --accent-blue: #38bdf8;
  --accent-cyan: #06b6d4;
  --accent-purple: #818cf8;
  --accent-emerald: #10b981;
  --accent-discord: #5865f2;
  --accent-discord-hover: #4752c4;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Griglia & Bagliori ambientali */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.glow-top {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, #38bdf8 0%, #6366f1 50%, transparent 80%);
}

.glow-center {
  top: 45%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #06b6d4 0%, #3b82f6 50%, transparent 80%);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-cube {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo-highlight {
  color: var(--accent-blue);
  margin-left: 2px;
}

.logo-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

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

.nav-item.active {
  color: var(--accent-blue);
  font-weight: 600;
}

.nav-icon {
  width: 17px;
  height: 17px;
}

.nav-store-link {
  color: #fff;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-weight: 600;
}

.nav-store-link:hover {
  background: var(--accent-blue);
  color: #000;
  border-color: var(--accent-blue);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-ip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-ip-btn:hover {
  border-color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.08);
}

.copy-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-blue);
}

/* Tasto Accedi con Discord in alto a destra */
.btn-discord-login {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent-discord);
  color: #fff;
  border: none;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.btn-discord-login:hover {
  background: var(--accent-discord-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.btn-discord-login.logged-in {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-active);
  box-shadow: none;
}

.btn-discord-login.logged-in:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-blue);
}

.discord-icon {
  width: 18px;
  height: 18px;
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator-dot.warning {
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.status-indicator-dot.success {
  background-color: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-item {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-item:hover {
  color: #fff;
}

.mobile-profile-box {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.w-full {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem 4rem;
  background: radial-gradient(ellipse at center top, rgba(14, 28, 48, 0.6) 0%, rgba(7, 7, 9, 0.95) 70%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.07), transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 10%, #818cf8 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

/* Play Button Copia IP Hero (stile ScarletMC) */
.hero-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  min-width: 280px;
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.hero-play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -5px rgba(2, 132, 199, 0.7);
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.play-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.play-btn-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.play-btn-ip {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
}

.play-btn-icon svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* Hero Discord Button */
.hero-discord-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  min-width: 260px;
  text-align: left;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.hero-discord-button:hover {
  border-color: var(--accent-discord);
  background: rgba(88, 101, 242, 0.15);
  transform: translateY(-2px);
}

.discord-btn-icon {
  color: var(--accent-discord);
}

.discord-btn-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.discord-btn-text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

/* Hero Stats Panel */
.hero-stats-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-lg);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.stat-number.glow-pulse {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-subtle);
}

/* ==========================================================================
   PAGE HERO (PER LE PAGINE DEDICATE: SMP, STAFF, STORE, ECC.)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(ellipse at center top, rgba(14, 28, 48, 0.45) 0%, rgba(7, 7, 9, 0.95) 75%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.page-hero-content {
  max-width: 800px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}


.utility-bar-wrap {
  margin-top: -24px;
  position: relative;
  z-index: 10;
}

.utility-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.utility-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.utility-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--bg-surface-alt);
}

.util-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.util-icon svg {
  width: 20px;
  height: 20px;
}

.util-icon.orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.util-icon.blue { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.util-icon.red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.util-icon.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }

.util-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.util-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-subtle);
  transition: transform 0.2s ease;
}

.utility-card:hover .util-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* ==========================================================================
   SEZIONI COMUNI
   ========================================================================== */

.section-container {
  padding: 5.5rem 0;
  position: relative;
}

.bg-surface-alt {
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   SEZIONE COME ENTRARE (TABS & MC MOCKUP)
   ========================================================================== */

.join-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.join-interactive {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.join-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.join-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  transition: all 0.2s ease;
}

.join-tab-btn svg {
  width: 20px;
  height: 20px;
}

.join-tab-btn strong {
  display: block;
  color: #fff;
}

.join-tab-btn small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-subtle);
}

.join-tab-btn.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-active);
  color: #fff;
}

.join-tab-btn.active svg {
  color: var(--accent-blue);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.step-item strong {
  color: #fff;
}

.step-num {
  width: 26px;
  height: 26px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.ip-copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
}

.ip-info {
  display: flex;
  flex-direction: column;
}

.ip-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.ip-val {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.btn-copy-ip-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-blue);
  color: #000;
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-ip-inline:hover {
  background: #7dd3fc;
}

.btn-copy-ip-inline svg {
  width: 15px;
  height: 15px;
}

/* Finestra Mockup Minecraft (stile interfaccia di gioco) */
.mc-mockup-window {
  background: #1e1e24;
  border: 2px solid #2e2e38;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.mc-mockup-header {
  background: #141419;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid #2a2a35;
}

.mc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mc-dot.red { background: #ef4444; }
.mc-dot.yellow { background: #f59e0b; }
.mc-dot.green { background: #10b981; }

.mc-window-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mc-mockup-body {
  padding: 1.75rem;
  font-family: var(--font-sans);
}

.mc-input-label {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.mc-fake-input {
  background: #000;
  border: 1px solid #475569;
  padding: 0.65rem 0.85rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  color: #fff;
  font-size: 0.9rem;
}

.mc-fake-input.active-input {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
}

.mc-cursor {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #fff;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.mc-btn-primary {
  background: #334155;
  border: 2px solid #475569;
  color: #fff;
  padding: 0.6rem;
  text-align: center;
  font-weight: 600;
  border-radius: 4px;
  cursor: default;
}

.mc-btn-secondary {
  margin-top: 0.5rem;
  background: #1e293b;
  border: 1px solid #334155;
  color: #94a3b8;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  border-radius: 4px;
}

.mt-3 { margin-top: 0.85rem; }
.mt-4 { margin-top: 1.25rem; }

/* ==========================================================================
   SEZIONE STAFF (CONFIGURAZIONE RICHIESTA DAL CLIENTE)
   Owner: Astom1112 | Manager: Dg_NotMe_ | DS Mod: Gianfilippo2048
   ========================================================================== */

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.staff-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.staff-card:hover {
  transform: translateY(-8px);
}

/* Card Glows per Ruolo */
.owner-glow:hover {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 20px 45px -10px rgba(239, 68, 68, 0.3);
}

.manager-glow:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 45px -10px rgba(245, 158, 11, 0.3);
}

.mod-glow:hover {
  border-color: rgba(88, 101, 242, 0.45);
  box-shadow: 0 20px 45px -10px rgba(88, 101, 242, 0.3);
}

.staff-card-header {
  margin-bottom: 1.5rem;
}

.staff-role-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
}

.badge-owner {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.badge-manager {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
}

.badge-mod {
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #818cf8;
}

/* Avatar Minecraft 3D Wrap */
.staff-avatar-wrap {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.skin-glow {
  position: absolute;
  bottom: 10px;
  width: 130px;
  height: 50px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.4;
  z-index: 0;
}

.owner-bg { background: #ef4444; }
.manager-bg { background: #f59e0b; }
.mod-bg { background: #5865f2; }

.staff-skin-img {
  position: relative;
  z-index: 1;
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.7));
  transition: transform 0.35s ease;
}

.staff-card:hover .staff-skin-img {
  transform: scale(1.08) translateY(-4px);
}

.staff-info {
  width: 100%;
}

.staff-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}

.staff-role-text {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-owner { color: #f87171; }
.text-manager { color: #fbbf24; }
.text-mod { color: #a5b4fc; }

.staff-nick-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nick-head-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}

/* Box Candidature */
.candidature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.candidature-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 750px;
}

.cand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cand-icon svg {
  width: 22px;
  height: 22px;
}

.cand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-cand {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-active);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-cand:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-blue);
}

/* ==========================================================================
   SEZIONE STORE (REQUISITI: 'INSERISCI QUI IL PREZZO' SENZA INVENTARE DATI)
   ========================================================================== */

.store-notice-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #7dd3fc;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}

.store-notice-box svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-notice-box code {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
}

.store-categories-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.store-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.store-pill:hover, .store-pill.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-blue);
  color: #fff;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.store-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.store-card.featured-card {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(30, 26, 18, 0.85) 0%, var(--bg-surface) 100%);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.store-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.store-item-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-card-icon svg {
  width: 22px;
  height: 22px;
}

.icon-iron { background: rgba(148, 163, 184, 0.15); color: #cbd5e1; }
.icon-gold { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.icon-diamond { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.icon-emerald { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.icon-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }

.store-item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
}

.store-price-tag {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.price-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-emerald);
  display: block;
  letter-spacing: 0.04em;
}

.store-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.store-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.store-perks-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.btn-store-buy {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-active);
  color: #fff;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-store-buy:hover {
  background: var(--accent-blue);
  color: #000;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}

.btn-store-buy.featured-btn {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

.btn-store-buy.featured-btn:hover {
  background: #fde047;
}

/* ==========================================================================
   SEZIONE DISCORD CTA
   ========================================================================== */

.discord-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(20, 20, 30, 0.9) 100%);
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.discord-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.discord-card-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.discord-giant-icon {
  color: var(--accent-discord);
  flex-shrink: 0;
}

.discord-text-area {
  flex: 1;
}

.discord-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.discord-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 600px;
}

.btn-discord-join {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-discord);
  color: #fff;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.45);
}

.btn-discord-join:hover {
  background: var(--accent-discord-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(88, 101, 242, 0.6);
}

/* ==========================================================================
   SEZIONE REGOLAMENTO (ACCORDION)
   ========================================================================== */

.rules-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.rule-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.rule-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.rule-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
}

.rule-num {
  font-family: var(--font-mono);
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.rule-title {
  flex: 1;
}

.rule-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-subtle);
  transition: transform 0.25s ease;
}

.rule-card.open .rule-chevron {
  transform: rotate(180deg);
  color: #fff;
}

.rule-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

.rule-card.open .rule-body {
  display: block;
}

/* ==========================================================================
   FOOTER (STILE SCARLETMC)
   ========================================================================== */

.site-footer {
  background: #050507;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  color: #fff;
  border-color: var(--accent-discord);
  background: rgba(88, 101, 242, 0.15);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-subtle);
}

.disclaimer {
  max-width: 800px;
  line-height: 1.5;
}

/* ==========================================================================
   MODALI: DISCORD LOGIN & AREA PERSONALE & STORE CHECKOUT
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.discord-avatar-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-discord);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.modal-subtitle {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-subtle);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-body {
  padding: 1.75rem 1.5rem;
}

.auth-explainer {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn-discord-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--accent-discord);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
}

.btn-discord-full:hover {
  background: var(--accent-discord-hover);
}

.bot-config-toggle-wrap {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.btn-toggle-config {
  background: transparent;
  border: none;
  color: var(--accent-blue);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.bot-config-drawer {
  display: none;
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.bot-config-drawer.open {
  display: block;
}

.config-note {
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-bottom: 0.85rem;
}

.input-group {
  margin-bottom: 1rem;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  background: #000;
  border: 1px solid var(--border-active);
  color: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.input-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 0.35rem;
}

.btn-save-config {
  width: 100%;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-save-config:hover {
  background: var(--accent-blue);
  color: #000;
}

/* User Profile Logged in View */
.user-profile-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.user-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--accent-discord);
}

.user-displayname {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.user-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-blue);
}

.profile-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.detail-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.text-green { color: var(--accent-emerald); }

.link-mc-box {
  margin-bottom: 1.5rem;
  text-align: left;
}

.link-mc-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.btn-link-mc {
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 0 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

.btn-link-mc:hover {
  background: var(--accent-blue);
  color: #000;
}

.btn-logout {
  width: 100%;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: #ef4444;
  color: #fff;
}

/* Modale Checkout */
.store-modal-price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-emerald);
  margin-bottom: 1rem;
}

.payment-methods-preview {
  margin: 1.25rem 0;
  font-size: 0.82rem;
  color: var(--text-subtle);
  text-align: left;
}

.pay-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-proceed-checkout {
  width: 100%;
  background: var(--accent-emerald);
  color: #000;
  border: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-proceed-checkout:hover {
  background: #34d399;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0f172a;
  border: 1px solid var(--accent-blue);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--accent-blue);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .join-box { grid-template-columns: 1fr; }
  .mc-mockup-window { display: none; }
  .discord-card-content { flex-direction: column; text-align: center; gap: 1.5rem; }
  .discord-giant-icon { display: none; }
  .hero-stats-panel { gap: 1rem; padding: 0.75rem 1.25rem; }
}

@media (max-width: 640px) {
  .nav-ip-btn { display: none; }
  .hero-cta-group { flex-direction: column; }
  .hero-play-button, .hero-discord-button { width: 100%; min-width: auto; }
  .candidature-box { flex-direction: column; text-align: center; }
  .candidature-content { flex-direction: column; }
  .btn-cand { width: 100%; text-align: center; }
  .profile-details-grid { grid-template-columns: 1fr; }
}
