/***********************************************
   HIJUELOS METALLIC / NEON MASTER STYLE v3.0
   Tropical  Blues  Neon  Glow  Reflection
***********************************************/

/* ====== METALLIC CARD + FRAME BASE ====== */
.tiki-metal-card,
.tiki-frame {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #173c42 0%, #071317 55%, #020609 100%);
    border: 2px solid rgba(0, 255, 240, 0.32);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow:
        0 0 14px rgba(0, 255, 240, 0.45),
        0 0 40px rgba(0, 200, 255, 0.18) inset;
    backdrop-filter: blur(3px);
    transition: all 0.35s ease;
}

.tiki-metal-card:hover,
.tik/* =======================================================
   PORTAL CLICK / HOVER BRIGHT EFFECT
======================================================= */

.tiki-portal-link {
  display: inline-block;
  text-decoration: none;
}

/* Make sure the orb animates smoothly */
.tiki-portal-link .tiki-portal-orb {
  transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

/* Slight brighten on hover */
.tiki-portal-link:hover .tiki-portal-orb {
  box-shadow:
    0 0 30px rgba(0,255,240,0.75),
    0 0 90px rgba(0,255,200,0.40),
    inset 0 0 40px rgba(255,255,255,0.25);
  transform: scale(1.04);
  filter: brightness(1.2);
}

/* Strong flash when actively clicked */
.tiki-portal-link:active .tiki-portal-orb {
  box-shadow:
    0 0 50px rgba(0,255,240,0.95),
    0 0 140px rgba(0,255,220,0.65),
    inset 0 0 60px rgba(255,255,255,0.42);
  transform: scale(1.08);
  filter: brightness(1.45);
}
i-frame:hover {
	
    box-shadow:
        0 0 26px rgba(0, 255, 240, 0.85),
        0 0 70px rgba(0, 255, 200, 0.40) inset;
    transform: translateY(-3px);
}

/* ====== MOVING PLATINUM REFLECTION ON HOVER ====== */
.tiki-metal-card::before,
.tiki-frame::before {
    content: "";
    position: absolute;
    top: -160%;
    left: -160%;
    width: 320%;
    height: 320%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.22) 38%,
        rgba(255,255,255,0.05) 80%
    );
    background-size: 200% 200%;
    background-position: -80% 0%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* When you hover, the reflection swipes across */
.tiki-metal-card:hover::before,
.tiki-frame:hover::before {
    opacity: 0.55;
    animation: hijuelosShine 1.4s linear;
}

@keyframes hijuelosShine {
    0%   { background-position: -80% 0%; }
    100% { background-position: 160% 100%; }
}

/* ====== NEON TITLE GLOW ====== */
.tiki-glow-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #00f7ff;
    text-shadow:
        0 0 6px rgba(0, 255, 240, 0.9),
        0 0 18px rgba(0, 200, 255, 0.75),
        0 0 32px rgba(0, 160, 220, 0.65);
    margin-bottom: 12px;
}

/* ====== SOFT SUBTITLE GLOW ====== */
.tiki-subtitle {
    font-size: 1.02rem;
    color: #b8faff;
    text-shadow: 0 0 6px rgba(0, 255, 240, 0.45);
}

/* ====== METALLIC BUTTON ====== */
.tiki-metal-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(145deg, #0d2b30, #144148);
    border: 1px solid rgba(0, 255, 240, 0.5);
    color: #00f7ff;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 6px rgba(0, 255, 240, 0.7);
    box-shadow: 
        0 0 12px rgba(0, 255, 240, 0.45),
        inset 0 0 14px rgba(0, 255, 240, 0.2);
    transition: 0.3s ease;
}

.tiki-metal-btn:hover {
    background: linear-gradient(145deg, #144148, #0d2b30);
    box-shadow:
        0 0 24px rgba(0, 255, 240, 0.8),
        inset 0 0 22px rgba(0, 255, 240, 0.28);
    transform: scale(1.06);
}

/* ====== METALLIC DIVIDER ====== */
.tiki-divider {
    border-bottom: 1px solid rgba(0, 255, 240, 0.4);
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 255, 240, 0.6);
}

/* ====== OPTIONAL SMALL FOOTNOTE ====== */
.tiki-footnote {
    text-align: center;
    margin-top: 18px;
    color: #9fefff;
    font-size: 0.92rem;
}
/***********************************************
   HIJUELOS PORTAL SPHERE SYSTEM  v1.0
   Glowing Circular Portal  Cloud Core  Hover Pulse
***********************************************/

.tiki-portal {
    width: 220px;
    height: 220px;
    margin: 40px auto;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at 50% 50%,
        rgba(0,255,240,0.18) 0%,
        rgba(0,70,80,0.7) 45%,
        rgba(0,30,36,0.85) 70%,
        rgba(0,10,12,1) 100%
    );
    box-shadow:
        0 0 25px rgba(0,255,240,0.55),
        inset 0 0 40px rgba(0,255,240,0.25),
        0 0 65px rgba(0,255,200,0.35);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease;
}

/* Hover pulse & slight lift */
.tiki-portal:hover {
    transform: scale(1.06);
    box-shadow:
        0 0 40px rgba(0,255,240,0.75),
        inset 0 0 50px rgba(0,255,240,0.32),
        0 0 85px rgba(0,255,200,0.55);
}

