/* =============================================
   FRUTIGER AERO — Personal Portfolio Theme
   Andre Moura | andremoura.ca
   Sky & Ocean Edition
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; }

/* ─── BODY / SKY→OCEAN BACKGROUND ─────────── */
body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Nunito', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 400;
  background: linear-gradient(180deg,
    #b8e8ff 0%,
    #62c8f0 18%,
    #1aaee8 35%,
    #0d96d4 44%,
    #0882b8 54%,
    #056a9a 66%,
    #04527a 80%,
    #03395c 100%);
  background-attachment: fixed;
  color: #0d2b3e;
  overflow-x: hidden;
  position: relative;
}

/* ─── LIGHT RAYS (sunburst from top) ──────── */
.light-rays {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 18% -8%,  rgba(255,255,255,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 82% -6%,  rgba(200,240,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 50% 0%,   rgba(255,255,255,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 35% 20% at 50% 42%,  rgba(255,255,255,0.07) 0%, transparent 40%);
}

/* ─── WATER SURFACE SHIMMER ──────────────── */
.water-line {
  position: fixed;
  top: 43%;
  left: 0;
  width: 100%;
  height: 5px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 15%,
    rgba(255,255,255,0.65) 35%,
    rgba(255,255,255,0.90) 50%,
    rgba(255,255,255,0.65) 65%,
    rgba(255,255,255,0.25) 85%,
    transparent 100%);
  filter: blur(1.5px);
  animation: waterShimmer 5s ease-in-out infinite;
}

.water-line::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.12) 70%,
    transparent 100%);
}

@keyframes waterShimmer {
  0%, 100% { opacity: 0.65; transform: scaleX(1); }
  50%       { opacity: 1;    transform: scaleX(1.015); }
}

/* ─── CLOUDS ──────────────────────────────── */
.clouds {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 46%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255,255,255,0.90);
  border-radius: 60px;
  animation: driftCloud linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.90);
  border-radius: 50%;
}

.cloud-1 {
  width: 220px; height: 48px;
  top: 8%; left: -250px;
  animation-duration: 60s; animation-delay: 0s;
}
.cloud-1::before { width: 88px;  height: 74px;  top: -40px; left: 30px; }
.cloud-1::after  { width: 110px; height: 64px;  top: -32px; left: 95px; }

.cloud-2 {
  width: 150px; height: 38px;
  top: 18%; left: -180px;
  animation-duration: 75s; animation-delay: -22s; opacity: 0.78;
}
.cloud-2::before { width: 66px; height: 58px; top: -30px; left: 20px; }
.cloud-2::after  { width: 82px; height: 50px; top: -25px; left: 62px; }

.cloud-3 {
  width: 280px; height: 58px;
  top: 4%; left: -310px;
  animation-duration: 95s; animation-delay: -44s; opacity: 0.68;
}
.cloud-3::before { width: 108px; height: 90px; top: -48px; left: 44px; }
.cloud-3::after  { width: 128px; height: 78px; top: -40px; left: 118px; }

.cloud-4 {
  width: 190px; height: 44px;
  top: 24%; left: -220px;
  animation-duration: 68s; animation-delay: -12s; opacity: 0.72;
}
.cloud-4::before { width: 75px; height: 68px; top: -34px; left: 28px; }
.cloud-4::after  { width: 95px; height: 58px; top: -30px; left: 78px; }

@keyframes driftCloud {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 350px)); }
}

/* ─── BUBBLES (soap-style with specular) ─── */
.bubbles {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -180px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.58);
  box-shadow:
    inset -5px -5px 12px rgba(100,190,255,0.18),
    inset  3px  3px  8px rgba(255,255,255,0.38),
    0 0 14px rgba(255,255,255,0.10);
  animation: floatUp linear infinite;
  will-change: transform;
}

/* specular highlight arc (top-left) */
.bubble::before {
  content: '';
  position: absolute;
  top: 11%; left: 15%;
  width: 33%; height: 21%;
  background: radial-gradient(ellipse,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.25) 55%,
    transparent 100%);
  border-radius: 50%;
  transform: rotate(-35deg);
}

/* secondary reflection (bottom-right) */
.bubble::after {
  content: '';
  position: absolute;
  bottom: 17%; right: 17%;
  width: 17%; height: 11%;
  background: radial-gradient(ellipse,
    rgba(255,255,255,0.60) 0%,
    transparent 100%);
  border-radius: 50%;
}

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0);      opacity: 0; }
  5%   { opacity: 0.85; }
  50%  { transform: translateY(-52vh) translateX(9px); }
  82%  { opacity: 0.38; }
  100% { transform: translateY(-115vh) translateX(-6px); opacity: 0; }
}

