/* ==========================================================
   ELITE SPLIT
   - Same luxury gold/coffee sheen as Elite
   - Each paragraph is its own glossy card with diagonal beam
   - Usage: [elite-split]...[/elite-split]
========================================================== */

@keyframes eliteSplitBeam {
  0%   { opacity: 0; transform: translate(-120%, -120%) rotate(25deg); }
  40%  { opacity: 0.35; }
  55%  { opacity: 0.55; }
  70%  { opacity: 0.35; }
  100% { opacity: 0; transform: translate(150%, 150%) rotate(25deg); }
}

@keyframes eliteSplitFade {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes eliteSplitGloss {
  0%   { opacity: 0; transform: translateX(-140%) rotate(12deg); }
  40%  { opacity: 0; }
  55%  { opacity: 0.95; }
  70%  { opacity: 0.60; }
  100% { opacity: 0; transform: translateX(160%) rotate(12deg); }
}

.ulse-elite-split {
  font-family: "Noto Sans", "Roboto", Arial, sans-serif;
  max-width: 1100px;
  margin: 50px auto;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  background: transparent; /* keep only the cards visible */
  border-radius: 28px;
  color: #3a0404;
  box-shadow: none;
  animation: eliteSplitFade 1.1s ease forwards;
  opacity: 0;
}

.ulse-elite-split::before { display: none; }

.ulse-elite-split article {
  display: grid;
  gap: 16px;
  margin: 0;
}

.ulse-elite-split h2 {
  margin: 6px 0 12px;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #6b3802, #552f01, #120808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 12px rgba(255,255,255,0.38),
    0 0 20px rgba(60,40,20,0.35);
  position: relative;
  overflow: hidden;
}

.ulse-elite-split h2::after {
  content: "";
  display: block;
  width: 108px;
  height: 3px;
  background: linear-gradient(90deg, #7c470c, #492b02, #000000);
  box-shadow: 0 0 12px rgba(57, 44, 44, 0.65);
  border-radius: 2px;
  margin-top: 10px;
  transition: width 0.3s ease;
}

.ulse-elite-split h2:hover::after {
  width: 160px;
}

.ulse-elite-split h2::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 200%;
  height: 170%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 40%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.25) 60%,
    transparent 100%
  );
  transform: translateX(-140%) rotate(12deg);
  animation: eliteSplitGloss 3.8s linear infinite;
  pointer-events: none;
}

.ulse-elite-split .ulse-para {
  position: relative;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,248,237,0.96), rgba(245,220,190,0.92)); /* lighter beige with soft coffee tint */
  border: 1px solid rgba(120, 70, 20, 0.22);
  box-shadow:
    0 0 26px rgba(255,255,255,0.08),
    0 14px 36px rgba(0,0,0,0.18),
    inset 0 0 35px rgba(255,255,255,0.08),
    inset 0 0 45px rgba(50,20,5,0.28),
    inset 0 0 75px rgba(0,0,0,0.25); /* subtle edge darkening like the full Elite */
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.ulse-elite-split .ulse-para::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(120, 70, 30, 0.10) 40%,
    rgba(80, 50, 20, 0.18) 50%,
    rgba(150, 100, 50, 0.12) 60%,
    transparent 100%
  );
  filter: blur(1px);
  animation: eliteSplitBeam 7s linear infinite;
  pointer-events: none;
}

.ulse-elite-split .ulse-para:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 36px rgba(255,255,255,0.14),
    0 18px 44px rgba(0,0,0,0.22),
    inset 0 0 38px rgba(255,255,255,0.12),
    inset 0 0 50px rgba(60,28,10,0.32);
}

.ulse-elite-split .ulse-para.para-first {
  font-size: 1.04em;
  font-weight: 700;
  border-color: rgba(120, 70, 20, 0.35);
  box-shadow:
    0 0 42px rgba(255,255,255,0.16),
    0 18px 48px rgba(0,0,0,0.26),
    inset 0 0 36px rgba(255,255,255,0.16),
    inset 0 0 52px rgba(90,45,12,0.35);
}

.ulse-elite-split .ulse-para.para-odd:not(.para-first) {
  background: linear-gradient(140deg, rgba(255, 244, 225, 0.97), rgba(246, 223, 196, 0.93));
}

.ulse-elite-split .ulse-para.para-even {
  background: linear-gradient(140deg, rgba(248, 235, 214, 0.95), rgba(240, 210, 180, 0.9));
}

.ulse-elite-split p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #3f2301;
  text-shadow: 0 0 8px rgba(59, 53, 53, 0.12);
  position: relative;
  z-index: 1;
}

.ulse-elite-split {
  overflow-wrap: break-word;
  word-break: break-word;
}

.ulse-elite-split p,
.ulse-elite-split a {
  overflow-wrap: anywhere;
}

.ulse-elite-split strong,
.ulse-elite-split b,
.ulse-elite-split a {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #8a4c00, #5a2b00, #220e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  color: #2f0e05;
}

.ulse-elite-split strong::before,
.ulse-elite-split a::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 200%;
  height: 170%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.22) 40%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.22) 60%,
    transparent 100%
  );
  transform: translateX(-140%) rotate(12deg);
  animation: eliteSplitGloss 4.6s linear infinite;
  pointer-events: none;
}

.ulse-elite-split a {
  text-decoration: none;
}

.ulse-elite-split a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #0f0e0e, #c6a796);
  box-shadow: 0 0 10px rgba(91, 76, 76, 0.75);
  transition: width 0.3s ease;
}

.ulse-elite-split a:hover::after {
  width: 100%;
}

.ulse-elite-split img {
  width: 100%;
  border-radius: 16px;
  margin: 22px 0 10px;
  box-shadow:
    0 0 25px rgba(255,255,255,0.10),
    0 0 65px rgba(0,0,0,0.82);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ulse-elite-split img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 40px rgba(255,255,255,0.16),
    0 0 88px rgba(0,0,0,0.9);
}
