/*
 * Portfolio Stylesheet
 * Copyright (c) 2026 Prawin Kumar. All rights reserved.
 * See LICENSE file in the root for viewing terms.
 */
﻿
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font-family: inherit; }
::selection { background: rgba(255,255,255,0.15); }

#cosmos {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  display: block;
}

#vignette {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.5) 100%);
}

.s-overlay {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 0 6vw;
}
.s-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.s-overlay > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-overlay.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.s-overlay.visible > *:nth-child(1) { transition-delay: 0.1s; }
.s-overlay.visible > *:nth-child(2) { transition-delay: 0.2s; }
.s-overlay.visible > *:nth-child(3) { transition-delay: 0.3s; }
.s-overlay.visible > *:nth-child(4) { transition-delay: 0.4s; }
.s-overlay.visible > *:nth-child(5) { transition-delay: 0.5s; }
#ov-intro, #ov-about, #ov-work {
  transition: opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.s-overlay.visible a,
.s-overlay.visible button,
.s-overlay.visible .work-item {
  pointer-events: auto;
}

.intro-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(120px, 24vh, 220px);
  color: #fff;
  text-align: center;
  max-width: 960px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 65%);
  padding: 60px 40px;
}
.intro-top {
  font-size: clamp(1.8rem, 4.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  white-space: nowrap;
  text-shadow: 0 4px 24px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.7);
  visibility: hidden;
}
.intro-bottom {
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 4px 24px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.7);
  visibility: hidden;
}

.scroll-prompt {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-prompt span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-prompt .scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeIn { to { opacity: 1; } }

.about-content { 
  text-align: center; 
  max-width: 720px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 70%);
  padding: 60px 40px;
}
.about-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 2rem;
}
.about-heading {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.7);
}
.about-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7; color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem; font-weight: 400;
}
.about-text strong { color: #fff; font-weight: 600; }
.about-link {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s;
}
.about-link:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.work-content { 
  width: 100%; 
  max-width: 1000px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.work-left {
  flex: 1.2;
}
.work-hologram-panel {
  display: none;
  width: 320px;
  height: 320px;
  position: relative;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px dashed rgba(0, 180, 255, 0.15);
  border-radius: 20px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.work-hologram-panel.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
#holo-canvas {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .work-hologram-panel {
    display: block;
  }
}
.work-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 2.5rem;
}
.work-list { list-style: none; }
.work-item {
  display: flex; align-items: baseline; gap: 24px;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: padding-left 0.4s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s;
  position: relative;
}
.work-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.work-item:hover { padding-left: 2rem; background: rgba(255,255,255,0.03); }
.work-item::after {
  content: '→'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; color: rgba(255,255,255,0.2);
  transition: color 0.3s, transform 0.3s;
}
.work-item:hover::after { color: rgba(255,255,255,0.6); transform: translateY(-50%) translateX(4px); }
.work-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
  min-width: 28px;
}
.work-name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em;
  flex: 1;
}
.work-field {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.about-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.6; color: rgba(255,255,255,0.45);
  margin-bottom: 2rem; font-weight: 300;
  max-width: 640px;
}

.contact-content { text-align: center; max-width: 650px; }
.contact-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1.5rem;
}
.contact-heading {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 1.5rem;
}
.contact-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.35);
  margin-bottom: 3rem; letter-spacing: 0.02em;
}
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.contact-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 44px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s, background 0.3s;
}
.contact-btn.primary { background: #fff; color: #000; }
.contact-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,255,255,0.15); }
.contact-btn.secondary {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.contact-btn.secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.contact-socials {
  display: flex; gap: 32px; margin-top: 3rem;
  flex-wrap: wrap; justify-content: center;
}
.contact-socials a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.contact-socials a:hover { color: rgba(255,255,255,0.7); }
.contact-footer {
  margin-top: 4.5rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.15);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

#menu-btn {
  position: fixed; top: 28px; right: 28px;
  z-index: 200;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s, background 0.3s;
}
#menu-btn.show { opacity: 1; pointer-events: auto; }
#menu-btn:hover { background: rgba(255,255,255,0.12); }
.menu-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.menu-lines {
  display: flex; flex-direction: column; gap: 4px;
  width: 18px; height: 14px;
  justify-content: center;
}
.menu-lines span {
  display: block; width: 100%; height: 1.5px;
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  transform-origin: center;
}
#menu-btn.open .menu-lines span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
#menu-btn.open .menu-lines span:nth-child(2) { opacity: 0; }
#menu-btn.open .menu-lines span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
#menu-btn.open .menu-label-open { display: none; }
#menu-btn.open .menu-label-close { display: inline; }
.menu-label-close { display: none; }

#menu-overlay {
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-nav { display: flex; flex-direction: column; align-items: center; gap: 0; }
.menu-link {
  display: block; padding: 18px 40px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}
.menu-link:hover { color: #fff; transform: translateX(8px); }
.menu-divider {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0;
}
.menu-link.ext {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.3);
  padding: 10px 40px;
}
.menu-link.ext:hover { color: rgba(255,255,255,0.7); }

