* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
}
::selection {
  background: #1d1d1f;
  color: #f5f5f7;
}
[data-theme="dark"] ::selection {
  background: #f5f5f7;
  color: #1d1d1f;
}
@font-face {
  font-family: "Apple-Regular";
  src: url("../fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apple-Bold";
  src: url("../fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-text-primary: #1d1d1f;
  --color-text-secondary: #555559;
  --color-text-tertiary: #707075;
  --color-blue: #0071e3;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-hover: rgba(0, 0, 0, 0.04);
  --radius-pill: 50px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --header-bg: rgba(255, 255, 255, 0.35);
  --header-border: rgba(255, 255, 255, 0.45);
  --gradient-title: linear-gradient(53deg, #0071e3 0%, #93c8fa 100%);
  --transition-base: 0.3s cubic-bezier(0.46, 0.01, 0.35, 1);
  --transition-fast: 0.18s cubic-bezier(0.46, 0.01, 0.35, 1);
  --transition-slow: 0.38s cubic-bezier(0.46, 0.01, 0.35, 1);
  --transition-premium: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] {
  --color-bg: #111113;
  --color-surface: #1c1c1e;
  --color-text-primary: #f5f5f7;
  --color-text-secondary: #b0b0b5;
  --color-text-tertiary: #8c8c91;
  --color-blue: #3a9eff;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-hover: rgba(255, 255, 255, 0.07);
  --header-bg: rgba(28, 28, 30, 0.7);
  --header-border: rgba(255, 255, 255, 0.12);
  --gradient-title: linear-gradient(53deg, #3a9eff 0%, #93c8fa 100%);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] #active-link {
  background: rgba(44, 44, 46, 0.95) !important;
  color: var(--color-blue) !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.05) !important;
}
[data-theme="dark"] #mobile-menu-btn {
  background: #2c2c2e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .btn-dark {
  background: linear-gradient(
    135deg,
    rgba(58, 158, 255, 0.9) 0%,
    rgba(0, 113, 227, 0.95) 100%
  );
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 24px rgba(58, 158, 255, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.15);
}
[data-theme="dark"] .btn-light {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(200%);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.25);
}
body {
  background-color: var(--color-bg);
  font-family:
    "Apple-Regular",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--color-text-primary);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.38s cubic-bezier(0.46, 0.01, 0.35, 1),
    color 0.38s cubic-bezier(0.46, 0.01, 0.35, 1);
}
.header-pill {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(35px) saturate(210%);
  -webkit-backdrop-filter: blur(35px) saturate(210%);
  border-radius: 60px;
  border: 1px solid var(--header-border);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 6px;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 95vw;
  gap: 0;
  transition: var(--transition-slow);
}
.header-pill nav::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background: var(--color-border);
  margin-left: 6px;
  flex-shrink: 0;
}
nav {
  display: flex;
  align-items: center;
}
.header-container {
  display: flex;
  gap: 2px;
}
.header-container li a {
  display: block;
  padding: 6px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: 40px;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.header-container li a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: var(--color-hover);
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.3s ease;
  z-index: -1;
}

.header-container a:hover {
  color: var(--color-text-primary);
}

.header-container a:hover::before {
  transform: scale(1);
  opacity: 1;
}
#active-link {
  background: #ffffff !important;
  color: var(--color-blue) !important;
  box-shadow:
    0 4px 12px rgba(0, 113, 227, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.05);
  font-family: "Apple-Bold", sans-serif !important;
}
#theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--color-hover);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  flex-shrink: 0;
  transition:
    background var(--transition-base),
    transform var(--transition-fast);
}
#theme-toggle:hover {
  background: var(--color-border);
  transform: scale(1.08);
}
#theme-toggle:active {
  transform: scale(0.92);
}
#theme-toggle svg {
  width: 15px;
  height: 15px;
  fill: var(--color-text-secondary);
  transition: fill var(--transition-base);
  pointer-events: none;
}
#theme-toggle:hover svg {
  fill: var(--color-text-primary);
}
#home-main {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
}
#hero-left {
  flex: 1;
  animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#main-title {
  font-family: "Apple-Bold", sans-serif;
  font-size: 4.5rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}
