/* =============================================
   ROOT VARIABLES & THEME
   ============================================= */
:root {
  --bg: #07090b;
  --panel: #101317;
  --panel2: #15191f;
  --text: #f4f1ed;
  --muted: #a8adb5;
  --line: rgba(255,255,255,.12);
  --red: #ff322b;
  --cyan: #00f5ff;
  --magenta: #c026d3;
  
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* =============================================
   GLOBAL STYLES & RESET
   ============================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

img {
  loading: lazy; /* better in CSS with attr, but mostly handled in HTML */
}

.demo-card img {
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}


/* =============================================
   CINEMATIC VOICE ACTOR INTRO
   ============================================= */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at center,
      rgba(255,50,43,.08) 0%,
      transparent 40%
    ),
    #030406;

  animation: introAway 1s ease forwards;
  animation-delay: 6.0s; /* increased so BROADCAST READY finishes */
}

/* Moving frequency grid */
.intro::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 48px,
      rgba(0,245,255,.018) 49px,
      transparent 50px
    );

  animation: frequencyMove 6s linear infinite;
  opacity: .8;
}

/* Vignette + atmosphere */
.intro::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      transparent 35%,
      rgba(0,0,0,.72) 100%
    );

  pointer-events: none;
}

/* =============================================
   INTRO MARK
   ============================================= */

.intro-mark {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Logo reveal only */
.intro-mark h1 {
  animation:
    logoReveal 1.2s ease forwards,
    chromaticShift 5s ease-in-out infinite;
}

.intro-mark h1 span {
  display: block;
}

.intro-mark h1 span:last-child {
  color: var(--cyan);
}

/* Expanding audio rings */

.intro-mark::before,
.intro-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intro-mark::before {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(0,245,255,.18);

  animation: pulseRing 4s ease-out infinite;
}

.intro-mark::after {
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255,50,43,.14);

  animation: pulseRing 4s ease-out infinite 1.8s;
}

#intro-status {
  position: relative;
  display: inline-block;
  min-width: 340px;
  text-align: center;
  transition: opacity .4s ease;
}

#intro-status::after {
  content: "_";
  color: var(--cyan);
  margin-left: 3px;
  animation: terminalBlink .8s infinite;
}

@keyframes terminalBlink {
  50% {
    opacity: 0;
  }
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: .35em;
    filter: blur(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: .08em;
    filter: blur(0);
  }
}

/* =============================================
   VOICE WAVE
   ============================================= */

.plasma-line {
  position: relative;

  display: block;
  width: 280px;
  height: 4px;

  margin: 0 auto 32px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    var(--cyan),
    var(--red),
    transparent
  );

  background-size: 200% 100%;

  box-shadow:
    0 0 15px var(--red),
    0 0 35px rgba(0,245,255,.45);

  overflow: hidden;

  animation: plasmaLineFlow 5s linear infinite;
}

.plasma-line::before {
  content: "";
  position: absolute;
  inset: -12px 0;

  background:
    radial-gradient(
      circle,
      rgba(0,245,255,.7),
      transparent 70%
    );

  filter: blur(10px);

  animation: waveformPulse 1.5s ease-in-out infinite;
}

.plasma-line::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.8),
      transparent
    );

  transform: translateX(-150%);
  animation: plasmaShine 3s ease infinite;
}

/* =============================================
   LOGO / NAME
   ============================================= */

.intro-mark h1 {
  position: relative;

  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 11rem);
  line-height: .82;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #f4f1ed;

  overflow: hidden;

  text-shadow:
    -2px 0 rgba(255,50,43,.35),
     2px 0 rgba(0,245,255,.35),
     0 0 35px rgba(255,50,43,.35);
}

/* Signal sweep across text */

.intro-mark h1::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.85),
      transparent
    );

  transform: translateX(-120%);
  animation: signalLock 2s ease forwards;
}

.intro-mark p {
  margin: 24px 0 0;

  letter-spacing: .55em;
  text-transform: uppercase;

  font-size: .8rem;
  font-weight: 700;

  color: #c8ccd4;

  text-shadow:
    0 0 10px rgba(0,245,255,.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes introAway {
  0%,
  90% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.6);
  }

  25% {
    opacity: .8;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

@keyframes frequencyMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(120px);
  }
}

@keyframes plasmaLineFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 200% 50%;
  }
}

@keyframes waveformPulse {
  50% {
    transform: scaleX(1.25);
  }
}

@keyframes plasmaShine {
  from {
    transform: translateX(-150%);
  }

  to {
    transform: translateX(250%);
  }
}

@keyframes signalLock {
  to {
    transform: translateX(150%);
  }
}