/* Cloudy swirl layer */
.tiki-portal::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: radial-gradient(circle,
        rgba(255,255,255,0.16) 0%,
        rgba(0,255,240,0.2) 35%,
        rgba(0,0,0,0) 80%
    );
    opacity: 0.22;
    border-radius: 50%;
    animation: portalCloudSpin 14s linear infinite;
}

@keyframes portalCloudSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Inner content */
.tiki-portal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00f7ff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow:
        0 0 12px rgba(0,255,240,0.9),
        0 0 22px rgba(0,255,240,0.6);
    pointer-events: none;
}
/* ============================
   PORTAL SPHERE  CLOUD GLOW
============================ */
.portal-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.portal-sphere {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    rgba(0,255,240,0.15) 0%, 
    rgba(0,150,150,0.25) 40%,
    rgba(0,80,90,0.45) 70%,
    rgba(0,40,50,0.75) 100%);
  box-shadow: 
    0 0 25px rgba(0,255,240,0.45),
    0 0 45px rgba(0,255,240,0.35) inset,
    0 0 90px rgba(0,200,255,0.25);
  border: 2px solid rgba(0,255,240,0.35);
  backdrop-filter: blur(6px);
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

/* subtle clouds moving inside */
.portal-sphere::before {
  content: "";
  position: absolute;
  width: 260%;
  height: 260%;
  top: -80%;
  left: -80%;
  background: radial-gradient(circle, 
      rgba(255,255,255,0.12) 0%, 
      rgba(255,255,255,0.03) 30%, 
      rgba(255,255,255,0) 70%);
  animation: portalClouds 12s linear infinite;
  opacity: 0.22;
  pointer-events: none;
}

@keyframes portalClouds {
  0% { transform: translate(-20%, -20%) rotate(0deg); }
  100% { transform: translate(20%, 20%) rotate(360deg); }
}

/* hover glow */
.portal-sphere:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 40px rgba(0,255,240,0.7),
    0 0 110px rgba(0,200,255,0.5) inset,
    0 0 140px rgba(0,255,220,0.45);
  border-color: rgba(0,255,240,0.55);
}

/* Text inside */
.portal-core {
  font-size: 1.2rem;
  font-weight: 700;
  color: #dfffff;
  text-shadow:
    0 0 8px rgba(0,255,240,0.8),
    0 0 18px rgba(0,255,240,0.6);
  letter-spacing: 1.5px;
  pointer-events: none;
}
/***********************************************
   TIKI PORTAL ORB
   Floating neon sphere with soft clouds
***********************************************/
.tiki-portal-wrap {
    margin-top: 30px;
    text-align: center;
}