.bubble:nth-child(1)  { width: 28px;  height: 28px;  left: 5%;   animation-duration: 9s;  animation-delay: 0s;   }
.bubble:nth-child(2)  { width: 16px;  height: 16px;  left: 12%;  animation-duration: 12s; animation-delay: 1.5s; }
.bubble:nth-child(3)  { width: 55px;  height: 55px;  left: 20%;  animation-duration: 15s; animation-delay: 3s;   }
.bubble:nth-child(4)  { width: 21px;  height: 21px;  left: 30%;  animation-duration: 10s; animation-delay: 0.5s; }
.bubble:nth-child(5)  { width: 82px;  height: 82px;  left: 40%;  animation-duration: 20s; animation-delay: 2s;   }
.bubble:nth-child(6)  { width: 13px;  height: 13px;  left: 50%;  animation-duration: 8s;  animation-delay: 4s;   }
.bubble:nth-child(7)  { width: 40px;  height: 40px;  left: 58%;  animation-duration: 14s; animation-delay: 1s;   }
.bubble:nth-child(8)  { width: 24px;  height: 24px;  left: 65%;  animation-duration: 11s; animation-delay: 5s;   }
.bubble:nth-child(9)  { width: 112px; height: 112px; left: 72%;  animation-duration: 22s; animation-delay: 0s;   }
.bubble:nth-child(10) { width: 15px;  height: 15px;  left: 80%;  animation-duration: 9s;  animation-delay: 2.5s; }
.bubble:nth-child(11) { width: 44px;  height: 44px;  left: 88%;  animation-duration: 16s; animation-delay: 3.5s; }
.bubble:nth-child(12) { width: 19px;  height: 19px;  left: 95%;  animation-duration: 10s; animation-delay: 1s;   }

/* ─── FISH ───────────────────────────────── */
.fish-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Fish emoji face LEFT by default, so swimLeft needs no flip.
   swimRight flips them via scaleX(-1) inside the keyframe. */
.fish {
  position: absolute;
  line-height: 1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

@keyframes swimRight {
  0%   { transform: translateX(-150px) translateY(0)     scaleX(-1); opacity: 0; }
  6%   { opacity: 0.82; }
  33%  { transform: translateX(33vw)   translateY(-14px) scaleX(-1); }
  66%  { transform: translateX(66vw)   translateY(7px)   scaleX(-1); }
  94%  { opacity: 0.82; }
  100% { transform: translateX(calc(100vw + 150px)) translateY(0) scaleX(-1); opacity: 0; }
}

@keyframes swimLeft {
  0%   { transform: translateX(calc(100vw + 150px)) translateY(0); opacity: 0; }
  6%   { opacity: 0.82; }
  33%  { transform: translateX(66vw) translateY(-11px); }
  66%  { transform: translateX(33vw) translateY(6px); }
  94%  { opacity: 0.82; }
  100% { transform: translateX(-150px) translateY(0); opacity: 0; }
}

/* Positions and sizes */
.fish-1  { top: 66%; font-size: 2.2rem; animation-name: swimRight; animation-duration: 24s; animation-delay: 0s;    }
.fish-2  { top: 75%; font-size: 1.6rem; animation-name: swimLeft;  animation-duration: 30s; animation-delay: -9s;   }
.fish-3  { top: 40%; font-size: 2.8rem; animation-name: swimRight; animation-duration: 38s; animation-delay: -16s;  }
.fish-4  { top: 83%; font-size: 1.4rem; animation-name: swimLeft;  animation-duration: 26s; animation-delay: -5s;   }
.fish-5  { top: 55%; font-size: 1.2rem; animation-name: swimRight; animation-duration: 19s; animation-delay: -3s;   }
.fish-6  { top: 70%; font-size: 3.2rem; animation-name: swimLeft;  animation-duration: 44s; animation-delay: -22s;  }
.fish-7  { top: 48%; font-size: 1.8rem; animation-name: swimLeft;  animation-duration: 32s; animation-delay: -12s;  }

/* ─── SPARKLES ───────────────────────────── */
.sparkles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.sparkle {
  position: absolute;
  background: white;
  clip-path: polygon(
    50% 0%, 54% 43%,
    100% 50%, 54% 57%,
    50% 100%, 46% 57%,
    0% 50%, 46% 43%
  );
  animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0;   transform: scale(0)   rotate(0deg); }
  40%, 60% { opacity: 1;   transform: scale(1)   rotate(45deg); }
}

