/* ==========================================================================
   NullptrCore — Modern Luxury Dark/Gold Design System
   Directed by Walter Sterling!
   ========================================================================== */

:root {
  /* Colors */
  --gold-bright: #ffd56b;
  --gold-primary: #f0c060;
  --gold-deep: #d4a043;
  --gold-dim: #8a6420;
  --gold-glow: rgba(240, 192, 96, 0.35);
  --gold-subtle: rgba(212, 160, 67, 0.08);

  --cyan-accent: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.25);

  --bg-darkest: #07090c;
  --bg-body: #0b0e14;
  --bg-card: #11151e;
  --bg-card-hover: #161c28;
  --bg-glass: rgba(13, 17, 24, 0.82);

  --border-gold: rgba(212, 160, 67, 0.22);
  --border-gold-hover: rgba(240, 192, 96, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.06);

  --text-main: #f1f3f7;
  --text-muted: #8b92a5;
  --text-dim: #545b70;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-ui: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.65);
  --shadow-gold-heavy: 0 0 35px rgba(240, 192, 96, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dim), var(--gold-primary));
  border-radius: 4px;
}

/* Floating Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.gold-gradient {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffe6a7 20%,
    var(--gold-primary) 40%,
    #d4a043 60%,
    #ffe6a7 80%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGoldShimmer 5s linear infinite;
  display: inline-block;
}

@keyframes heroGoldShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* --------------------------------------------------------------------------
   Toast Notification
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-primary);
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  box-shadow: var(--shadow-gold-heavy);
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  transition: var(--transition-smooth);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: rgba(7, 9, 12, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gold);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 28, 40, 0.9), rgba(10, 13, 20, 0.95));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 192, 96, 0.4);
  box-shadow: 0 0 16px rgba(212, 160, 67, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-crest::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: crestScan 4s infinite ease-in-out;
}

@keyframes crestScan {
  0%, 65% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.crest-prefix {
  color: var(--gold-primary);
  font-weight: 800;
}

.crest-null {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.65);
}

.brand:hover .brand-crest {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(240, 192, 96, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  line-height: 1;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #ffffff 35%,
    #ffeaa7 45%,
    #ffffff 55%,
    #ffffff 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 4.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(240, 192, 96, 0.25));
  transition: letter-spacing 0.3s ease, filter 0.3s ease;
}

.brand-name span {
  background: linear-gradient(
    110deg,
    var(--gold-primary) 0%,
    var(--gold-primary) 35%,
    #ffffff 48%,
    #ffeaa7 55%,
    var(--gold-primary) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 4.5s ease-in-out infinite;
  display: inline-block;
}

.brand:hover .brand-name {
  letter-spacing: 3.5px;
  filter: drop-shadow(0 0 20px rgba(255, 213, 107, 0.7));
}

@keyframes logoShine {
  0% {
    background-position: 120% 0;
  }
  35%, 100% {
    background-position: -120% 0;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 160, 67, 0.07);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}
.btn-lang:hover {
  background: var(--gold-deep);
  color: var(--bg-darkest);
  box-shadow: 0 0 14px var(--gold-glow);
}

.btn-nav-discord {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}
.btn-nav-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.55);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 1.5rem 5rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 160, 67, 0.09) 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 192, 96, 0.12) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-seal-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
}

.seal-glow-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--gold-primary);
  animation: rotateSeal 25s linear infinite;
  box-shadow: 0 0 35px var(--gold-glow);
}
@keyframes rotateSeal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-seal {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  background: var(--bg-card);
}
.seal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.seal-img:hover {
  transform: scale(1.06);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 160, 67, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.4rem 1.3rem;
  margin-bottom: 1.8rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulseBeacon 1.8s infinite;
}
@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-deep) 100%);
  color: var(--bg-darkest);
  box-shadow: 0 4px 22px rgba(240, 192, 96, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240, 192, 96, 0.55);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
}
.btn-secondary:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 0 20px rgba(212, 160, 67, 0.2);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gold);
}

.stat-card {
  background: rgba(17, 21, 30, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.2rem 1rem;
  transition: var(--transition-smooth);
}
.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  background: rgba(22, 28, 40, 0.8);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 0.4rem;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Section Common
   -------------------------------------------------------------------------- */