.tiki-portal-orb {
    position: relative;
    width: 190px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 10px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.18), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(0,255,240,0.35), transparent 60%),
        radial-gradient(circle at 50% 50%, #041015, #020608 70%);
    border: 2px solid rgba(0, 255, 240, 0.55);
    box-shadow:
        0 0 16px rgba(0, 255, 240, 0.8),
        0 0 40px rgba(0, 180, 220, 0.45),
        inset 0 0 26px rgba(0, 255, 240, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    animation:
        portalFloat 6s ease-in-out infinite,
        portalGlow 10s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Cloudy / ghost layer */
.tiki-portal-orb::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
    opacity: 0.25;
    mix-blend-mode: screen;
    animation: portalClouds 12s linear infinite;
    pointer-events: none;
}

/* Text inside the orb */
.tiki-portal-label {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #e9ffff;
    text-shadow:
        0 0 6px rgba(0,255,240,0.8),
        0 0 14px rgba(0,200,255,0.7);
    font-family: inherit;
}

.tiki-portal-label span.top {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.tiki-portal-label span.middle {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tiki-portal-label span.bottom {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Hover  make it feel alive */
.tiki-portal-orb:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 0 26px rgba(0,255,240,0.95),
        0 0 70px rgba(0,255,200,0.55),
        inset 0 0 40px rgba(0,255,240,0.35);
}

.tiki-portal-orb:hover::before {
    opacity: 0.4;
}

/* Animations */
@keyframes portalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes portalGlow {
    0%, 100% {
        box-shadow:
            0 0 14px rgba(0, 255, 240, 0.7),
            0 0 38px rgba(0, 180, 220, 0.4),
            inset 0 0 24px rgba(0, 255, 240, 0.18);
    }
    50% {
        box-shadow:
            0 0 22px rgba(0, 255, 240, 0.95),
            0 0 60px rgba(0, 220, 255, 0.55),
            inset 0 0 32px rgba(0, 255, 240, 0.30);
    }
}

@keyframes portalClouds {
    0%   { transform: translate(-12%, -8%) scale(1.0); }
    50%  { transform: translate(10%, 8%) scale(1.05); }
    100% { transform: translate(-12%, -8%) scale(1.0); }
}


/* =======================================================
   PORTAL CLICK FLASH EFFECT
   Adds temporary bright glow when clicked
======================================================= */

.tiki-portal-orb {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tiki-portal-orb.portal-activate {
  box-shadow:
    0 0 40px rgba(0,255,240,0.85),
    0 0 120px rgba(0,255,240,0.55),
    inset 0 0 50px rgba(255,255,255,0.35);
  transform: scale(1.08);
  filter: brightness(1.4);
}
/* Extra portal pop on click */
.tiki-portal-orb {
  transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.tiki-portal-orb.portal-activate {
  box-shadow:
    0 0 40px rgba(0,255,240,0.9),
    0 0 120px rgba(0,255,240,0.6),
    inset 0 0 50px rgba(255,255,255,0.4);
  transform: scale(1.08);
  filter: brightness(1.4) saturate(1.2);
}
/***********************************************
   ELECTRIC SHOCK EFFECT ON HOVER
***********************************************/
.tiki-portal-orb.electric-hover {
    box-shadow:
        0 0 35px rgba(0,255,240,0.95),
        0 0 90px rgba(0,255,200,0.65),
        inset 0 0 55px rgba(0,255,240,0.45),
        inset 0 0 85px rgba(0,140,255,0.35);
    filter: brightness(1.45) saturate(1.3);
    animation: electricZap 0.25s linear;
}

/* Quick zap animation */
@keyframes electricZap {
    0% { transform: scale(1.00); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.02); }
}
/***********************************************
   ELECTRIC HOVER + CLICK EFFECT
***********************************************/
.tiki-portal-orb {
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.tiki-portal-orb.electric-hover,
.tiki-portal-orb.electric-click {
    box-shadow:
        0 0 30px rgba(0,255,240,0.95),
        0 0 75px rgba(0,200,255,0.65),
        inset 0 0 50px rgba(0,255,240,0.45),
        0 0 120px rgba(0,255,200,0.35);
    filter: brightness(1.45) saturate(1.3);
    transform: scale(1.06);
}

/* Electric crackle lines */
.tiki-portal-orb.electric-hover::after,
.tiki-portal-orb.electric-click::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        repeating-radial-gradient(
            circle,
            rgba(0,255,240,0.35) 0%,
            rgba(0,255,240,0.10) 4%,
            transparent 8%
        );
    mix-blend-mode: screen;
    opacity: 0.45;
    animation: electricCrackle 0.25s linear infinite;
    pointer-events: none;
}

@keyframes electricCrackle {
    0%   { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(45deg); }
}
/***********************************************
   ELECTRIC HOVER + CLICK EFFECT
***********************************************/
.tiki-portal-orb {
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.tiki-portal-orb.electric-hover,
.tiki-portal-orb.electric-click {
    box-shadow:
        0 0 30px rgba(0,255,240,0.95),
        0 0 75px rgba(0,200,255,0.65),
        inset 0 0 50px rgba(0,255,240,0.45),
        0 0 120px rgba(0,255,200,0.35);
    filter: brightness(1.45) saturate(1.3);
    transform: scale(1.06);
}

/* Electric crackle lines */
.tiki-portal-orb.electric-hover::after,
.tiki-portal-orb.electric-click::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        repeating-radial-gradient(
            circle,
            rgba(0,255,240,0.35) 0%,
            rgba(0,255,240,0.10) 4%,
            transparent 8%
        );
    mix-blend-mode: screen;
    opacity: 0.45;
    animation: electricCrackle 0.25s linear infinite;
    pointer-events: none;
}

@keyframes electricCrackle {
    0%   { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(45deg); }
}
/* ============================================
   ENTRY LAGOON  FIRST WAVE ROOM STYLES
   ============================================ */

.entry-lagoon-wrap {
  padding: 60px 0 80px;
  background: radial-gradient(circle at top, rgba(0, 159, 165, 0.08), transparent 60%),
              radial-gradient(circle at bottom, rgba(0, 0, 0, 0.75), #02040a);
  color: #f4ffff;
}

/* HERO */
.entry-lagoon-hero {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.entry-lagoon-hero-inner {
  position: relative;
  z-index: 2;
  padding: 24px 20px;
}

.entry-lagoon-title {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(120deg, #00c0b5, #7fffd4, #ffe9a9);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(0, 192, 181, 0.55);
}

.entry-lagoon-tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(224, 255, 255, 0.85);
  margin-bottom: 14px;
}

.entry-lagoon-intro {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(235, 255, 255, 0.88);
}

/* Glow ring behind hero */
.entry-lagoon-glow-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 192, 181, 0.35), transparent 70%);
  filter: blur(6px);
  opacity: 0.7;
}

/* SECTION TITLES */
.entry-lagoon-section-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(230, 255, 255, 0.9);
}

/* PERKS GRID */
.entry-lagoon-perks {
  margin-bottom: 50px;
}

.entry-lagoon-perk-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lagoon-perk-card {
  position: relative;
  padding: 20px 18px 22px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(0, 192, 181, 0.1), rgba(3, 10, 18, 0.96));
  border: 1px solid rgba(0, 192, 181, 0.3);
  box-shadow:
    0 0 14px rgba(0, 192, 181, 0.25),
    0 0 1px rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(10px);
}

.lagoon-perk-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f9ffff;
}

.lagoon-perk-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(220, 245, 245, 0.9);
  margin-bottom: 16px;
}

/* BUTTON STYLES */
.lagoon-ghost-button,
.lagoon-link-button,
.lagoon-toggle-button,
.bartender-vibe-button,
.entry-lagoon-portal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 192, 181, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.22s ease-out;
  text-decoration: none;
}

.lagoon-ghost-button,
.lagoon-toggle-button,
.bartender-vibe-button {
  background: rgba(0, 0, 0, 0.4);
  color: #e8ffff;
}

