/* ==========================================
   GAME SCREEN — CSS
   My Little Computer Science Amateur
   ========================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-room:    #1a1a2e;
  --neon-green: #39ff14;
  --neon-blue:  #00e5ff;
  --neon-pink:  #ff2d78;
  --neon-yellow:#ffe600;
  --neon-purple:#bf5fff;
  --pixel-white:#f0f0f0;
  --pixel-gray: #8888aa;
  --hud-bg:     rgba(10,10,25,0.95);
  --btn-bg:     rgba(255,255,255,0.04);
  --btn-border: rgba(255,255,255,0.15);
  --glow-green: 0 0 8px #39ff14, 0 0 20px #39ff1440;
  --glow-blue:  0 0 8px #00e5ff, 0 0 20px #00e5ff40;
}

html, body {
  width: 100%;
  height: 100%;
  background: var(--bg-room);
  overflow: hidden;
  font-family: 'Press Start 2P', monospace;
  color: var(--pixel-white);
  image-rendering: pixelated;
  user-select: none;
}

/* Scanlines overlay */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.12) 3px,
    rgba(0,0,0,0.12) 4px
  );
}

/* ==========================================
   HUD BAR (TOP)
   ========================================== */
.hud-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--hud-bg);
  border-bottom: 2px solid rgba(0,229,255,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 2px 20px rgba(0,229,255,0.15);
}

.hud-title {
  font-size: clamp(7px, 1.5vw, 11px);
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  letter-spacing: 1px;
  white-space: nowrap;
}

.hud-stats {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 90px;
}

.stat-label {
  font-family: 'VT323', monospace;
  font-size: clamp(12px, 1.8vw, 16px);
  color: var(--pixel-gray);
  letter-spacing: 1px;
  white-space: nowrap;
}