.proj-overlay {
  position: fixed; inset: 0;
  z-index: 120;
  background: rgba(8,8,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 6vw 60px;
  opacity: 0; pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
}
.proj-overlay.open { opacity: 1; pointer-events: auto; transform: scale(1); }
.proj-back {
  position: absolute; top: 28px; left: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s, border-color 0.3s;
}
.proj-back:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.proj-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 1.5rem; text-align: center;
}
.proj-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7; color: rgba(255,255,255,0.55);
  max-width: 640px; text-align: center;
  margin-bottom: 2rem;
}
.proj-stack {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 2.5rem;
}
.proj-stack span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}
.proj-media {
  width: 100%; max-width: 700px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.proj-media img { width: 100%; display: block; }
.proj-ext-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 12px 28px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.proj-ext-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
#loading-screen.hidden { opacity: 0; }
.loader-cosmic {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-sun {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffbb33 60%, rgba(255, 100, 0, 0) 100%);
  box-shadow: 0 0 25px #ffaa00, 0 0 50px rgba(255, 150, 0, 0.4);
}
.loader-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-1 { width: 70px; height: 70px; animation: spin-clockwise 4s linear infinite; }
.orbit-2 { width: 120px; height: 120px; animation: spin-counter 6s linear infinite; }
.orbit-3 { width: 170px; height: 170px; animation: spin-clockwise 9s linear infinite; }
.orbit-4 { width: 220px; height: 220px; animation: spin-counter 13s linear infinite; }

.loader-planet {
  position: absolute;
  border-radius: 50%;
}
.planet-1 {
  width: 5px; height: 5px;
  background: #aab;
  box-shadow: 0 0 6px #aab;
  top: -2.5px;
}
.planet-2 {
  width: 8px; height: 8px;
  background: #ffb366;
  box-shadow: 0 0 10px #ff9933;
  top: -4px;
}
.planet-3 {
  width: 9px; height: 9px;
  background: #66b2ff;
  box-shadow: 0 0 12px #3399ff;
  top: -4.5px;
}
.planet-4 {
  width: 7px; height: 7px;
  background: #ff6666;
  box-shadow: 0 0 8px #ff3333;
  top: -3.5px;
}

#loading-screen .loader-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 36px;
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes spin-clockwise { to { transform: rotate(360deg); } }
@keyframes spin-counter { to { transform: rotate(-360deg); } }
@keyframes pulse-glow {
  from { opacity: 0.35; text-shadow: 0 0 5px rgba(255,255,255,0.05); }
  to { opacity: 0.75; text-shadow: 0 0 15px rgba(255,255,255,0.25); }
}

.progress-bar {
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
  z-index: 50;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transition: opacity 0.5s;
}
.progress-bar.show { opacity: 1; }
.progress-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.4s, transform 0.4s;
  cursor: pointer;
  position: relative;
}
.progress-dot::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: -12px; bottom: -12px;
}
.progress-dot.active { background: #fff; transform: scale(1.6); }

@media (max-width: 768px) {
  .work-item { flex-wrap: wrap; gap: 8px; padding: 1.4rem 0; }
  .work-field { width: 100%; margin-left: 52px; margin-top: -4px; }
  #menu-btn { top: 16px; right: 16px; }
  .proj-back { top: 16px; left: 16px; }
  .progress-bar { display: none; }
  .scroll-prompt { bottom: 30px; }
  .contact-actions { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .contact-btn { width: 100%; max-width: 220px; margin: 0 auto; padding: 1.2rem; display: flex; justify-content: center; min-height: 44px; align-items: center; }
  .contact-btn.secondary { border: 1px solid rgba(255,255,255,0.25) !important; color: #fff !important; }
  .contact-footer { color: rgba(255,255,255,0.45) !important; }
  .contact-socials { gap: 16px; justify-content: center; }
  .contact-socials a { padding: 8px 12px; min-height: 44px; display: inline-flex; align-items: center; }
  .custom-cursor, .custom-cursor-follower { display: none !important; }
  html, body, a, button, .work-item, .progress-dot { cursor: auto !important; }
  .intro-top { white-space: normal; }
}

@media (max-width: 480px) {
  .intro-heading { gap: clamp(80px, 16vh, 140px) !important; padding: 40px 10px !important; }
  .about-content { padding: 40px 15px !important; }
  .about-heading { font-size: 1.8rem !important; }
  .contact-heading { font-size: 2.4rem !important; }
  .work-content { padding: 40px 15px !important; }
  .work-name { font-size: 1.2rem !important; }
  .proj-overlay { padding: 60px 4vw 40px !important; }
  .about-link { padding: 10px 24px !important; min-height: 44px; }
  .menu-link.ext { min-height: 44px; display: flex; align-items: center; }
}
/* Custom Cursor & Polish */
html, body { cursor: none; }
a, button, .work-item, .progress-dot { cursor: none !important; }

.custom-cursor {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px;
  background-color: #fff; border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%); transition: transform 0.15s ease, background-color 0.15s ease;
  mix-blend-mode: exclusion;
}

.custom-cursor-follower {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: transform 0.1s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: rgba(255, 255, 255, 0.8);
}

.custom-cursor-follower.hover {
  width: 50px; height: 50px;
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Glassmorphism Polish */
.proj-overlay, #menu-overlay {
  background: rgba(4,4,6,0.85);
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
}

.contact-btn.primary, .about-link {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.contact-btn.primary:hover, .about-link:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-btn.secondary:hover, .proj-ext-link:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.intro-top, .intro-bottom, .about-heading, .proj-title, .contact-heading {
  text-shadow: 0 4px 30px rgba(0,0,0,0.9), 0 0 20px rgba(255,255,255,0.15);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .scroll-line, .loader-orbit, .loader-sun, .loader-planet {
    animation: none !important;
  }
  .loader-cosmic {
    width: 100px;
    height: 100px;
  }
}

@media print {
  #cosmos, #vignette, #loading-screen, .custom-cursor, .custom-cursor-follower,
  .progress-bar, .scroll-prompt, #menu-btn, #sound-btn { display: none !important; }
  .s-overlay { position: static; opacity: 1; pointer-events: auto; }
  body { background: #fff; color: #000; }
}