.section {
  padding: 6.5rem 0;
  position: relative;
  z-index: 2;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 0.9rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Filter Tabs
   -------------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.filter-btn:hover {
  border-color: var(--border-gold);
  color: #fff;
}
.filter-btn.active {
  background: var(--gold-deep);
  color: var(--bg-darkest);
  border-color: var(--gold-primary);
  font-weight: 700;
  box-shadow: 0 0 16px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   Product Cards (Showcase)
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(240, 192, 96, 0.18);
}

.card-media {
  width: 100%;
  height: 210px;
  position: relative;
  background: var(--bg-darkest);
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: rgba(7, 9, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
}
.badge.cpp {
  border-color: #007acc;
  color: #5bb5ff;
}
.badge.py {
  border-color: #ffd43b;
  color: #ffe082;
}
.badge.benchmark {
  background: linear-gradient(135deg, rgba(235, 94, 40, 0.3), rgba(212, 160, 67, 0.35));
  border-color: #f39c12;
  color: #ffda79;
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.35);
  font-weight: 700;
  animation: badgePulse 2.5s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(243, 156, 18, 0.3); }
  50% { box-shadow: 0 0 18px rgba(243, 156, 18, 0.65); border-color: #ffb142; }
}

/* Featured Card Special Glow */
.featured-product-card {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 160, 67, 0.22), var(--shadow-card);
  position: relative;
}
.featured-product-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(240, 192, 96, 0.35);
  border-color: var(--gold-bright);
}

.card-featured-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #d4a043, #e67e22);
  color: #0c1016;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.35rem 1rem;
  border-bottom-left-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 5;
  text-transform: uppercase;
}

/* Modal Benchmark Dashboard */
.modal-benchmark-box {
  background: linear-gradient(135deg, rgba(212, 160, 67, 0.12), rgba(12, 16, 24, 0.95));
  border: 1px solid rgba(240, 192, 96, 0.4);
  border-radius: 12px;
  padding: 1.4rem;
  margin: 1.5rem 0;
  box-shadow: 0 0 25px rgba(212, 160, 67, 0.15);
}

.mb-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.mb-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: #e67e22;
  color: #0b0e14;
  letter-spacing: 1px;
}

.mb-header h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin: 0;
}

.mb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.9rem;
}

.mb-item {
  background: rgba(17, 22, 32, 0.75);
  border: 1px solid rgba(212, 160, 67, 0.25);
  border-radius: 8px;
  padding: 0.9rem 0.7rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.mb-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  background: rgba(23, 30, 44, 0.9);
}

.mb-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 12px rgba(240, 192, 96, 0.4);
}

.mb-lbl {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.4rem;
  line-height: 1.25;
}

.mb-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.card-features {
  list-style: none;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.card-features li {
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-features li::before {
  content: '⚡';
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.card-actions {
  display: flex;
  gap: 0.6rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Server Files Section
   -------------------------------------------------------------------------- */
.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.files-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.files-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card);
}
.files-card.featured {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(240, 192, 96, 0.05) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 30px rgba(240, 192, 96, 0.15);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-primary));
  color: var(--bg-darkest);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
}

.badge-tier {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.badge-tier.gold {
  color: var(--gold-primary);
}

.files-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.files-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
  margin-bottom: 1.8rem;
}
.files-price small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
}