#main-p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 460px;
}
#hero-actions {
  display: flex;
  gap: 16px;
}
.btn-dark,
.btn-light {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: "Apple-Bold", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1), background 0.42s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-dark {
  background: linear-gradient(145deg, #1e90ff 0%, #0071e3 55%, #0059c2 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 28px rgba(0, 113, 227, 0.45);
}
.btn-dark:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 113, 227, 0.55);
}
.btn-light {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(28px) saturate(180%);
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.btn-light:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
}
#hero-right {
  flex: 0 0 auto;
  animation: slideInRight 0.8s ease-out, float 6s ease-in-out infinite;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
#profile-card {
  width: 340px;
  height: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: var(--transition-premium);
}
#profile-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
#card-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 40px;
}
#banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1.2s ease, transform 1.2s ease, opacity 1s ease;
}
#profile-card:hover #banner-img {
  transform: scale(1.05);
}
#card-socials {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ow-active #card-socials {
  bottom: auto;
  top: 30px;
}
.social-card {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-card svg {
  transition: transform 0.3s ease;
}
.social-card:hover { transform: scale(1.2) rotate(5deg); }
.social-card:hover svg { transform: scale(1.1); }

/* Standard Mode Hovers (Brand Colors) */
.social-card:nth-child(1):hover { background: rgba(225, 48, 108, 0.2); box-shadow: 0 8px 32px rgba(225, 48, 108, 0.3); color: #e1306c; } /* Instagram */
.social-card:nth-child(2):hover { background: rgba(23, 26, 33, 0.2); box-shadow: 0 8px 32px rgba(23, 26, 33, 0.3); color: #171a21; } /* Steam */
.social-card:nth-child(3):hover { background: rgba(114, 137, 218, 0.2); box-shadow: 0 8px 32px rgba(114, 137, 218, 0.3); color: #7289da; } /* Discord */
.social-card:nth-child(4):hover { background: rgba(0, 0, 0, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); color: #000; } /* TikTok */
.social-card:nth-child(5):hover { background: rgba(255, 0, 0, 0.2); box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3); color: #ff0000; } /* YouTube */

/* OW Mode Planetary Colors & Glows (Soften/Premium) */
body.ow-active .social-card:nth-child(1) { border-color: #d4c06d !important; } /* Hourglass Twins */
body.ow-active .social-card:nth-child(2) { border-color: #81c784 !important; } /* Timber Hearth */
body.ow-active .social-card:nth-child(3) { border-color: #b39ddb !important; } /* Brittle Hollow */
body.ow-active .social-card:nth-child(4) { border-color: #80cbc4 !important; } /* Giant's Deep */
body.ow-active .social-card:nth-child(5) { border-color: #b0bec5 !important; } /* Dark Bramble */

body.ow-active .social-card {
  background: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

body.ow-active .social-card img.ow-icon {
  width: 95% !important;
  height: 95% !important;
}

body.ow-active .social-card:nth-child(1):hover { background: #d4c06d !important; box-shadow: 0 0 20px rgba(212, 192, 109, 0.4) !important; color: #121214 !important; }
body.ow-active .social-card:nth-child(2):hover { background: #81c784 !important; box-shadow: 0 0 20px rgba(129, 199, 132, 0.4) !important; color: #121214 !important; }
body.ow-active .social-card:nth-child(3):hover { background: #b39ddb !important; box-shadow: 0 0 20px rgba(179, 157, 219, 0.4) !important; color: #121214 !important; }
body.ow-active .social-card:nth-child(4):hover { background: #80cbc4 !important; box-shadow: 0 0 20px rgba(128, 203, 196, 0.4) !important; color: #121214 !important; }
body.ow-active .social-card:nth-child(5):hover { background: #b0bec5 !important; box-shadow: 0 0 20px rgba(176, 190, 197, 0.4) !important; color: #121214 !important; }

body.ow-active .social-card:hover {
  transform: scale(1.15) rotate(5deg) !important;
}

.card-glass-footer {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(40px) saturate(210%);
  border-radius: 30px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 45px rgba(0, 113, 227, 0.25);
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.mini-avatar { 
  width: 42px; 
  height: 42px; 
  border-radius: 50%; 
  border: 2px solid #fff; 
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
body.ow-active .mini-avatar {
  border: none !important;
  background: none !important;
  mask: none !important;
  -webkit-mask: none !important;
  border-radius: 0;
  width: 55px;
  height: 55px;
  content: url("../img/outerwildsventures.png");
}
body.ow-active .mini-avatar::after {
  display: none !important;
}
.user-meta { display: flex; flex-direction: column; }
#card-handle, #card-sub {
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
#card-handle { color: #fff; font-family: "Apple-Bold", sans-serif; font-size: 0.95rem; }
#card-sub { color: rgba(255, 255, 255, 0.7); font-size: 0.8rem; }
#card-portfolio {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 16px;
  font-family: "Apple-Bold", sans-serif;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
#card-portfolio:hover { transform: scale(1.06) translateY(-2px); background: #fff; box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4); }

@media (max-width: 1100px) {
  #hero-wrapper { gap: 48px; max-width: 900px; }
  #main-title { font-size: 3.8rem; }
  #profile-card { width: 300px; height: 420px; }
}
@media (max-width: 960px) {
  body { overflow: auto; height: auto; }
  #home-main { padding-bottom: 40px; height: auto; }
  #hero-wrapper { flex-direction: column-reverse; padding: 110px 24px 48px; }
  #hero-left { text-align: center; }
  #main-title { font-size: 3.2rem; }
  #main-p { margin: 0 auto 40px; }
  #hero-actions { justify-content: center; }
  #profile-card { width: 320px; height: 450px; margin: 0 auto; }
}
@media (max-width: 600px) {
  #main-title { font-size: 2.7rem; }
  .btn-dark, .btn-light { padding: 12px 24px; font-size: 0.9rem; }
  #profile-card { width: 280px; height: 395px; }
}
@media (max-width: 420px) {
  #main-title { font-size: 2.2rem; }
  #hero-actions { flex-direction: column; align-items: center; }
  .btn-dark, .btn-light { width: 100%; max-width: 260px; }
}
@media (max-width: 768px) {
  .header-container li a {
    padding: 6px 10px;
    font-size: 0.82rem;
  }
}

#main-title, #main-p {
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-swap {
  opacity: 0 !important;
  filter: blur(12px) !important;
  transform: translateY(10px) scale(0.96);
}

/* ── Outer Wilds Mode Overrides ── */
body.ow-active {
  --color-bg: #08080a !important;
  --color-surface: #121214 !important;
  --color-blue: #ff7d25 !important;
  --gradient-title: linear-gradient(53deg, #ff7d25 0%, #ffb685 100%) !important;
  --ow-spark: #ffaa00;
  --ow-spark-glow: rgba(255, 119, 0, 0.15);
  --ow-pulse: rgba(255, 125, 37, 0.08); /* Amber for Index */
}
/* Recalibrar Verde exclusivamente para Sobre */
body#about-page.ow-active {
  --color-blue: #00FFCC !important;
  --gradient-title: linear-gradient(53deg, #00FFCC 0%, #00A693 100%) !important;
  --ow-spark: #00FFCC;
  --ow-spark-glow: rgba(0, 166, 147, 0.15);
  --ow-pulse: rgba(0, 255, 204, 0.08); /* Emerald for About */
}
/* Ventures Badge Border */
body.ow-active .btn-dark {
  background: var(--gradient-title) !important;
  box-shadow: 0 8px 24px var(--ow-spark-glow, rgba(255, 125, 37, 0.35)) !important;
}
body.ow-active #active-link {
  color: var(--color-blue) !important;
  box-shadow: 0 4px 15px var(--ow-spark-glow), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}
body.ow-active #theme-toggle {
  cursor: not-allowed !important;
  opacity: 0.6;
}
body.ow-active #ow-sound-widget {
  cursor: pointer !important;
}
body.ow-active #pt-overlay {
  background: rgba(8, 8, 10, 0.85) !important;
}

/* Enhanced Gradient (Campfire) */
.pulse-gradient {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at bottom right, var(--ow-pulse) 0%, rgba(255, 125, 37, 0.02) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}
body.ow-active .pulse-gradient {
  opacity: 1;
}
@keyframes bg-pulse {
  0% { transform: scale(0.9); opacity: 0.35; }
  100% { transform: scale(1.1); opacity: 0.5; }
}
/* Responsive Adjustments */
@media (max-width: 860px) {
  #hero-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 100px 20px;
    text-align: center;
  }
  #hero-left { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  #profile-card {
    width: 320px;
    height: 480px;
    margin: 0 auto;
  }
  #main-title { font-size: 3.5rem; text-align: center; }
  #main-p { font-size: 1rem; max-width: 500px; margin: 0 auto 20px; }
  .social-card { width: 40px; height: 40px; }
  body.ow-active #card-socials { 
    top: auto; 
    bottom: -60px; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 12px;
  }
}

@media (max-width: 480px) {
  #profile-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 400px;
    padding-bottom: 20px;
  }
  #main-title { font-size: 2.8rem; }
  .card-glass-footer { padding: 10px 15px; position: relative; bottom: 0; left: 0; right: 0; margin-top: 15px; }
  #card-portfolio { padding: 6px 12px; font-size: 0.85rem; }
  #banner-img { height: 180px; }
  body.ow-active #card-socials { position: relative; top: 0; margin-top: 20px; }
  body.ow-active .social-card { width: 45px; height: 45px; }
  
  /* Olho do Universo Mobile */
  body.ow-active #loc-visual img { max-width: 100px !important; }
  body.ow-active #loc-country img { max-width: 70px !important; }
}

/* ── Outer Wilds Sound Widget Button ── */
#ow-sound-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}
#ow-sound-widget:hover {
  transform: scale(1.1) translateY(-4px);
  background: rgba(40, 40, 50, 0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.campfire-icon {
  width: 26px;
  height: 26px;
  transition: all 0.6s ease;
  fill: none;
  stroke: rgba(255, 140, 0, 0.8);
  filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.7)) drop-shadow(0 0 2px rgba(255, 200, 50, 0.5));
}
#ow-sound-widget:hover .campfire-icon {
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.9)) drop-shadow(0 0 4px rgba(255, 210, 60, 0.7));
}
#ow-sound-widget.playing .campfire-icon {
  stroke: var(--color-blue, #ff7d25) !important;
  filter: drop-shadow(0 0 8px var(--ow-spark-glow, #ff7700)) drop-shadow(0 0 15px var(--ow-spark-glow, #ff7700));
  animation: owFlicker 2s ease-in-out infinite alternate;
}
#ow-sound-widget.playing {
  background: rgba(40, 40, 50, 0.4);
  border-color: var(--color-blue, #ff7d25);
  box-shadow: 0 0 25px var(--ow-spark-glow, rgba(255, 125, 37, 0.2)), inset 0 0 10px rgba(255, 255, 255, 0.05);
}
body.ow-active::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(circle at bottom right, rgba(255, 125, 37, 0.10) 0%, transparent 45%);
  pointer-events: none; z-index: -1; transition: background 2s ease;
}
body#about-page.ow-active::before {
  background: radial-gradient(circle at bottom right, rgba(0, 255, 204, 0.12) 0%, transparent 50%) !important;
}
.ow-star { position: fixed; background: #fff; border-radius: 50%; pointer-events: none; z-index: 1300; filter: blur(0.5px); animation: starTwinkle 4s ease-in-out infinite; }
.ow-global-spark { position: fixed; background: var(--ow-spark); border-radius: 50%; pointer-events: none; z-index: 1400; filter: blur(1px) drop-shadow(0 0 5px var(--ow-spark-glow)); opacity: 0; }


@keyframes owFlicker {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  33% { transform: scale(1.08) rotate(-2deg); opacity: 0.9; }
  66% { transform: scale(0.95) rotate(2deg); opacity: 0.95; }
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}
@keyframes sparkFloat {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  10% { transform: translate(calc(var(--tx) * 0.1), calc(var(--ty) * 0.1)) scale(1); opacity: 0.8; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.2); opacity: 0; }
}

