/* ------------------------------
   Morgan Empire Production Theme
   Clean • Minimal • Tactical
--------------------------------*/

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

h1, h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Background grid */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-40px,-40px,0); }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delayed {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.8s ease 0.3s forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease 0.2s forwards;
}

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

/* Floating hover */
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

/* Neon underline */
.neon-underline {
  position: relative;
  display: inline-block;
}

.neon-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  box-shadow: 0 0 8px rgba(0, 234, 255, 0.7);
  transform-origin: left;
  transform: scaleX(0.4);
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.neon-underline:hover::after {
  transform: scaleX(1);
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(circle at top, #1b1b1b 0, #050505 60%);
  border-bottom: 1px solid #222;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 16px 0 30px;
}

/* Logo Lockup */
.mep-logo {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  letter-spacing: 2px;
}

.mep-parent {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 2.5px;
  margin-bottom: 6px;
}

.mep-main {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  -webkit-background-clip: text;
  color: transparent;
}

.mep-sub {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: -4px;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.site-footer {
  padding: 26px 20px;
  border-top: 1px solid #222;
  text-align: center;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.75;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.site-footer a {
  color: inherit;
}

/* Toggle */
.toggle-wrapper {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
}

.toggle-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f5f5;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  border-color: transparent;
}

/* Neon Button */
.neon {
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.4);
}

.neon:hover {
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.8);
  transform: translateY(-2px);
}

/* Glassmorphism Container */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

/* ------------------------------
   AUDIO SAMPLES
--------------------------------*/
.samples {
  margin-top: 40px;
}

.audio-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.audio-player {
  flex: 1 1 260px;
}

.track-title {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.play-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.seek {
  width: 100%;
  accent-color: #00eaff;
}

/* Hide native audio UI */
audio {
  display: none;
}

/* ------------------------------
   BOOKING FORM
--------------------------------*/
.booking h2 {
  margin-bottom: 20px;
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking input,
.booking textarea {
  width: 100%;
  padding: 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #222;
  border-radius: 6px;
  color: #f5f5f5;
  font-size: 1rem;
}

.booking textarea {
  min-height: 120px;
  resize: vertical;
}

.booking label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Platform list */
.platform-list {
  columns: 2;
  column-gap: 30px;
  margin: 20px 0 30px;
  list-style: none;
}

.platform-list li {
  margin-bottom: 6px;
  opacity: 0.9;
}

/* Payment page wrapper */
.payment-wrapper {
  max-width: 600px;
  margin: 80px auto;
}

.bank-details p {
  margin-bottom: 6px;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 600px) {
  .mep-main {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .glass {
    padding: 24px;
  }
  .platform-list {
    columns: 1;
  }
}