.stat-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.hunger-fill  { background: linear-gradient(90deg, #ff6b35, #ff2d78); box-shadow: 0 0 6px #ff6b3560; }
.thirst-fill  { background: linear-gradient(90deg, #00b4d8, #00e5ff); box-shadow: 0 0 6px #00e5ff60; }
.energy-fill  { background: linear-gradient(90deg, #ffe600, #ff8c00); box-shadow: 0 0 6px #ffe60060; }
.mood-fill    { background: linear-gradient(90deg, #39ff14, #00e5ff); box-shadow: 0 0 6px #39ff1460; }

.stat-block.critical .stat-fill {
  animation: criticalPulse 0.8s ease-in-out infinite;
}

@keyframes criticalPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hud-clock {
  font-family: 'VT323', monospace;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--neon-green);
  text-shadow: var(--glow-green);
  letter-spacing: 2px;
}

/* ==========================================
   GAME WORLD (ROOM)
   ========================================== */
.game-world {
  position: fixed;
  top: 70px;
  bottom: 120px;
  left: 0; right: 0;
  overflow: hidden;
  cursor: default;
}

/* Background image — BG.png lives in assets/sprites/BG.png */
.room-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/sprites/BG.png');
  background-size: stretch 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: brightness(0.88);
}

/* ==========================================
   ANIMATED WINDOW OVERLAY
   Positioned to overlay the window in BG.png.
   Adjust top/left/width/height if BG.png window moves.
   ========================================== */
.window-overlay {
  position: absolute;
  top: .0001%;
  left: 35%;
  width: 21%;
  height: 42%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  background: rgba(5, 15, 35, 0.55);
  border-radius: 2px;
}

.window-sky { position: relative; width: 100%; height: 100%; }

.cloud {
  position: absolute;
  width: 60px;
  height: 20px;
  background: rgba(180, 210, 255, 0.18);
  border-radius: 50px;
  filter: blur(4px);
  animation: cloudScroll 20s linear infinite;
}

.cloud::before {
  content: '';
  position: absolute;
  top: -8px; left: 10px;
  width: 30px; height: 20px;
  background: inherit;
  border-radius: 50%;
}

.c1 { top: 15%; animation-duration: 18s; animation-delay: 0s;   width: 50px; }
.c2 { top: 40%; animation-duration: 25s; animation-delay: -10s; width: 70px; opacity: 0.7; }
.c3 { top: 65%; animation-duration: 22s; animation-delay: -5s;  width: 40px; opacity: 0.5; }

@keyframes cloudScroll {
  0%   { left: -80px; }
  100% { left: 110%; }
}

.city-lights {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background:
    radial-gradient(1px 1px at 10% 60%, rgba(255,230,100,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 80%, rgba(255,200,100,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 55%, rgba(100,200,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 75%, rgba(255,230,100,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 70% 65%, rgba(255,150,100,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 80%, rgba(255,230,100,0.8) 0%, transparent 100%);
  animation: cityTwinkle 3s ease-in-out infinite alternate;
}

@keyframes cityTwinkle {
  0%   { opacity: 0.6; }
  100% { opacity: 1.0; }
}

/* ==========================================
   INTERACTION ZONES
   Invisible click zones over fridge (left) and PC desk (right) in BG.png.
   ========================================== */
.fridge-zone {
  position: absolute;
  left: 1%; bottom: 5%;
  width: 12%; height: 60%;
  z-index: 3;
  cursor: pointer;
  border-radius: 4px;
}

.fridge-glow {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0,229,255,0);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.fridge-zone:hover .fridge-glow {
  border-color: rgba(0,229,255,0.6);
  box-shadow: 0 0 20px rgba(0,229,255,0.3), inset 0 0 20px rgba(0,229,255,0.1);
}

.pc-zone {
  position: absolute;
  right: 1%; bottom: 5%;
  width: 22%; height: 70%;
  z-index: 3;
  cursor: pointer;
  border-radius: 4px;
}

.pc-glow {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(57,255,20,0);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pc-zone:hover .pc-glow {
  border-color: rgba(57,255,20,0.6);
  box-shadow: 0 0 20px rgba(57,255,20,0.3), inset 0 0 20px rgba(57,255,20,0.1);
}

.interact-hint {
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  font-family: 'VT323', monospace;
  font-size: 14px;
  background: rgba(10,10,25,0.9);
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  padding: 2px 8px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.fridge-zone:hover .interact-hint,
.pc-zone:hover .interact-hint {
  opacity: 1;
}

/* Pixel particle canvas — positioned over the PC desk (right side) */
.pixel-particles {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Toast notification */
.toast {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%) translateY(-60px);
  background: rgba(10,10,25,0.95);
  border: 2px solid var(--neon-yellow);
  color: var(--neon-yellow);
  font-family: 'VT323', monospace;
  font-size: clamp(16px, 2.5vw, 22px);
  padding: 8px 20px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255,230,0,0.4);
  white-space: nowrap;
  z-index: 50;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* In-game speech bubble */
.speech-bubble-game {
  position: absolute;
  background: rgba(10,10,25,0.95);
  border: 2px solid var(--neon-yellow);
  border-radius: 12px 12px 12px 0;
  padding: 6px 12px;
  font-family: 'VT323', monospace;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--neon-yellow);
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s, transform 0.2s;
  max-width: 180px;
  line-height: 1.4;
}

.speech-bubble-game.visible {
  opacity: 1;
  transform: scale(1);
}

.speech-bubble-game::after {
  content: '';
  position: absolute;
  bottom: -10px; left: -2px;
  border: 5px solid transparent;
  border-top: 5px solid var(--neon-yellow);
  border-right: 5px solid var(--neon-yellow);
}

/* ==========================================
   PET SPRITE
   background:transparent is critical — prevents black fill on transparent PNGs.
   ========================================== */
.pet-container {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
  z-index: 10;
  transition: filter 0.2s;
  /* No background — transparent PNGs must show through */
  background: transparent !important;
}

.pet-container * {
  background: transparent !important;
}

.pet-container:active { cursor: grabbing; }

.pet-container.dragging {
  cursor: grabbing;
  filter: drop-shadow(0 0 16px rgba(0,229,255,0.7));
  z-index: 30;
}

.pet-container.facing-left .pet-sprite {
  transform: scaleX(-1);
}

.pet-sprite {
  height: clamp(160px, 28vh, 240px);
  width: auto;
  image-rendering: pixelated;
  display: block;
  transition: height 0.2s;
  pointer-events: none;
  background: transparent;   /* no black box behind transparent PNGs */
  mix-blend-mode: normal;
}

.pet-shadow {
  width: 70px; height: 14px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 2px;
  transition: opacity 0.3s, transform 0.3s;
}

.pet-container.held .pet-shadow { opacity: 0.1; transform: scale(0.5); }
.pet-container.held .pet-sprite { filter: drop-shadow(0 4px 8px rgba(0,229,255,0.6)); }

@keyframes walkBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.pet-container.walking { animation: walkBounce 0.4s ease-in-out infinite; }

/* Effect overlays */
.zzz-effect {
  position: absolute;
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

.zzz-effect.visible { opacity: 1; animation: zzzFloat 2s ease-in-out infinite; }
.zzz-effect span:nth-child(1) { font-size: 10px; }
.zzz-effect span:nth-child(2) { font-size: 14px; animation-delay: 0.3s; }
.zzz-effect span:nth-child(3) { font-size: 18px; animation-delay: 0.6s; }

@keyframes zzzFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0.8; }
  100% { transform: translateY(-40px) translateX(10px); opacity: 0; }
}

.sweat-effect {
  position: absolute;
  pointer-events: none;
  z-index: 15;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s;
}

.sweat-effect.visible { opacity: 1; animation: sweatDrip 0.5s ease-in-out infinite alternate; }

@keyframes sweatDrip {
  0%   { transform: translateY(0); }
  100% { transform: translateY(5px); }
}

.hearts-effect {
  position: absolute;
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  display: flex;
  gap: 6px;
}

.hearts-effect.visible { opacity: 1; animation: heartsFloat 1.5s ease-out forwards; }
.hearts-effect span { font-size: 16px; animation: heartPop 0.5s ease-out both; }
.hearts-effect span:nth-child(2) { animation-delay: 0.15s; }
.hearts-effect span:nth-child(3) { animation-delay: 0.3s; }

@keyframes heartsFloat {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-50px); opacity: 0; }
}

@keyframes heartPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ==========================================
   ACTION BUTTONS BAR (BOTTOM)
   7 columns: 6 equal + 1 wider job-btn column
   ========================================== */
.action-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--hud-bg);
  border-top: 2px solid rgba(0,229,255,0.25);
  padding: 10px 12px 12px;
  box-shadow: 0 -2px 20px rgba(0,229,255,0.12);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) 1.5fr;  /* job-btn gets 1.5x width */
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--btn-bg);
  border: 2px solid var(--btn-border);
  color: var(--pixel-white);
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(6px, 1.2vw, 9px);
  padding: 8px 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.action-btn:hover {
  background: rgba(0,229,255,0.1);
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(0,229,255,0.3);
  transform: translateY(-2px);
}

.action-btn:active {
  transform: scale(0.93) translateY(0);
  background: rgba(0,229,255,0.2);
}

.action-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,229,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s;
}

.action-btn:active::after { opacity: 1; }

.btn-icon {
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
}

.btn-label {
  letter-spacing: 0.5px;
  color: var(--pixel-gray);
  transition: color 0.15s;
}

.action-btn:hover .btn-label { color: var(--neon-blue); }

/* Gaming button — purple glow to distinguish from CODE */
.gaming-btn {
  border-color: rgba(191,95,255,0.4);
}

.gaming-btn:hover {
  background: rgba(191,95,255,0.12);
  border-color: var(--neon-purple);
  box-shadow: 0 0 12px rgba(191,95,255,0.4);
}

.gaming-btn:hover .btn-label { color: var(--neon-purple); }

/* Danger / job-app button */
.danger-btn {
  border-color: rgba(255,45,120,0.4);
}

.danger-btn:hover {
  background: rgba(255,45,120,0.12);
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255,45,120,0.4);
}

.danger-btn:hover .btn-label { color: var(--neon-pink); }

/* Job btn — taller and more imposing */
.job-btn {
  min-height: 75px;
}

.job-btn .btn-icon { font-size: clamp(22px, 3.5vw, 30px); }

/* Cooldown */
.action-btn.cooldown {
  opacity: 0.45;
  pointer-events: none;
}

/* Active flash */
.action-btn.active-glow {
  border-color: var(--neon-green);
  box-shadow: 0 0 14px rgba(57,255,20,0.5);
  animation: btnActivePulse 0.4s ease;
}

@keyframes btnActivePulse {
  0%   { box-shadow: 0 0 0px rgba(57,255,20,0); }
  50%  { box-shadow: 0 0 20px rgba(57,255,20,0.8); }
  100% { box-shadow: 0 0 14px rgba(57,255,20,0.5); }
}

/* STATUS OVERLAY */
.status-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.overlay-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

#overlayMessage {
  font-family: 'VT323', monospace;
  font-size: clamp(20px, 4vw, 30px);
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255,230,0,0.5);
  line-height: 1.5;
}

.overlay-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(9px, 1.8vw, 13px);
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  padding: 12px 28px;
  cursor: pointer;
  letter-spacing: 2px;
  text-shadow: var(--glow-green);
  box-shadow: var(--glow-green);
  transition: all 0.2s;
}

.overlay-btn:hover {
  background: rgba(57,255,20,0.15);
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 480px) {
  .action-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hud-stats { gap: 8px; }
  .stat-block { min-width: 70px; }
  .window-overlay { display: none; }
}

@media (max-height: 600px) {
  .game-world { top: 55px; bottom: 100px; }
  .pet-sprite { height: 130px; }
}

/* All images: no black box on transparent PNGs */
img {
  -webkit-user-drag: none;
  user-select: none;
  background: transparent;
}

/* ==========================================
   pet_info HUD BARS — weight + happiness
   ========================================== */
.weight-fill {
  background: linear-gradient(90deg, #ff8c00, #ff2d78);
  box-shadow: 0 0 6px #ff8c0060;
}

.happiness-fill {
  background: linear-gradient(90deg, #ffe600, #39ff14);
  box-shadow: 0 0 6px #ffe60060;
}

.pet-name-badge {
  font-family: 'VT323', monospace;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--neon-pink);
  text-shadow: 0 0 8px #ff2d78, 0 0 20px #ff2d7840;
  letter-spacing: 2px;
  margin-right: 8px;
  white-space: nowrap;
}

/* ==========================================
   TREAT BUTTON — new action (comp484 req)
   ========================================== */
.treat-btn {
  border-color: rgba(255, 200, 50, 0.5) !important;
  background: rgba(255, 200, 50, 0.08) !important;
}
.treat-btn:hover {
  border-color: #ffe600 !important;
  box-shadow: 0 0 12px #ffe60060 !important;
}

/* ==========================================
   AD MODAL — full-screen advertisement overlay
   ========================================== */
.ad-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Press Start 2P', monospace;
}

.ad-modal.ad-visible {
  display: flex;
  animation: adFadeIn 0.3s ease;
}

@keyframes adFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ad-modal-inner {
  position: relative;
  width: min(720px, 95vw);
  background: #0a0a1a;
  border: 2px solid var(--neon-yellow);
  box-shadow: 0 0 30px #ffe60060, 0 0 60px #ffe60020;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
}

/* Top bar: label + yellow timer bar + skip button */
.ad-top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 230, 0, 0.06);
  border-bottom: 1px solid rgba(255, 230, 0, 0.25);
}