.lagoon-link-button {
  background: linear-gradient(120deg, #00c0b5, #00ffa9);
  color: #021114;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(0, 192, 181, 0.6);
}

.entry-lagoon-portal-button {
  background: radial-gradient(circle at top, #00c0b5, #006268);
  color: #eaffff;
  box-shadow:
    0 0 22px rgba(0, 192, 181, 0.7),
    0 0 2px rgba(255, 255, 255, 0.25) inset;
}

.lagoon-ghost-button:hover,
.lagoon-toggle-button:hover,
.bartender-vibe-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(0, 192, 181, 0.55);
  border-color: rgba(127, 255, 212, 0.9);
}

.lagoon-link-button:hover,
.entry-lagoon-portal-button:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 26px rgba(0, 255, 220, 0.9);
}

/* AMBIENT CONTROLS */
.lagoon-ambient-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BARTENDER CARD */
.entry-lagoon-bartender {
  margin-bottom: 46px;
}

.lagoon-bartender-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  background: radial-gradient(circle at left, rgba(0, 192, 181, 0.16), rgba(1, 5, 12, 0.98));
  border: 1px solid rgba(0, 192, 181, 0.45);
  box-shadow:
    0 0 20px rgba(0, 192, 181, 0.45),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.bartender-avatar {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #00c0b5, #00272b);
  box-shadow:
    0 0 26px rgba(0, 255, 220, 0.9),
    0 0 2px rgba(255, 255, 255, 0.4) inset;
  position: relative;
  overflow: hidden;
}

.bartender-orb-eyes {
  position: absolute;
  top: 38px;
  left: 18px;
  width: 54px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at left, #ffffff, #66fff2);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.95);
}

.bartender-content h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

#lagoon-bartender-line {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: rgba(225, 250, 250, 0.9);
}

/* NEXT PORTAL SECTION */
.entry-lagoon-next {
  text-align: center;
}

.entry-lagoon-next-inner {
  max-width: 520px;
  margin: 0 auto;
}

.entry-lagoon-next-inner h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.entry-lagoon-next-inner p {
  font-size: 0.95rem;
  color: rgba(215, 240, 240, 0.9);
  margin-bottom: 16px;
}

.entry-lagoon-portal-button {
  min-width: 260px;
}

.lagoon-lock-icon {
  font-size: 1rem;
  opacity: 0.9;
}

.entry-lagoon-note {
  font-size: 0.85rem;
  margin-top: 8px;
  color: rgba(200, 220, 220, 0.85);
}

/* Mobile */
@media (max-width: 900px) {
  .entry-lagoon-perk-grid {
    grid-template-columns: 1fr;
  }

  .lagoon-bartender-card {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .entry-lagoon-wrap {
    padding: 40px 0 60px;
  }

  .entry-lagoon-title {
    font-size: 2rem;
  }

  .lagoon-bartender-card {
    flex-direction: column;
    text-align: center;
  }
}
/* ============================================
   LISTENING VALLEY PORTAL  ELECTRIC VISUALS
   (Keeps current size/layout, only adds effects)
============================================ */

/* Make sure orb can show inner effects */
.tiki-portal-orb {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

/* Electric cloud / wave layer (hidden by default) */
.tiki-portal-orb::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(0,255,240,0.45) 0%,
      rgba(0,255,240,0.12) 4%,
      transparent 8%
    );
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Hover: lift + brighter + electric wave visible */
.tiki-portal-orb:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 30px rgba(0,255,240,0.9),
    0 0 80px rgba(0,255,220,0.6),
    0 0 8px rgba(255,255,255,0.9) inset;
  filter: brightness(1.25) saturate(1.15);
}

.tiki-portal-orb:hover::after {
  opacity: 0.45;
  animation: lagoonElectricCrackle 0.35s linear infinite;
}

/* Click flash: very bright pop when JS adds .clicked */
.tiki-portal-orb.clicked {
  box-shadow:
    0 0 55px rgba(255,255,255,1),
    0 0 130px rgba(0,255,240,1),
    0 0 18px rgba(255,255,255,0.95) inset;
  filter: brightness(1.5) saturate(1.25);
}

/* Little crackle motion for the waves */
@keyframes lagoonElectricCrackle {
  0%   { transform: scale(1.00) rotate(0deg); }
  50%  { transform: scale(1.06) rotate(25deg); }
  100% { transform: scale(1.02) rotate(45deg); }
}
/* ============================================
   LISTENING BADGE IMAGE SIZE
   ============================================ */
.lagoon-badge-img {
  width: 120px;          /* smaller size */
  max-width: 40vw;       /* stay reasonable on small screens */
  height: auto;
  display: block;
  margin: 0 auto 16px;   /* center with a little space below */
  filter: drop-shadow(0 0 14px rgba(0,255,240,0.6));
}
/* ============================================
   LAGOON ROOM  CARDS & BUTTON STYLES
   ============================================ */

.lagoon-room {
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px 16px;
  color: #f5f5f5;
}

/* Hero title reflection bar */
.lagoon-hero-bar {
  width: 210px;
  height: 4px;
  margin: 0 auto 4px auto;
  background: linear-gradient(90deg, rgba(0,255,255,0) 0%, #00c0b5 50%, rgba(0,255,255,0) 100%);
  box-shadow: 0 0 18px rgba(0,255,255,0.8);
  border-radius: 999px;
}
.lagoon-hero-bar-reflect {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(0,255,255,0) 0%, rgba(0,192,181,0.6) 50%, rgba(0,255,255,0) 100%);
  opacity: 0.6;
}