.sparkle-1  { top: 10%; left: 7%;   width: 12px; height: 12px; animation-duration: 2.6s; animation-delay: 0s;    }
.sparkle-2  { top: 22%; left: 24%;  width: 7px;  height: 7px;  animation-duration: 3.4s; animation-delay: 0.9s;  }
.sparkle-3  { top: 7%;  left: 46%;  width: 14px; height: 14px; animation-duration: 2.9s; animation-delay: 1.6s;  }
.sparkle-4  { top: 16%; left: 67%;  width: 8px;  height: 8px;  animation-duration: 3.6s; animation-delay: 0.4s;  }
.sparkle-5  { top: 32%; left: 82%;  width: 10px; height: 10px; animation-duration: 2.3s; animation-delay: 1.3s;  }
.sparkle-6  { top: 5%;  left: 91%;  width: 13px; height: 13px; animation-duration: 4.1s; animation-delay: 2.1s;  }
.sparkle-7  { top: 44%; left: 14%;  width: 7px;  height: 7px;  animation-duration: 3.1s; animation-delay: 0.6s;  }
.sparkle-8  { top: 38%; left: 56%;  width: 9px;  height: 9px;  animation-duration: 2.7s; animation-delay: 1.9s;  }
.sparkle-9  { top: 60%; left: 35%;  width: 6px;  height: 6px;  animation-duration: 3.8s; animation-delay: 0.2s;  }
.sparkle-10 { top: 72%; left: 72%;  width: 8px;  height: 8px;  animation-duration: 2.4s; animation-delay: 1.1s;  }

/* ─── PAGE CONTENT ───────────────────────── */
.page-content {
  position: relative;
  z-index: 1;
}

/* ─── GLASS PANEL ────────────────────────── */
.glass-panel {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 22px;
  box-shadow:
    0 8px 32px rgba(0,70,160,0.22),
    0 2px 8px rgba(0,120,210,0.16),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(0,100,190,0.08);
  position: relative;
  overflow: hidden;
}

/* Gloss sheen top half */
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.34) 0%,
    rgba(255,255,255,0.04) 100%);
  border-radius: 22px 22px 0 0;
  pointer-events: none;
  z-index: 1;
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.14) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.58);
  box-shadow:
    0 2px 24px rgba(0,70,160,0.16),
    inset 0 1px 0 rgba(255,255,255,0.62);
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(0,220,255,0.85), 0 1px 4px rgba(0,40,100,0.45);
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: #e0faff !important;
  text-shadow: 0 0 28px rgba(0,235,255,1.0), 0 1px 4px rgba(0,40,100,0.45);
}

.nav-link {
  color: rgba(255,255,255,0.94) !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  border-radius: 20px;
  transition: all 0.2s ease;
  text-shadow: 0 1px 4px rgba(0,40,100,0.30);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255,255,255,0.20);
  text-shadow: 0 0 14px rgba(160,235,255,0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.52);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO SECTION ───────────────────────── */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 66px);
  padding: 40px 20px;
}

.hero-card {
  max-width: 680px;
  width: 100%;
  padding: 54px 58px;
  text-align: center;
}

.hero-card h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 0 32px rgba(0,228,255,0.70),
    0 0 64px rgba(0,190,255,0.32),
    0 2px 8px rgba(0,50,120,0.50);
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.hero-card p {
  font-size: 1.07rem;
  color: rgba(232,250,255,0.95);
  line-height: 1.78;
  margin-bottom: 38px;
  text-shadow: 0 1px 5px rgba(0,40,100,0.28);
}

/* ─── AERO BUTTONS ───────────────────────── */
.btn-aero {
  display: inline-block;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.78) 0%,
    rgba(158,232,252,0.62) 49%,
    rgba(0,178,232,0.88) 50%,
    rgba(0,128,200,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 32px;
  color: #ffffff !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  text-shadow: 0 1px 3px rgba(0,50,130,0.62);
  box-shadow:
    0 4px 20px rgba(0,148,224,0.52),
    inset 0 1px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(0,80,170,0.22);
  padding: 12px 34px;
  margin: 6px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

.btn-aero:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.90) 0%,
    rgba(178,242,255,0.72) 49%,
    rgba(22,196,248,0.94) 50%,
    rgba(0,148,218,0.98) 100%);
  box-shadow:
    0 6px 30px rgba(0,208,255,0.72),
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -1px 0 rgba(0,80,170,0.22);
  transform: translateY(-2px);
}