.ad-label {
  font-size: clamp(7px, 1.2vw, 10px);
  color: var(--neon-yellow);
  text-shadow: 0 0 8px #ffe600;
  white-space: nowrap;
  letter-spacing: 1px;
}

/* Yellow progress bar track */
.ad-timer-track {
  flex: 1;
  height: 10px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

/* The yellow bar that grows as the video plays */
.ad-timer-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffe600, #ff8c00);
  box-shadow: 0 0 6px #ffe60080;
  border-radius: 2px;
  transition: width 0.2s linear;
}

/* Skip button — looks clickable but double-click plays cat laugh */
.ad-skip-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(6px, 1vw, 9px);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 230, 0, 0.4);
  color: #ffe600;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.15s, box-shadow 0.15s;
}

.ad-skip-btn:hover {
  background: rgba(255, 230, 0, 0.12);
  box-shadow: 0 0 8px #ffe60060;
}

/* Shake animation when user tries to double-click skip */
.skip-shake {
  animation: adShake 0.4s ease;
}

@keyframes adShake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px) rotate(-2deg); }
  40%     { transform: translateX(6px)  rotate(2deg); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}

/* The video itself — 16:9 */
.ad-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

/* Footer below the video */
.ad-footer {
  padding: 8px 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 230, 0, 0.2);
}

.ad-footer span {
  font-size: clamp(6px, 1vw, 8px);
  color: var(--pixel-gray);
  letter-spacing: 1px;
}


.ad-dev-trigger {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 10px 12px;
  background: rgba(10, 10, 25, 0.95);
  color: var(--neon-yellow);
  border: 2px solid rgba(255, 230, 0, 0.55);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.2);
  cursor: pointer;
}

.ad-dev-trigger:hover {
  box-shadow: 0 0 16px rgba(255, 230, 0, 0.38);
}

.ad-modal.ad-visible ~ .ad-dev-trigger {
  opacity: 0;
  pointer-events: none;
}
