/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0416;
  --bg-card: #2E0F0F;
  -x-purple: #A82121;
  --purple-glow: #EA3333;
  --gold: #f59e0b;
  --gold-bright: #fbbf24;
  --green: #22c55e;
  --green-dark: #16a34a;
  --white: #ffffff;
  --text-muted: #FA8B8B;
  --reel-bg: #0f0720;
  --border-glow: rgba(160, 60, 60, 0.5);
}

html { font-size: 16px; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: url('/images/background.png') no-repeat top left fixed, #000;
  background-size: cover;
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Ambient Background ── */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow::before,
.bg-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.bg-glow::before {
  width: 600px;
  height: 600px;
  background: var(--purple);
  top: -200px;
  left: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}

.bg-glow::after {
  width: 500px;
  height: 500px;
  background: var(--purple-glow);
  bottom: -200px;
  right: -100px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

/* ── Layout ── */
.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 300px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}


@media(max-width: 567px) {
  .container {
    padding: 200px 40px 100px 40px;
    overflow: hidden;
  }
}

/* ── Hero Wrapper (header + machine with bg image) ── */
.hero-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 2s ease-in-out both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-bg-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

@media(max-width: 768px) {
  .hero-bg-img {
    width: 115%;
    max-width: 115%;
  }
}

@media(max-width: 468px) {
  .hero-bg-img {
    width: 150%;
    max-width: 150%;
  }
}

.hero-wrap .header,
.hero-wrap .machine {
  position: relative;
  z-index: 1;
}

/* ── Header / Logo ── */
.header {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.logo {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.title {
  font-family: "gardez", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2rem, 8vw, 3.8rem);
  line-height: 1.125;
  color:#fff;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));

  strong {
    background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  }
}

.subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #fff;
  margin-top: 0.4rem;
  font-weight: 400;
}

/* ── Slot Machine Frame ── */
.machine {
  background: linear-gradient(145deg, #222, #111);
  border: 2px solid #333;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  width: 100%;
  max-width: 520px;
  animation: fadeIn 2s ease-in-out both;
  box-shadow:
    0 0 40px var(--border-glow),
    inset 0 1px 0 var(--border-glow);
}

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


/* ── Reel Labels ── */
.reel-labels {
  display: flex;
  justify-content: space-around;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
}

.reel-labels span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Reels Container ── */
.reels {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.reel {
  width: 120px;
  height: 130px;
  background: var(--reel-bg);
  border: 2px solid var(--border-glow);
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Sheen overlay on reels */
.reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Center line highlight */
.reel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  z-index: 3;
  pointer-events: none;
}

.reel-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s;
  will-change: transform;
}

.reel-icon {
  width: 120px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  flex-shrink: 0;
}

.reel-icon-img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fact-icon .reel-icon-img {
  max-width: 48px;
  max-height: 48px;
}

.h-icon-img {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

/* ── Spin Button ── */
.spin-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  position: relative;
  overflow: hidden;
}

.spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
}

.spin-btn:active {
  transform: translateY(0);
}

.spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spin-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: btnSheen 3s ease-in-out infinite;
}

@keyframes btnSheen {
  0%, 100% { left: -100%; }
  50% { left: 140%; }
}

/* ── Win Display ── */
.win-display {
  display: none;
  width: 100%;
  max-width: 520px;
  margin-top: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

#burt-check {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: -40px;
  z-index: 10;
  position: relative;
}

.win-display.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.spin-again-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  max-width: 280px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  position: relative;
  overflow: hidden;
}

.spin-again-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
}

.spin-again-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: btnSheen 3s ease-in-out infinite;
}

.win-title {
  font-family: "gardez", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  /* text-transform: uppercase; */
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.4));
  animation: pulseWin 1.5s ease-in-out infinite;
  margin-bottom: 0.75rem;
}

@keyframes pulseWin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ── Check-style Fact Card ── */
.fact-card.check {
  background: linear-gradient(170deg, #fdf8ee 0%, #f5ecd5 40%, #eee4c8 100%);
  border: 2px solid #c9b885;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.3),
    inset 0 0 60px rgba(201, 184, 133, 0.15);
}

/* Subtle watermark pattern */
.fact-card.check::before {
  content: '$';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(180, 160, 100, 0.08);
  pointer-events: none;
  line-height: 1;
}

.check-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #c9b885;
}

.check-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: #8a7a55;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.check-date {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: #8a7a55;
}

.check-payline {
  margin-bottom: 0.75rem;
}

.check-payline-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a7a55;
  margin-bottom: 0.2rem;
}

.check-payline-name {
  display: block;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 900;
  color: #2a2210;
  border-bottom: 2px solid #2a2210;
  padding-bottom: 0.15rem;
  font-family: 'Georgia', serif;
}