/* Badge block */
.lagoon-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 16px;
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(0,192,181,0.25), rgba(0,0,0,0.85));
  border: 1px solid rgba(0,192,181,0.60);
  box-shadow:
    0 0 25px rgba(0,255,255,0.35),
    0 0 60px rgba(0,192,181,0.45);
}
.lagoon-badge-shell {
  padding: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), rgba(0,0,0,0.9));
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
  display: inline-block;
}
.lagoon-badge-img {
  width: 120px;
  max-width: 40vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(0,255,255,0.7));
}

/* Teaser cards */
.lagoon-card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.lagoon-card {
  flex: 1 1 260px;
  max-width: 330px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,192,181,0.6);
  box-shadow: 0 0 18px rgba(0,192,181,0.35);
  transition: all 0.18s ease-out;
}
.lagoon-card:hover {
  box-shadow: 0 0 30px rgba(0,255,255,0.9);
  transform: translateY(-4px);
  border-color: rgba(0,255,255,0.9);
}

/* Playlist frame */
.lagoon-playlist-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,192,181,0.45);
  max-width: 700px;
  margin: 0 auto;
}
.lagoon-playlist-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Grand metallic/glow ambient button */
.lagoon-ambient-btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #00f5ff 0%, #00c0b5 40%, #008a7f 100%);
  color: #ffffff;
  font-size: 1.05rem;
  border-radius: 999px;
  box-shadow:
    0 0 25px rgba(0,255,255,0.9),
    0 0 45px rgba(0,192,181,0.8);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.5);
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
  transition: all 0.2s ease-out;
}
.lagoon-ambient-btn:hover {
  box-shadow:
    0 0 40px rgba(0,255,255,1),
    0 0 65px rgba(0,192,181,0.95);
  transform: translateY(-2px) scale(1.02);
}

/* Responsive tweak for narrower screens */
@media (max-width: 768px) {
  .lagoon-room {
    padding: 22px 12px;
  }
  .lagoon-badge-wrap {
    text-align: center;
  }
}
/* ============================
   LISTENING LAGOON STYLES
   ============================ */

.lagoon-room {
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px 16px;
  color: #f5f5f5;
}

.lagoon-card-row,
.lagoon-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.lagoon-card {
  flex: 1 1 260px;
  max-width: 330px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 192, 181, 0.6);
  box-shadow: 0 0 18px rgba(0, 192, 181, 0.35);
  transition: all 0.18s ease-out;
}

.lagoon-card:hover {
  box-shadow: 0 0 35px rgba(0, 255, 255, 1);
  transform: translateY(-4px);
  border-color: rgba(0, 255, 255, 1);
}

.lagoon-playlist-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 192, 181, 0.45);
  max-width: 700px;
  margin: 0 auto;
}

.lagoon-playlist-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lagoon-hero-bar {
  width: 210px;
  height: 4px;
  margin: 0 auto 4px auto;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 255, 0) 0%,
    #00c0b5 50%,
    rgba(0, 255, 255, 0) 100%
  );
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.8);
  border-radius: 999px;
}

.lagoon-hero-bar-reflect {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 255, 0) 0%,
    rgba(0, 192, 181, 0.6) 50%,
    rgba(0, 255, 255, 0) 100%
  );
  opacity: 0.6;
}

.lagoon-badge-img {
  width: 120px;
  max-width: 40vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(0, 255, 255, 0.7));
}

@media (max-width: 768px) {
  .lagoon-room {
    padding: 22px 12px;
  }
}
/* Floating emoji bar for Lagoon playlist  CENTERED FIX */
.lagoon-emoji-marquee {
  width: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.6rem;
  margin: 10px auto 18px auto;
  opacity: 0.9;
  animation: lagoon-emoji-scroll 18s linear infinite;
  text-shadow: 0 0 10px rgba(0,255,255,0.7);
}

@keyframes lagoon-emoji-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.lagoon-emoji-marquee {
  ...
  animation: lagoon-emoji-scroll 35s linear infinite;
  ...
}
.lagoon-emoji-marquee:hover {
  animation-play-state: paused;
}
/* ===========================================
   METALLIC FOOTER  HIJUELOS SIGNATURE
   =========================================== */

.hijuelos-footer {
  background: #000;
  border-top: 1px solid rgba(0, 255, 200, 0.2);
  padding: 16px 8px;
  text-align: center;
}

.hijuelos-footer .wojo-grid {
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #9fffe8;
}

/* Metallic text look */
.hijuelos-footer span,
.hijuelos-footer {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #8fffe6 25%,
    #0a8f8f 55%,
    #002222 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 6px rgba(0,255,220,0.4),
    0 0 12px rgba(0,255,200,0.18);
}

/* Slight shimmer effect */
.hijuelos-footer:hover {
  text-shadow:
    0 0 12px rgba(0,255,220,0.5),
    0 0 20px rgba(0,255,220,0.2);
}

