/* === MrNeon Base: Variables, Module Reset, Buttons, Section === */
:root {
  --bg: #0a0a0f;
  --bg-2: #111119;
  --bg-3: #16161f;
  --surface: #1c1c28;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #fff;
  --text-dim: #b8b8c8;
  --text-mute: #7a7a8c;
  --pink: #ff2bd6;
  --pink-2: #ff5ce1;
  --cyan: #00eaff;
  --purple: #a855f7;
  --yellow: #ffe600;
  --green: #39ff14;
  --orange: #ff7a00;
  --grad-neon: linear-gradient(135deg, #ff2bd6 0%, #a855f7 50%, #00eaff 100%);
  --grad-hot: linear-gradient(135deg, #ff2bd6, #ff5ce1);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-pink:
    0 0 24px rgba(255, 43, 214, 0.55), 0 0 60px rgba(255, 43, 214, 0.25);
  --shadow-cyan:
    0 0 24px rgba(0, 234, 255, 0.55), 0 0 60px rgba(0, 234, 255, 0.25);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* MODULE BASE */
.mrneon-module {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  position: relative;
}
.mrneon-module *,
.mrneon-module *::before,
.mrneon-module *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.mrneon-module img {
  max-width: 100%;
  display: block;
}
.mrneon-module a {
  color: inherit;
  text-decoration: none;
}
.mrneon-module button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* BUTTONS */
.mrneon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
}
.mrneon-btn-primary {
  background: var(--grad-hot);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.mrneon-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00eaff, #a855f7);
  opacity: 0;
  transition: opacity 0.3s;
}
.mrneon-btn-primary:hover::before {
  opacity: 1;
}
.mrneon-btn-primary span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mrneon-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 30px rgba(255, 43, 214, 0.7),
    0 0 80px rgba(0, 234, 255, 0.4);
}
.mrneon-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: #fff;
}
.mrneon-btn-ghost:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}
.mrneon-btn-lg {
  padding: 22px 44px;
  font-size: 16px;
  letter-spacing: 2.5px;
}

/* SECTION (shared by carousel, categories, testimonials) */
.mrneon-section {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
}
.mrneon-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.mrneon-section-head .sub {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
  display: block;
}
.mrneon-section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.mrneon-section-head h2 .white {
  background: linear-gradient(180deg, #fff 0%, #e8e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mrneon-section-head h2 .grad {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 43, 214, 0.4));
}
.mrneon-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .mrneon-section {
    padding: 60px 16px;
  }
  .mrneon-btn-lg {
    padding: 18px 32px;
    font-size: 14px;
  }
}