.check-amount {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  color: #2a2210;
  text-align: right;
  margin-top: 0.25rem;
}

.check-memo {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.6rem 0;
}

.fact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.fact-text {
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.55;
  color: #2a2210;
  margin: 0;
  font-family: 'Georgia', serif;
}

.fact-citation {
  font-size: 0.7rem;
  color: #8a7a55;
  font-style: italic;
  border-bottom: 1px solid rgba(180, 160, 100, 0.4);
  padding-bottom: 0.25rem;
}

.check-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 0.5rem;
}

.check-signature {
  text-align: center;
  min-width: 180px;
}

.check-sig-text {
  display: block;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  color: #2a2210;
  margin-bottom: 0.15rem;
}

.check-sig-line {
  height: 1px;
  background: #2a2210;
  width: 100%;
}

/* ── Fact History ── */
.history {
  width: 100%;
  max-width: 520px;
  margin-top: 2rem;
}

.history-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-align: center;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-item {
  background: #111;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.history-item .h-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.history-item .h-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #fff;
}

.history-item .h-cite {
  font-size: 0.7rem;
  color: #ccc;
  font-style: italic;
  margin-top: 0.25rem;
}

/* ── Coin Explosion Canvas ── */
#confetti {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

/* ── Spin Counter ── */
.spin-counter {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

.spin-counter span {
  color: var(--gold);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .machine { padding: 1.25rem 0.75rem; border-radius: 1rem; }
  .reels { gap: 0.4rem; }
  .reel { width: 90px; height: 100px; border-radius: 0.5rem; }
  .reel-icon { width: 90px; height: 100px; font-size: 2.4rem; }
  .reel::after { height: 46px; }
  .spin-btn { max-width: 220px; padding: 0.75rem 1.5rem; font-size: 1.05rem; }
  .fact-card { padding: 1rem; }
  .history-item { padding: 0.6rem 0.75rem; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .reel { width: 110px; height: 120px; }
  .reel-icon { width: 110px; height: 120px; font-size: 2.8rem; }
}

/* ── Spin Taunt ── */
.spin-taunt {
  display: none;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  text-align: center;
  margin-bottom: 0.5rem;
}

.spin-taunt.visible {
  display: block;
  animation: slideIn 0.4s ease-out;
}

/* ── Email Opt-in ── */
.email-optin {
  display: none;
  width: 100%;
  max-width: 520px;
  margin-top: 2rem;
}

.email-optin.visible {
  display: block;
  animation: slideIn 0.4s ease-out;
}

.email-optin-box {
  background: var(--green-dark);
  border: 2px solid var(--green);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.email-optin-headline {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.email-optin-subhead {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
}

.email-optin-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.email-optin-fields input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.email-optin-fields input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-optin-fields input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.email-optin-submit {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.email-optin-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6);
}

/* ── Footer / Tip Section ── */
.site-footer {
  width: 100%;
  margin-top: 3rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tip-section {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.tip-section-box {
  background: rgba(0,0,0,0.5);
  border: #ccc;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 30px rgba(250, 197, 94, 0.3);
}

.tip-section-headline {
  font-family: "gardez", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.125;
  font-size: clamp(2rem, 4vw, 2.5rem);

  span {
    background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.tip-section-subhead {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
}

.tip-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.tip-form-fields input,
.tip-form-fields textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.tip-form-fields textarea {
  resize: vertical;
}

.tip-form-fields input::placeholder,
.tip-form-fields textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.tip-form-fields input:focus,
.tip-form-fields textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.tip-form-submit {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.tip-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
}

/* ── Video Section ── */
.video-section {
  width: 100%;
  max-width: 720px;
  margin: 3rem auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(250, 197, 94, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.paid-for {
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  font-size: 13px;
  color: var(--white);
  border: 1px solid #fff;
  text-align: center;
}

/* ── Facts Grid Section ── */
.facts-grid-section {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.facts-grid-headline {
  font-family: "gardez", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--white);
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.125;
}

.facts-grid-headline span {
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.facts-grid-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.facts-grid-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.facts-grid-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.facts-grid-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.facts-grid-body {
  flex: 1;
  min-width: 0;
}

.facts-grid-fact {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 0.5rem;
}

.facts-grid-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
}

.facts-grid-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.facts-grid-cite {
  font-size: 0.7rem;
  color: #999;
  font-style: italic;
}

@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid-section {
    padding: 0 0.5rem;
  }
}

/* ── Mute Toggle ── */
.mute-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #333;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: border-color 0.2s, background 0.2s;
  opacity: 0;
  pointer-events: none;
}

.mute-toggle.visible {
  opacity: 1;
  pointer-events: auto;
}

.mute-toggle:hover {
  border-color: var(--gold);
  background: rgba(17, 17, 17, 1);
}