/* Mobile friendly */
@media (max-width: 768px) {
  .hijuelos-footer .wojo-grid {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* ======================================
   FOOTER  MOBILE READABILITY FIX ONLY
   ====================================== */

@media (max-width: 768px) {

  .wojo-grid span {
    font-size: 13px !important;
    line-height: 1.6 !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    padding: 8px 6px !important;
  }

  /* Subtle contrast boost for mobile screens */
  .wojo-grid span {
    text-shadow:
      0 0 8px rgba(0,255,220,0.6),
      0 0 16px rgba(0,255,200,0.3) !important;
  }
}
/* ==========================================
   MOBILE NAV CLEANUP (TOP MENU ONLY)
   ========================================== */
@media (max-width: 768px) {

  /* General header/nav wrapper  keeps it slimmer */
  header,
  .main-header,
  .top-header {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  /* Nav container  remove big solid block feel */
  header nav,
  .main-nav,
  .wojo.menu {
    background: rgba(0, 0, 0, 0.75) !important;  /* subtle dark overlay */
    border-bottom: 1px solid rgba(0, 255, 200, 0.3) !important;
  }

  /* Menu list  tighten spacing */
  header nav ul,
  .main-nav ul,
  .wojo.menu ul {
    margin: 0 !important;
    padding: 4px 0 !important;
  }

  /* Each item  less padding, smaller text */
  header nav ul li,
  .main-nav ul li,
  .wojo.menu ul li {
    margin: 0 !important;
  }

  header nav ul li a,
  .main-nav ul li a,
  .wojo.menu ul li a {
    display: block !important;
    padding: 8px 14px !important;     /* was probably bigger before */
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-align: left !important;

    color: #e7fffb !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(0, 255, 200, 0.12) !important;
    background: transparent !important;
  }

  /* Last link  remove bottom border so it doesn't look like a big box */
  header nav ul li:last-child a,
  .main-nav ul li:last-child a,
  .wojo.menu ul li:last-child a {
    border-bottom: none !important;
  }
}
@media (max-width: 768px) {

  /* Tighten the "button" style menu items on mobile */
  .wojo.menu .button,
  .wojo.menu .wojo.button,
  header nav .button,
  header nav .wojo.button {
    padding: 6px 10px !important;      /* less tall */
    margin: 3px 4px !important;        /* less outer space */
    font-size: 13px !important;
    line-height: 1.3 !important;
    border-radius: 4px !important;     /* smaller pill */
    min-height: 0 !important;

    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(0, 255, 200, 0.35) !important;
  }

  /* If your links themselves are behaving like big blocks, slim them too */
  .wojo.menu a.item,
  header nav a,
  .main-nav a {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    line-height: 1.3 !important;
  }

  /* Reduce extra padding on the overall menu area */
  .wojo.menu,
  header nav,
  .main-nav {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
/* ==========================================
   MOBILE NAV  SUPER SLIM TEXT MODE
   (Top menu only, mobile only)
   ========================================== */
@media (max-width: 768px) {

  /* Make the whole nav area slimmer */
  header .wojo.menu,
  .top-header .wojo.menu,
  header nav,
  .main-nav {
    background: rgba(0, 0, 0, 0.65) !important;
    border-bottom: 1px solid rgba(0, 255, 200, 0.25) !important;
    padding: 2px 0 !important;
  }

  /* Remove chunky button look from menu items */
  header .wojo.menu a.item,
  header nav a,
  .main-nav a {
    display: block !important;
    padding: 6px 10px !important;
    margin: 0 !important;

    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    text-align: left !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* If any items are styled as "buttons", flatten them */
  header .wojo.menu .button,
  header .wojo.menu .wojo.button,
  header nav .button,
  header nav .wojo.button {
    padding: 6px 10px !important;
    margin: 0 !important;
    font-size: 13px !important;
    border-radius: 0 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Light separators between links instead of big blocks */
  header .wojo.menu a.item + a.item,
  header nav a + a,
  .main-nav a + a {
    border-top: 1px solid rgba(0, 255, 200, 0.18) !important;
  }
}
/* ==========================================
   FINAL MOBILE NAV SLIM OVERRIDE
   (Top menu only, mobile only)
   ========================================== */
@media (max-width: 768px) {

  /* Remove the heavy block background on mobile */
  header .wojo.menu,
  .top-header .wojo.menu,
  header nav,
  .main-nav {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  /* Make each link slimmer and shorter */
  header .wojo.menu a.item,
  header nav a,
  .main-nav a {
    display: block !important;
    padding: 4px 10px !important;
    margin: 0 !important;

    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    text-align: left !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Extra safety: flatten any "button" menu items */
  header .wojo.menu .button,
  header .wojo.menu .wojo.button,
  header nav .button,
  header nav .wojo.button {
    padding: 4px 10px !important;
    margin: 0 !important;
    font-size: 13px !important;
    border-radius: 0 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}
/* ==========================================
   MOBILE NAV  COMPACT FLEX ROW
   (final override)
   ========================================== */
@media (max-width: 768px) {

  /* Make the nav container itself tight */
  header .wojo.menu,
  .top-header .wojo.menu,
  header nav,
  .main-nav {
    padding: 2px 0 !important;
    margin: 0 !important;
  }

  /* Turn the menu list into a compact flex row */
  header .wojo.menu ul,
  .main-nav ul,
  header nav ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  /* Each item becomes a small inline pill, not a tall row */
  header .wojo.menu ul li,
  .main-nav ul li,
  header nav ul li {
    display: inline-flex !important;
    margin: 0 4px 2px 4px !important;
    padding: 0 !important;
  }

  /* Links themselves: slim, no borders, no box look */
  header .wojo.menu a.item,
  header nav a,
  .main-nav a {
    padding: 4px 6px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Flatten any "button" style items that sneak in */
  header .wojo.menu .button,
  header .wojo.menu .wojo.button,
  header nav .button,
  header nav .wojo.button {
    padding: 4px 6px !important;
    margin: 0 4px 2px 4px !important;
    font-size: 13px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}
/* ==========================================
   MOBILE HEADER  EXTRA TIGHT TRIM
   ========================================== */
@media (max-width: 768px) {

  /* Shrink padding on the whole header */
  header,
  .main-header,
  .top-header {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  /* Tighten logo area if it's contributing to height */
  header .logo,
  .top-header .logo {
    margin: 2px auto !important;
    transform: scale(0.92);
  }

  /* Compact the nav container */
  header .wojo.menu,
  header nav,
  .main-nav {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
    min-height: 0 !important;
  }

  /* Slightly reduce link height more */
  header .wojo.menu a.item,
  header nav a,
  .main-nav a {
    padding: 3px 6px !important;
    font-size: 12.5px !important;
    line-height: 1.15 !important;
  }

  /* Optional: reduce line divider thickness */
  header .wojo.menu,
  header nav {
    border-bottom: 0.5px solid rgba(0,255,200,0.2) !important;
  }
}
/* ==========================================
   MOBILE NAV  SUBTLE LINK ROTATION
   ========================================== */
@media (max-width: 768px) {

  /* Smooth movement */
  header .wojo.menu a,
  header nav a,
  .main-nav a {
    display: inline-block;
    transition: transform 0.35s ease, text-shadow 0.35s ease;
  }

  /* Gentle tilt on hover / tap */
  header .wojo.menu a:hover,
  header nav a:hover,
  .main-nav a:hover {
    transform: rotate(-2deg) scale(1.03);
    text-shadow: 0 0 8px rgba(0,255,220,0.5);
  }

}
/* ==========================================
   MOBILE NAV  COOL NEON LINK GLOW
   ========================================== */
@media (max-width: 768px) {

  header .wojo.menu a,
  header nav a,
  .main-nav a {
    color: #d9ffff !important;
    text-shadow:
      0 0 4px rgba(0,255,220,0.4),
      0 0 10px rgba(0,200,200,0.2);

    transition: 
      transform 0.35s ease,
      text-shadow 0.35s ease,
      color 0.35s ease;
  }

  /* Hover / Tap Glow */
  header .wojo.menu a:hover,
  header nav a:hover,
  .main-nav a:hover {
    color: #ffffff !important;

    text-shadow:
      0 0 6px rgba(0,255,240,0.9),
      0 0 14px rgba(0,255,220,0.7),
      0 0 28px rgba(0,120,255,0.5);

    transform: rotate(-2deg) scale(1.05);
  }
}
/* --- ABOUT JOE  SLIM SIDE REFLECT CARD --- */
.about-joe-reflect {
   margin: 1.2rem 0;
   padding: 14px 16px;
   max-width: 520px;            /* keeps it small */
}

/* Side layout with image + text */
.about-joe-inner {
   display: flex;
   align-items: center;
   gap: 14px;
}

/* Small badge-style image */
.about-joe-image {
   flex: 0 0 72px;
   width: 72px;
   height: 72px;
   border-radius: 12px;
   overflow: hidden;
   box-shadow:
      0 0 10px rgba(0,255,220,0.55),
      0 0 22px rgba(0,192,181,0.55);
}

.about-joe-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 10px;
}

/* Compact text block */
.about-joe-content {
   flex: 1;
   color: #dff7f8;
}

.about-joe-label {
   font-size: .68rem;
   letter-spacing: .14em;
   text-transform: uppercase;
   color: #7ee4ec;
   margin: 0 0 2px 0;
}

.about-joe-title {
   font-size: 1rem;
   color: #aef9ff;
   margin: 0 0 4px 0;
   letter-spacing: .04em;
}

.about-joe-content p {
   font-size: .8rem;
   line-height: 1.4;
   margin: 0 0 6px 0;
   color: #b9e5e8;
}

/* Smaller, classy link button for this block only */
.tiki-metal-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   padding: 6px 14px;
   border-radius: 999px;
   background: linear-gradient(120deg, #00b3aa, #10b981);
   color: #031015;
   text-decoration: none;
   font-size: .75rem;
   font-weight: 600;
   box-shadow:
      0 0 10px rgba(0,255,230,0.8),
      0 0 20px rgba(0,192,181,0.7);
   transition: all 0.2s ease-in-out;
}

.tiki-metal-btn:hover {
   transform: translateY(-1px);
   box-shadow:
      0 0 16px rgba(0,255,230,1),
      0 0 32px rgba(0,192,181,0.95);
}

/* On big screens, slide it to the right like a side panel */
@media (min-width: 900px) {
   .about-joe-reflect {
      margin-left: auto;
   }
}

/* On mobile, let it breathe full-width */
@media (max-width: 768px) {
   .about-joe-inner {
      flex-direction: row;
      align-items: center;
   }
}
/* ============================================
   ABOUT JOE  REFLECTIVE METAL SIDE CARD
============================================ */
.tiki-metal-card.about-joe-reflect {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(34,211,238,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(16,185,129,0.35), transparent 60%),
    linear-gradient(135deg, #02070b, #04131a);
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 230, 0.65);
  box-shadow:
    0 0 24px rgba(0, 255, 230, 0.45),
    0 18px 40px rgba(0, 0, 0, 0.9);
  padding: 18px 20px;
}

/* moving light sweep */
.tiki-metal-card.about-joe-reflect::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0.35),
    transparent 30%,
    transparent 70%,
    rgba(0,255,230,0.45)
  );
  opacity: 0.7;
  pointer-events: none;
  animation: aboutJoeShine 7s ease-in-out infinite;
}

/* inner layout */
.about-joe-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: center;
}

.about-joe-image img {
  width: 82px;
  height: auto;
  border-radius: 50%;
  display: block;
  box-shadow:
    0 0 14px rgba(34,211,238,0.7),
    0 0 30px rgba(15,23,42,0.9);
}

.about-joe-content {
  flex: 1;
}

.about-joe-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ee4ec;
  margin-bottom: 2px;
}

.about-joe-title {
  font-size: 1rem;
  color: #e9feff;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-joe-content p {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: #b9dfe4;
  line-height: 1.5;
}

/* reuse your metallic button vibe */
.tiki-metal-btn {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,230,0.7);
  background: radial-gradient(circle at top, #0b2f34, #021014 70%);
  color: #dffefe;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 0 14px rgba(0,255,230,0.5),
    0 10px 22px rgba(0,0,0,0.9);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.tiki-metal-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(0,255,230,0.8),
    0 14px 28px rgba(0,0,0,1);
}

/* shared shine motion */
@keyframes aboutJoeShine {
  0%   { transform: translateX(-8%) translateY(-4%); }
  50%  { transform: translateX(8%) translateY(4%); }
  100% { transform: translateX(-8%) translateY(-4%); }
}

@media (max-width: 640px) {
  .about-joe-inner {
    flex-direction: row;
    align-items: flex-start;
  }
}
/* MOBILE FOOTER TAG SHARPENING */
@media (max-width: 768px) {
  .footer-tags a,
  .footer-tags span,
  .footer-tag {
    text-shadow:
      0 0 2px rgba(0, 255, 230, 0.4),
      0 0 5px rgba(0, 255, 230, 0.2);

    filter: none !important;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    transform: translateZ(0);
  }
}

@media (max-width: 480px) {
  .footer-tags a,
  .footer-tags span,
  .footer-tag {
    text-shadow:
      0 0 1px rgba(0, 255, 230, 0.5),
      0 0 3px rgba(0, 255, 230, 0.2);
  }
}
/* MOBILE FOOTER TAG SHARPENING */
@media (max-width: 768px) {
  .footer-tags a,
  .footer-tags span,
  .footer-tag {
    text-shadow:
      0 0 2px rgba(0, 255, 230, 0.4),
      0 0 5px rgba(0, 255, 230, 0.2);

    filter: none !important;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    transform: translateZ(0);
  }
}

@media (max-width: 480px) {
  .footer-tags a,
  .footer-tags span,
  .footer-tag {
    text-shadow:
      0 0 1px rgba(0, 255, 230, 0.5),
      0 0 3px rgba(0, 255, 230, 0.2);
  }
}
/* ==== FOOTER TEXT SHARPENING FIX (MOBILE) ==== */
@media (max-width: 900px) {

  footer,
  footer *,
  .footer,
  .footer-inner {
    filter: none !important;
    backdrop-filter: none !important;
    transform: none !important;
  }

  .footer-tags,
  .footer-tags a,
  .footer-tags span,
  .footer-tag {
    text-shadow: none !important;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    filter: none !important;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}

@media (max-width: 480px) {

  .footer-tags,
  .footer-tags a,
  .footer-tags span,
  .footer-tag {
    letter-spacing: 0.04em !important;
    text-shadow:
      0 0 1px rgba(0,255,230,0.25) !important;
  }
}
.tiki-access-message {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 24px 28px;
  text-align: center;
  border-radius: 16px;
  background: radial-gradient(circle at top left, #0a2328 0%, #020c0f 60%, #000 100%);
  border: 1px solid rgba(0, 255, 230, 0.5);
  box-shadow:
    0 0 14px rgba(0, 255, 230, 0.4),
    0 0 28px rgba(0, 180, 200, 0.25);
}

.portal-button {
  display: inline-block;
  margin: 8px 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 230, 0.8);
  text-decoration: none;
}
/*********************************************
 * DASHBOARD  MEMBERSHIP TEXT COLOR FIX
 *********************************************/

/* Main title (price + level name) */
.wojo.cards .card h4 {
  color: #aef9ff !important; /* Soft neon teal */
  text-shadow: 0 0 6px rgba(0, 255, 240, 0.35);
  font-weight: 600;
}

/* Description + smaller text */
.wojo.cards .card p,
.wojo.cards .card .text-size-small {
  color: #9fbec3 !important; /* Soft readable ocean gray */
  text-shadow: 0 0 4px rgba(0, 255, 240, 0.08);
}

/* Kill that ugly Wojo yellow completely */
.wojo.cards .card * {
  color: inherit !important;
}

/* Stronger glow on active membership */
.wojo.cards .card.active h4 {
  color: #00ffe0 !important;
  text-shadow:
    0 0 6px rgba(0, 255, 230, 0.6),
    0 0 14px rgba(0, 255, 230, 0.4);
}