@keyframes chromaticShift {
  0%,
  100% {
    text-shadow:
      -2px 0 rgba(255,50,43,.35),
       2px 0 rgba(0,245,255,.35),
       0 0 35px rgba(255,50,43,.35);
  }

  50% {
    text-shadow:
      -4px 0 rgba(255,50,43,.45),
       4px 0 rgba(0,245,255,.45),
       0 0 45px rgba(0,245,255,.35);
  }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  background: linear-gradient(180deg, rgba(0,0,0,.72), transparent);
  backdrop-filter: blur(3px);
}

.brand {
  display: grid;
  text-transform: uppercase;
  letter-spacing: .34em;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.brand small {
  font-size: .62rem;
  color: #d7d7d7;
  margin-top: 7px;
}

.nav {
  display: flex;
  gap: 38px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .73rem;
  font-weight: 800;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: var(--red);
  transition: right .25s;
}

.nav a:hover::after {
  right: 0;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3,4,6,.96) 0%, rgba(3,4,6,.72) 33%, rgba(3,4,6,.05) 62%, rgba(3,4,6,.45) 100%),
                    url('assets/img/hero.jpg');
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 45%, transparent 0 25%, rgba(0,0,0,.32) 54%, rgba(0,0,0,.92) 100%),
              linear-gradient(0deg, rgba(7,9,11,1), transparent 22%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .48em;
  font-size: .72rem;
  font-weight: 900;
}

.hero h2,
.section-heading h2,
.bio-grid h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(4.8rem, 9vw, 9rem);
  line-height: .85;
  letter-spacing: .035em;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}

.hero h2 span {
  color: #f1f1ef;
}

.hero-copy {
  max-width: 560px;
  color: #dadde2;
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 28px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS & LINKS - Plasma Energy Style
   ============================================= */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border: 2px solid var(--red);
  background: rgba(255, 50, 43, 0.08);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 900;
  font-family: var(--font-display);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 20px rgba(255, 50, 43, 0.3);
  text-shadow: 0 0 8px rgba(255, 50, 43, 0.5);
}

.button:hover {
  border-color: var(--cyan);
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 
    0 0 30px var(--red),
    0 0 50px var(--cyan),
    0 8px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
  color: white;
}

/* Plasma shine effect */
.button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 40%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: left 0.7s ease;
  pointer-events: none;
}

.button:hover::before {
  left: 250%;
}

/* Primary button specific (with play icon) */
.button.primary {
  padding: 20px 36px;
  font-size: .82rem;
  border-width: 2.5px;
  background: rgba(255, 50, 43, 0.12);
}

.button.primary:hover {
  background: rgba(0, 245, 255, 0.12);
}

/* Outline variant (used in contact) */
.button.outline {
  background: transparent;
  border-color: var(--red);
  box-shadow: none;
}

.button.outline:hover {
  background: rgba(255, 50, 43, 0.1);
  border-color: var(--cyan);
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .73rem;
  font-weight: 900;
  color: #d0d4db;
  transition: all 0.35s ease;
}

.scroll-link:hover {
  color: var(--cyan);
  text-shadow: 0 0 15px var(--cyan);
}

.scroll-link span {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transition: all 0.4s ease;
}

.scroll-link:hover span {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 12px var(--cyan);
}
/* =============================================
   GENERAL SECTION STYLES
   ============================================= */
.section {
  padding: 84px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: .18em;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: var(--red);
  margin: 15px auto 0;
}
/* =============================================
   AUDIO PLAYER STYLES - CLEANED & IMPROVED
   ============================================= */
.player-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

/* Progress Bar */
.progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.progress-bar {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6655);
  width: 0%;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px var(--red), 0 0 20px rgba(255,50,43,0.7);
}

/* Time */
time {
  font-size: 0.73rem;
  color: #d8d8d8;
  font-variant-numeric: tabular-nums;
  min-width: 20px;
  text-align: left;
}

/* Remove old conflicting styles */
.wave {
  display: none;   /* Hide old wave since we're using progress bar */
}
/* =============================================
   DEMOS SECTION
   ============================================= */
.demos-section {
  background: linear-gradient(180deg, #07090b, #0b0e12 55%, #08090b);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.demo-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #12151a;
  isolation: isolate;
  transition: .25s;
}

.demo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,.28);
}

.demo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05) brightness(.74);
}

/* Plasma Border Effect */
.demo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--cyan),
    var(--red)
  ) border-box;
  -webkit-mask: 
    linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.demo-card:hover::after {
  opacity: 1;
  box-shadow: 
    0 0 20px var(--red),
    0 0 40px var(--cyan);
}

/* Image remains nice and dark */
.demo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05) brightness(.74);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-card:hover img {
  transform: scale(1.04);
}
.demo-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
}