.files-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.files-features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.files-features li span {
  color: var(--gold-primary);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   Standards & Code Showcase
   -------------------------------------------------------------------------- */
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.standard-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.standard-item {
  display: flex;
  gap: 1.2rem;
}

.standard-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 160, 67, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.standard-item h4 {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.standard-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.standards-code-preview {
  background: #090c12;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.code-header {
  background: #10141d;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.code-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 6px;
}
.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-filename {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.code-block {
  padding: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.7;
  overflow-x: auto;
}
.code-kw { color: #ff7b72; font-weight: bold; }
.code-str { color: #a5d6ff; }
.code-comment { color: #6e7681; font-style: italic; }

/* --------------------------------------------------------------------------
   Payment Methods Section
   -------------------------------------------------------------------------- */
.payment-section {
  position: relative;
  z-index: 2;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 12px 30px rgba(212, 160, 67, 0.18);
  background: rgba(16, 22, 32, 0.95);
}

.payment-badge-top {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 160, 67, 0.1);
  border: 1px solid rgba(212, 160, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
  transition: var(--transition-smooth);
}

.payment-card:hover .payment-badge-top {
  background: var(--gold-primary);
  color: #07090c;
  transform: scale(1.05);
}

.payment-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.payment-title {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.payment-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  flex: 1;
}

.payment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed rgba(212, 160, 67, 0.2);
  padding-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.payment-currency {
  color: #fff;
  font-weight: 600;
}

.payment-status-tag {
  color: var(--gold-primary);
  background: rgba(212, 160, 67, 0.12);
  border: 1px solid rgba(212, 160, 67, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: var(--border-gold-hover);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  user-select: none;
}
.faq-arrow {
  color: var(--gold-primary);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: rgba(7, 9, 12, 0.4);
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.8rem 1.4rem;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-extra-help {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-extra-help p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-extra-help a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-extra-help a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(240, 192, 96, 0.6);
}

.contact-friendly-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(212, 160, 67, 0.08);
  border: 1px solid rgba(212, 160, 67, 0.35);
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 auto 2.2rem;
  max-width: 660px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.contact-friendly-note .note-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 192, 96, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.contact-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  background: rgba(212, 160, 67, 0.08);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.discord-identity-box {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: #090c12;
  border: 1px solid var(--border-gold);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.discord-avatar-container {
  position: relative;
  width: 48px;
  height: 48px;
}
.discord-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}
.discord-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #23a55a;
  border: 2px solid #090c12;
  border-radius: 50%;
}

.discord-details {
  text-align: left;
}
.discord-name {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.discord-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-primary);
}

.btn-discord-copy {
  padding: 0.45rem 0.9rem;
  background: rgba(212, 160, 67, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.btn-discord-copy:hover {
  background: var(--gold-deep);
  color: var(--bg-darkest);
}

.contact-actions {
  display: flex;
  justify-content: center;
}
.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

/* Corporate Emails Grid */
.contact-emails-container {
  margin-top: 3.5rem;
  border-top: 1px dashed rgba(212, 160, 67, 0.25);
  padding-top: 2.5rem;
}

.emails-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.emails-divider span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  background: rgba(212, 160, 67, 0.08);
  border: 1px solid rgba(212, 160, 67, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

/* Flowing Marquee Strip (Sırayla Kayan E-Posta Bandı) */
.emails-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 2.2rem;
  padding: 0.6rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.emails-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollEmailMarquee 32s linear infinite;
}

.emails-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollEmailMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-email-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(14, 18, 26, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.55rem 1.3rem;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.marquee-email-item:hover {
  background: rgba(212, 160, 67, 0.18);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 67, 0.3);
}

.m-icon {
  font-size: 1rem;
}

.m-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-primary);
  background: rgba(212, 160, 67, 0.12);
  border: 1px solid rgba(212, 160, 67, 0.25);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

.m-addr {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

.emails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  text-align: left;
}

.email-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(14, 18, 26, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  position: relative;
}

.email-card:hover {
  border-color: var(--border-gold-hover);
  background: rgba(20, 26, 38, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 160, 67, 0.15);
}

.email-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 160, 67, 0.1);
  border: 1px solid rgba(212, 160, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.email-card:hover .email-icon {
  background: var(--gold-primary);
  color: #07090c;
  transform: scale(1.05);
}

.email-content {
  flex: 1;
  min-width: 0;
}

.email-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.email-link {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition-smooth);
}

.email-link:hover {
  color: var(--gold-bright);
}

.btn-copy-email {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-copy-email:hover {
  background: rgba(212, 160, 67, 0.2);
  border-color: var(--gold-primary);
  color: #fff;
  transform: scale(1.1);
}

/* Footer emails */
.footer-emails {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.footer-email-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-email-link:hover {
  color: var(--gold-primary);
}

.footer-email-sep {
  color: rgba(212, 160, 67, 0.4);
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border-gold);
  background: var(--bg-darkest);
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
}
.footer-title span {
  color: var(--gold-primary);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.footer-copyright {
  text-align: right;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-copyright small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   Modal Overlay
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 45px rgba(240, 192, 96, 0.2);
  transform: scale(0.95);
  transition: var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition-smooth);
  z-index: 10;
}
.modal-close:hover {
  color: var(--gold-primary);
}

.modal-body {
  padding: 2.2rem;
}

/* Modal Media & Video Player */
.modal-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(240, 192, 96, 0.15);
  background: #000;
}

.modal-media-wrapper iframe,
.modal-media-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.media-tab-btn {
  padding: 0.4rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 160, 67, 0.08);
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.media-tab-btn:hover {
  color: #fff;
  border-color: var(--gold-primary);
}
.media-tab-btn.active {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-primary));
  color: var(--bg-darkest);
  font-weight: bold;
  box-shadow: 0 0 14px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .standards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(7, 9, 12, 0.98);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    gap: 1.5rem;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-copyright {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Floating Discord Widget (Bottom-Left)
   -------------------------------------------------------------------------- */
.floating-discord-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.floating-discord-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #5865F2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.2s ease;
  cursor: pointer;
}

.floating-discord-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background: #4752c4;
  box-shadow: 0 10px 32px rgba(88, 101, 242, 0.75), 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.floating-discord-btn:active {
  transform: translateY(-1px) scale(0.96);
}

.floating-discord-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.floating-discord-btn:hover .floating-discord-icon {
  transform: scale(1.06);
}

.discord-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(88, 101, 242, 0.65);
  animation: discordFloatingPulse 2.4s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}

@keyframes discordFloatingPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.discord-online-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  background: #23a55a;
  border: 2.5px solid #07090c;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(35, 165, 90, 0.8);
}

.floating-discord-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  background: rgba(11, 15, 23, 0.95);
  border: 1px solid rgba(88, 101, 242, 0.45);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.floating-discord-tooltip::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(88, 101, 242, 0.45) transparent transparent;
}

.floating-discord-btn:hover .floating-discord-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .floating-discord-widget {
    bottom: 18px;
    left: 16px;
  }
  .floating-discord-btn {
    width: 52px;
    height: 52px;
  }
  .floating-discord-icon {
    width: 26px;
    height: 26px;
  }
  .floating-discord-tooltip {
    display: none;
  }
}