.btn-aero:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0,148,224,0.42), inset 0 1px 0 rgba(255,255,255,0.72);
}

/* ─── PAGE HEADER (inner pages) ──────────── */
.page-header-card {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 42px 54px;
}

.page-header-card h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 26px rgba(0,218,255,0.62), 0 2px 7px rgba(0,40,120,0.42);
  margin-bottom: 8px;
}

.page-header-card .subtitle {
  color: rgba(210,248,255,0.90);
  font-size: 1.03rem;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,40,100,0.28);
}

/* ─── CONTENT CARD ───────────────────────── */
.content-card {
  max-width: 860px;
  width: 100%;
  margin: 0 auto 28px;
  padding: 38px 54px;
}

.content-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c8eeff;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  text-shadow: 0 0 12px rgba(0,210,255,0.40);
}

.content-card p,
.content-card li {
  color: rgba(228,250,255,0.96);
  font-size: 0.99rem;
  line-height: 1.80;
  text-shadow: 0 1px 3px rgba(0,30,80,0.22);
}

/* ─── RESUME TIMELINE ────────────────────── */
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00eeff, #008ecc);
  box-shadow: 0 0 14px rgba(0,228,255,0.72);
  margin-top: 5px;
}

.timeline-body .role  { font-weight: 700; color: #e5f8ff; font-size: 1rem; }
.timeline-body .org   { font-weight: 600; color: #7adeff; font-size: 0.92rem; }
.timeline-body .dates { font-size: 0.85rem; color: rgba(195,240,255,0.65); margin-bottom: 6px; }
.timeline-body p      { font-size: 0.93rem; color: rgba(228,250,255,0.88); margin-bottom: 0; }

/* ─── SKILL TAGS ─────────────────────────── */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.62) 0%,
    rgba(118,218,248,0.42) 49%,
    rgba(0,172,228,0.62) 50%,
    rgba(0,108,188,0.72) 100%);
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 22px;
  padding: 6px 18px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,40,100,0.48);
  box-shadow: 0 2px 8px rgba(0,128,205,0.38), inset 0 1px 0 rgba(255,255,255,0.68);
}

/* ─── 404 ERROR CARD ─────────────────────── */
.error-card {
  max-width: 560px;
  width: 100%;
  padding: 58px 54px;
  text-align: center;
}

.error-card h1 {
  font-size: 5.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 0 42px rgba(0,228,255,0.78),
    0 0 84px rgba(0,178,235,0.42),
    0 2px 9px rgba(0,50,125,0.58);
  line-height: 1;
  margin-bottom: 18px;
}

.error-card p {
  color: rgba(232,250,255,0.92);
  font-size: 1.06rem;
  line-height: 1.74;
  text-shadow: 0 1px 4px rgba(0,40,100,0.28);
  margin-bottom: 36px;
}

/* ─── INNER PAGE PADDING ─────────────────── */
.inner-page {
  padding: 40px 20px 60px;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
  text-shadow: 0 1px 3px rgba(0,40,100,0.28);
}

/* ─── SOCIAL GRID ────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px;
  text-decoration: none !important;
  color: #ffffff !important;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 2;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-link:hover .social-icon {
  box-shadow:
    0 0 30px rgba(0,220,255,0.82),
    0 6px 22px rgba(0,100,185,0.48),
    inset 0 1px 0 rgba(255,255,255,0.90);
}

.social-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.78) 0%,
    rgba(158,232,252,0.62) 49%,
    rgba(0,178,232,0.88) 50%,
    rgba(0,128,200,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow:
    0 4px 20px rgba(0,148,224,0.52),
    inset 0 1px 0 rgba(255,255,255,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: box-shadow 0.2s ease;
}

.social-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,40,100,0.38);
  color: rgba(232,250,255,0.96);
}

.social-handle {
  font-size: 0.80rem;
  color: rgba(175,235,255,0.76);
  text-shadow: 0 1px 3px rgba(0,40,100,0.28);
}

/* ─── SECRET FISH EGG ───────────────────── */
.fish-egg {
  position: fixed;
  pointer-events: auto;
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 767px) {
  .hero-card, .error-card { padding: 36px 28px; }
  .hero-card h1 { font-size: 2.5rem; }
  .content-card, .page-header-card { padding: 28px 24px; }
  .error-card h1 { font-size: 4rem; }
  .cloud-3 { display: none; }
  .fish-6, .fish-7 { display: none; }
}