.demo-content span {
  color: var(--red);
  font-weight: 900;
  font-size: .72rem;
}

.demo-content h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 1.45rem;
  line-height: 1.05;
  margin: 9px 0 7px;
}

.demo-content p {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #bfc3ca;
  font-size: .65rem;
  font-weight: 800;
}

time {
  font-size: .68rem;
  color: #d8d8d8;
}

/* =============================================
   SERVICES SECTION - Neon Style (Matching Contact/Bio)
   ============================================= */
.services-section {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(255,50,43,.12), transparent 40%),
              linear-gradient(180deg, #08090b, #100c0d);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Service Card - Neon Card Style */
.service-card {
  border: 2px solid var(--red);
  background: rgba(17, 21, 26, 0.7);
  border-radius: 16px;
  padding: 48px 34px;
  text-align: center;
  min-height: 260px;
  box-shadow: 0 0 20px rgba(255,50,43,.35);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 0 25px var(--red), 0 0 45px rgba(0, 245, 255, 0.25);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
  transition: all .4s ease;
}

.service-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* Service Icon */
.service-icon {
  font-size: 3.6rem;
  color: var(--red);
  margin-bottom: 24px;
  transition: all .4s ease;
  display: block;
}

.service-card:hover .service-icon {
  color: var(--cyan);
  transform: scale(1.12) rotate(8deg);
  text-shadow: 0 0 20px currentColor;
}

.service-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.85rem;
  margin: 0 0 16px;
  text-shadow: 0 0 15px rgba(255,50,43,.4);
}

.service-card p {
  color: #c1c5cc;
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

/* Float classes for subtle rotation (optional) */
.float-one { transform: rotate(-1.5deg); }
.float-two { transform: rotate(1deg); }
.float-three { transform: rotate(2deg); }

.service-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
}

/* =============================================
   CONTACT & BIO & FOOTER
   ============================================= */
.contact-section {
  background: #090a0d;
  text-align: center;
  padding: 40px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

/* Base Contact Item - Neon Style */
.contact-item {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 32px 24px;
  border: 2px solid var(--red);
  border-radius: 14px;
  background: rgba(17, 21, 26, 0.7);
  box-shadow: 0 0 20px rgba(255,50,43,.35);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 0 35px var(--red), 0 0 55px var(--cyan);
}

/* Discord Special Styling */
.contact-item.discord {
  border-color: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, .5);
}

.contact-item.discord:hover {
  border-color: #7289da;
  box-shadow: 0 0 40px #5865F2, 0 0 60px var(--cyan);
}

/* Icon Styling */
.contact-item span {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #11151a;
  color: var(--red);
  font-size: 2.1rem;
  transition: all .4s ease;
}

.contact-item:hover span {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 25px currentColor;
}

.contact-item.discord span {
  color: #5865F2;
  border-color: #5865F2;
}

.contact-item.discord:hover span {
  color: #7289da;
  border-color: #7289da;
}

.contact-item strong {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  font-weight: 800;
  margin-top: 6px;
}

.contact-item small {
  color: #b5bac2;
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   BIO SECTION
   ============================================= */
.bio-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, #0a0b0d, #07090b);
}

.bio-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.bio-grid img {
  border-radius: 12px;
  border: 2px solid var(--red);
  filter: brightness(0.95) contrast(1.1);
  box-shadow: 0 0 30px rgba(255,50,43,.45);
  transition: all .5s ease;
}

.bio-grid img:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 45px var(--red), 0 0 80px var(--cyan);
  transform: scale(1.03);
}

.bio-grid h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  letter-spacing: .12em;
  margin-bottom: 22px;
  text-shadow: 0 0 25px rgba(255,50,43,.3);
}

.bio-grid p:last-child {
  color: #c0c5cc;
  line-height: 1.85;
  max-width: 720px;
  font-size: 1.05rem;
}

/* Enhanced Bio Text Styling */
.bio-text {
  color: #c0c5cc;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.bio-text:last-child {
  margin-bottom: 0;
}

.bio-text strong {
  color: var(--cyan);
  font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8e949b;
  font-size: .8rem;
  background: #07090b;
}

/* =============================================
   SECTION DIVIDER - Red to Cyan Plasma Flow
   ============================================= */
.section-divider {
  position: relative;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 70px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 50, 43, 0.4) 20%,
    var(--red) 35%,
    #c026d3 50%,           /* Magenta transition */
    var(--cyan) 65%,
    rgba(0, 245, 255, 0.4) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  box-shadow:
    0 0 12px var(--red),
    0 0 32px rgba(255, 50, 43, 0.75),
    0 0 65px rgba(0, 245, 255, 0.4);
 
  animation: plasmaFlow 6.5s ease infinite alternate;
}

