/* ============================================================
   KDhost / NexHost — main.css
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0a0f;
  --bg2:        #111118;
  --bg3:        #18181f;
  --surface:    #1e1e28;
  --surface2:   #26263300;
  --border:     rgba(255,255,255,.08);
  --border2:    rgba(255,255,255,.14);
  --text:       #f0f0f8;
  --muted:      #8888aa;
  --accent:     #7c5cfc;
  --accent2:    #a07cff;
  --accent-glow:rgba(124,92,252,.22);
  --green:      #2dd98c;
  --green-dim:  rgba(45,217,140,.12);
  --red:        #ff5757;
  --yellow:     #ffd166;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --nav-h:      68px;
  --font-sans:  'DM Sans', sans-serif;
  --font-display:'Syne', sans-serif;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 99px; }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,10,15,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-inner {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  flex-shrink: 0;
}
.logo span { color: var(--accent2); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: 1.5rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-ghost, .btn-outline, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  border-radius: 99px;
  padding: .5rem 1.1rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform .15s;
}
.btn-ghost:hover, .btn-outline:hover, .btn-primary:hover { transform: translateY(-1px); }
.btn-ghost:active, .btn-outline:active, .btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,.05); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { background: rgba(255,255,255,.06); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent2);
  box-shadow: 0 0 24px 4px var(--accent-glow);
}

.btn-lg { padding: .75rem 1.75rem; font-size: 1rem; border-radius: 99px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,92,252,.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(45,217,140,.08) 0%, transparent 60%);
  z-index: -2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 80%);
}

.hero .container { text-align: center; }

.hero-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(124,92,252,.12);
  border: 1px solid rgba(124,92,252,.25);
  border-radius: 99px;
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .1s ease both;
}
.hero-title span {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 4rem;
  animation: fadeUp .6s .3s ease both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2.5rem;
  width: fit-content;
  margin-inline: auto;
  animation: fadeUp .6s .4s ease both;
}
.stat { text-align: center; padding: 0 2rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text); }
.stat span { font-size: .8rem; color: var(--muted); margin-top: .15rem; display: block; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: .75rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: .75rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
}

/* ══════════════════════════════════════
   PLANS
══════════════════════════════════════ */
.plans-section { padding: 6rem 0; }

.plans-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .35rem;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.tab-btn {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 99px;
  padding: .55rem 1.25rem;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  color: var(--text);
  background: var(--bg3);
}
.tab-btn.active {
  color: var(--accent2);
  background: rgba(124,92,252,.15);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.plan-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform .25s, box-shadow .25s;
}
.plan-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -12px rgba(0,0,0,.5);
}
.plan-card.featured {
  border-color: rgba(124,92,252,.45);
  background: linear-gradient(160deg, rgba(124,92,252,.08) 0%, var(--bg2) 60%);
}
.plan-card.featured:hover {
  box-shadow: 0 20px 60px -12px rgba(124,92,252,.25);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-header { display: flex; flex-direction: column; gap: .35rem; }
.plan-icon { font-size: 1.75rem; margin-bottom: .25rem; }
.plan-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.plan-desc { font-size: .875rem; color: var(--muted); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  padding: .75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-amt {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
}
.price-per { font-size: .875rem; color: var(--muted); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.plan-features li {
  font-size: .9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* strip the ✓ from li text since it's in PHP */
.plan-features li { }

.btn-order {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  margin-top: auto;
}
.plan-card.featured .btn-order {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.btn-order:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.plan-card.featured .btn-order:hover {
  background: var(--accent2);
}
.btn-order span { transition: transform var(--transition); }
.btn-order:hover span { transform: translateX(3px); }

/* Plan visibility for tabs */
.plan-card.hidden { display: none; }

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features-section {
  padding: 6rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg2);
  padding: 2rem;
  transition: background var(--transition);
}
.feature-card:hover { background: var(--bg3); }
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { padding: 6rem 0; }

.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border2); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-q span {
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-q.open { color: var(--accent2); }
.faq-q.open span { transform: rotate(45deg); color: var(--accent2); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .875rem; color: var(--muted); margin-top: .75rem; max-width: 220px; }
.footer-brand .logo { font-size: 1.2rem; }

.footer-links h5 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: .6rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }

/* ══════════════════════════════════════
   MODALS
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn .2s ease;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: scaleIn .25s ease both;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.1); color: var(--text); }

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.modal-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .65rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -1px;
}
.modal-tab.active { color: var(--accent2); border-bottom-color: var(--accent2); }

.modal label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: .4rem;
  margin-top: 1rem;
}
.modal label:first-of-type { margin-top: 0; }

.modal input[type="email"],
.modal input[type="password"],
.modal input[type="text"] {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.modal input:focus { border-color: var(--accent); }
.modal input::placeholder { color: var(--muted); opacity: .5; }

.btn-full { width: 100%; justify-content: center; margin-top: 1.25rem; border-radius: var(--radius); }

.form-error {
  font-size: .85rem;
  color: var(--red);
  background: rgba(255,87,87,.08);
  border: 1px solid rgba(255,87,87,.2);
  border-radius: var(--radius);
  padding: .65rem 1rem;
  margin-top: .75rem;
  display: none;
}
.form-error:not(:empty) { display: block; }

/* ── Order Modal ── */
.order-plan-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  margin-bottom: 1.25rem;
}
.order-plan-info strong { font-size: 1rem; color: var(--text); }
.order-plan-info span { font-size: .875rem; color: var(--accent2); font-weight: 600; }

.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  margin-top: .4rem;
}
.billing-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.billing-btn.active {
  background: rgba(124,92,252,.15);
  border-color: rgba(124,92,252,.45);
  color: var(--accent2);
}
.save-tag {
  font-size: .7rem;
  font-weight: 700;
  background: var(--green-dim);
  color: var(--green);
  padding: .15rem .45rem;
  border-radius: 99px;
}

.order-total {
  font-size: .875rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: right;
}
.order-total strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  margin-left: .35rem;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .stat-div { width: 100%; height: 1px; }
  .stat { padding: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .modal { padding: 1.5rem; }
}

/* ══════════════════════════════════════
   DASHBOARD (ha lesz)
══════════════════════════════════════ */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.dash-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.dash-card h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.dash-card .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 99px;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge-green  { background: var(--green-dim);         color: var(--green); }
.badge-red    { background: rgba(255,87,87,.1);        color: var(--red); }
.badge-yellow { background: rgba(255,209,102,.1);      color: var(--yellow); }
.badge-gray   { background: rgba(136,136,170,.1);      color: var(--muted); }
.badge-purple { background: rgba(124,92,252,.1);       color: var(--accent2); }

.contact-cta {
    padding: 100px 0;
}

.contact-cta-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(
        135deg,
        rgba(88, 101, 242, 0.15),
        rgba(255,255,255,0.03)
    );
    border-radius: 28px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(10px);
}

.contact-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(88,101,242,.25),
        transparent 40%);
    pointer-events: none;
}

.contact-cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.contact-cta-content p {
    max-width: 600px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    font-size: 1.05rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 16px;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .25s ease;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(88,101,242,.35);
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(88,101,242,.45);
}

@media (max-width: 900px) {
    .contact-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }

    .contact-cta-content h2 {
        font-size: 2rem;
    }

    .discord-btn {
        width: 100%;
        justify-content: center;
    }
}