/* Extra glow layer */
.section-divider::before {
  content: "";
  position: absolute;
  inset: -10px 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 50, 43, 0.35) 20%,
    var(--red) 35%,
    #c026d3 50%,
    var(--cyan) 65%,
    rgba(0, 245, 255, 0.45) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  filter: blur(14px);
  z-index: -1;
  animation: plasmaGlow 5s ease infinite alternate;
}

/* Animations - Red to Cyan Chain */
@keyframes plasmaFlow {
  0% {
    background-position: 0% 50%;
    box-shadow:
      0 0 12px var(--red),
      0 0 35px rgba(255, 50, 43, 0.8),
      0 0 60px rgba(0, 245, 255, 0.3);
  }
  100% {
    background-position: 200% 50%;
    box-shadow:
      0 0 18px var(--cyan),
      0 0 45px rgba(0, 245, 255, 0.85),
      0 0 90px rgba(255, 50, 43, 0.4);
  }
}

@keyframes plasmaGlow {
  0% {
    opacity: 0.75;
    transform: scaleX(0.92);
    background-position: 0% 50%;
  }
  100% {
    opacity: 1;
    transform: scaleX(1.08);
    background-position: 200% 50%;
  }
}

/* Hero-specific adjustments (stronger & pulled up) */
.hero-divider {
  margin: -2px auto 70px;   /* Pulls it closer to hero */
}

/* Responsive */
@media (max-width: 1100px) {
  .section-divider {
    width: min(920px, calc(100% - 48px));
  }
}
/* =============================================
   MEDIA QUERIES
   ============================================= */
@media (max-width: 1050px) {
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
  .nav { gap: 20px; }
  .hero h2 { font-size: clamp(4rem, 14vw, 8rem); }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding: 22px;
  }

  .nav { display: none; }

  .container {
    width: min(100% - 32px, 1160px);
  }

  .hero { min-height: 92vh; }
  .hero-bg { background-position: 64% center; }
  .hero h2 { font-size: 4.8rem; }

  .demo-grid,
  .services-grid,
  .contact-grid,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .float-one,
  .float-two,
  .float-three {
    transform: none;
  }

  .contact-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer {
    flex-direction: column;
  }

  .intro-mark h1 { font-size: 4rem; }
  .intro-mark p { letter-spacing: .28em; }
}
/* HERO ENHANCEMENTS - Inspired by the image */
.hero h2 {
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  line-height: .88;
}

.hero-subtitle {
  color: #dadde2;
  font-size: 1.15rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin: 12px 0 28px;
  font-weight: 600;
}

/* Icon Services Row */
.icon-services {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  margin: 38px 0 44px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.icon {
  font-size: 2.4rem;
  color: var(--red);
  filter: drop-shadow(0 0 12px var(--red));
}

/* =============================================
   PLATFORM LOGOS - Enhanced
   ============================================= */
.platform-logos {
  display: flex;
  gap: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 58px;
}

.platform-logos svg {
  width: 36px;
  height: 36px;
  transition: all 0.35s ease;
  filter: brightness(0.8) contrast(1.1);
}

.platform-logos svg:hover {
  transform: translateY(-6px) scale(1.15);
  filter: 
    brightness(1.25) 
    drop-shadow(0 0 8px var(--red)) 
    drop-shadow(0 0 20px var(--red));
}

/* Individual logo styling */
.platform-logos svg {
  width: 36px;
  height: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85) grayscale(0.3);
  opacity: 0.9;
}

/* Hover effects with red plasma glow */
.platform-logos svg:hover {
  transform: translateY(-4px) scale(1.12);
  filter: brightness(1.15) grayscale(0) drop-shadow(0 0 12px var(--red));
  opacity: 1;
}

/* Specific color tints on hover for brand accuracy */
.platform-logos svg:hover:nth-child(1) { /* Steam */
  filter: brightness(1.1) drop-shadow(0 0 14px #66C0F4);
}

.platform-logos svg:hover:nth-child(2) { /* Discord */
  filter: brightness(1.15) drop-shadow(0 0 14px #5865F2);
}

.platform-logos svg:hover:nth-child(3) { /* Twitch */
  filter: brightness(1.15) drop-shadow(0 0 14px #9146FF);
}

.platform-logos svg:hover:nth-child(4) { /* YouTube */
  filter: brightness(1.1) drop-shadow(0 0 14px #FF0000);
}

/* Responsive adjustments */
@media (max-width: 760px) {
  .platform-logos {
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .platform-logos svg {
    width: 30px;
    height: 30px;
  }
}

/* Mobile adjustments */
@media (max-width: 760px) {
  .icon-services {
    gap: 28px;
    justify-content: center;
  }
  .platform-logos {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}