/* ── RHYTHMIC CONNECT 4 — STADIUM SKIN ── */

@font-face {
  font-family: 'FontNotas';
  src: url('../fonts/fontnotas.ttf') format('truetype');
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #0a0c14;
  --bg2: #0e1220;
  --surface: #111828;
  --surface2: #161e30;
  --surface3: #1c2640;
  --red: #ef3b3b;
  --red-glow: rgba(239, 59, 59, 0.35);
  --gold: #f5c500;
  --gold-dim: rgba(245, 197, 0, 0.22);
  --gold-glow: rgba(245, 197, 0, 0.4);
  --blue: #3a6fd8;
  --blue-dark: #2a55b0;
  --ok: #4dcc7a;
  --bad: #ff4455;
  --text: #f0ebd8;
  --muted: #6a7a9e;
  --a-red: #ef3b3b;
  --b-gold: #f5c500;
  --radius: 16px;
}

body {
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 25% 0%, rgba(239, 59, 59, 0.1), transparent 45%),
    radial-gradient(ellipse at 75% 0%, rgba(245, 197, 0, 0.09), transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(58, 111, 216, 0.06), transparent 55%);
  padding: 1rem;
}

body.game-active {
  overflow: hidden;
  padding: .5rem;
}

.app {
  max-width: 1320px;
  margin: 0 auto;
}

body.game-active .app {
  height: calc(100dvh - 1rem);
}

/* ── Panel ── */
.panel {
  background: var(--surface);
  border: 1px solid rgba(245, 197, 0, 0.15);
  border-radius: 22px;
  padding: 1.15rem;
  box-shadow:
    0 0 60px rgba(239, 59, 59, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.panel::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(245, 197, 0, 0.07);
  border-radius: 17px;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

/* ── Back link ── */
.back-link {
  display: inline-block;
  margin-bottom: .6rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s;
}

.back-link:hover {
  color: var(--gold);
}

/* ── Logo ── */
.game-logo {
  width: min(380px, 90%);
  display: block;
  margin: 0 auto .4rem;
  filter:
    drop-shadow(0 6px 28px rgba(239, 59, 59, 0.5)) drop-shadow(0 0 60px rgba(245, 197, 0, 0.25));
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .85rem;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

.eyebrow.small {
  font-size: .72rem;
}

/* ── Headings ── */
h1,
h2,
h3 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.05;
  letter-spacing: .08em;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  margin-top: .2rem;
  color: var(--text);
  display: none;
  /* logo replaces */
}

.subtitle {
  color: var(--muted);
  font-size: .95rem;
  margin-top: .2rem;
  font-weight: 500;
}

/* ── Setup grid ── */
.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .9rem;
  margin-top: .8rem;
}

.setup-card {
  margin-top: .8rem;
  background: var(--surface2);
  border: 1px solid rgba(245, 197, 0, 0.1);
  border-radius: var(--radius);
  padding: .95rem;
  position: relative;
  z-index: 1;
}

.setup-card h2 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold-glow);
  letter-spacing: .12em;
}

.field-row {
  display: grid;
  gap: .33rem;
  margin-top: .58rem;
}

.field-row label {
  font-weight: 600;
  color: var(--muted);
  font-size: .88rem;
}

.player-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: .42rem;
  align-items: center;
}

input[type="text"],
input[type="range"],
select {
  width: 100%;
}

input[type="text"],
#target-score {
  background: var(--surface3);
  color: var(--text);
  border: 1px solid rgba(245, 197, 0, 0.18);
  border-radius: 9px;
  padding: .5rem .7rem;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: border-color .2s;
}

input[type="text"]:focus,
#target-score:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-dim);
}

.color-picker {
  position: relative;
}

.color-picker-toggle {
  width: 100%;
  min-height: 2.35rem;
  border-radius: 9px;
  border: 1px solid rgba(245, 197, 0, 0.18);
  background: var(--surface3);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: .38rem .5rem;
  transition: border-color .12s, box-shadow .12s;
}

.color-picker-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.color-picker-caret {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1;
  transition: transform .12s;
}

.color-picker-menu {
  position: absolute;
  top: calc(100% + .3rem);
  left: 0;
  right: 0;
  z-index: 40;
  padding: .42rem;
  border-radius: 11px;
  border: 1px solid rgba(245, 197, 0, 0.18);
  background: var(--surface2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .12s, transform .12s;
}

.color-picker.open .color-picker-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.color-picker.open .color-picker-toggle {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-dim);
}

.color-picker.open .color-picker-caret {
  transform: rotate(180deg);
}

.color-swatch {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform .12s, border-color .12s, box-shadow .12s, filter .12s;
}

.color-swatch-display {
  width: 1.35rem;
  height: 1.35rem;
  aspect-ratio: auto;
  border-radius: 8px;
}

.color-option:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.color-swatch:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.color-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(245, 197, 0, 0.9), 0 0 14px rgba(245, 197, 0, 0.35);
}

.color-swatch[data-color="red"] {
  background: #ef3b3b;
}

.color-swatch[data-color="gold"] {
  background: #f5c500;
}

.color-swatch[data-color="teal"] {
  background: #2ad1be;
}

.color-swatch[data-color="violet"] {
  background: #8d5cf6;
}

.color-swatch[data-color="green"] {
  background: #4fcb43;
}

.color-swatch[data-color="orange"] {
  background: #ff8f2d;
}

.color-swatch[data-color="gold"],
.color-swatch[data-color="green"] {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.setup-error {
  min-height: 1rem;
  margin-top: .45rem;
  color: var(--bad);
  font-weight: 700;
  font-size: .88rem;
}

/* ── Meter buttons ── */
.meter-options {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
}

button {
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.meter {
  padding: .45rem .9rem;
  border-radius: 999px;
  background: var(--surface3);
  color: var(--muted);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .1em;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color .15s, border-color .15s, box-shadow .15s;
}

.meter.active {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-dim);
}

input[type="range"] {
  accent-color: var(--gold);
  cursor: pointer;
}

/* ── Figure list ── */
.figure-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: .55rem;
}

.figure {
  background: var(--surface3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: .6rem .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .22rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.figure .symbol {
  font-family: 'FontNotas', sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--text);
}

.figure .name {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.figure.active {
  background: rgba(245, 197, 0, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-dim);
}

.figure.active .symbol {
  color: var(--gold);
}

.figure.active .name {
  color: var(--gold);
}

/* ── CTA ── */
.cta {
  margin-top: .9rem;
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, #c82020 100%);
  color: #fff;
  border-radius: 999px;
  padding: .84rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .14em;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(239, 59, 59, 0.4);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  z-index: 1;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(239, 59, 59, 0.55);
}

/* ── Game screen ── */
#game-screen {
  min-height: calc(100dvh - 1rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#game-screen.hidden {
  display: none !important;
}

/* ── Game header ── */
.game-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .65rem;
  flex-wrap: wrap;
}

.header-main h2 {
  font-size: clamp(1.1rem, 3.8vw, 1.8rem);
  color: var(--text);
  letter-spacing: .08em;
}

.game-message {
  margin-top: .2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .88rem;
}

.header-actions {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

/* ── Ghost buttons ── */
.ghost {
  border-radius: 9px;
  background: var(--surface2);
  color: var(--muted);
  font-weight: 600;
  padding: .5rem .7rem;
  font-size: .85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color .2s, border-color .2s;
}

.ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.ghost:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* ── Scoreboard ── */
.scoreboard {
  margin-top: .55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.score-card {
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: .52rem .65rem;
  display: grid;
  gap: .18rem;
  transition: border-color .2s, box-shadow .2s;
}

.score-card.active {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(245, 197, 0, 0.15);
}

.score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
}

.score-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--text);
}

.score-color {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--chip-color, #ef3b3b);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24), 0 0 12px var(--chip-glow, rgba(239, 59, 59, 0.35));
}

.score-points {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold-glow);
}

.score-next {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .84rem;
}

.next-figure {
  font-family: 'FontNotas', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
}

/* ── Board ── */
.board-wrap {
  margin-top: .6rem;
  flex: 1;
  min-height: 0;
  display: grid;
  place-items: center;
}

.board {
  width: min(96vw, 1160px, calc((100dvh - 270px) * 7 / 6));
  aspect-ratio: 7 / 6;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .4rem;
  padding: .55rem;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: 2px solid rgba(58, 111, 216, 0.6);
  box-shadow:
    0 0 40px rgba(58, 111, 216, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Cell holes */
.cell {
  border: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 38% 34%, #1a2240 0%, #111828 60%, #0a0e1a 100%);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: outline .1s;
}

.cell:hover {
  outline: 2px solid rgba(245, 197, 0, 0.4);
}

.cell.line {
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 0 3px rgba(245, 197, 0, 0.8);
}

.cell.line-flash {
  animation: linePulse .62s ease-in-out infinite;
}

.cell.scored {
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 0 3px rgba(245, 197, 0, 0.9), 0 0 0 3px rgba(245, 197, 0, 0.2);
}

/* Pieces */
.piece {
  position: absolute;
  inset: 7%;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at 35% 30%, var(--piece-light, #ff8080), var(--piece-base, #ef3b3b) 55%, var(--piece-dark, #a51d1d) 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 18px var(--piece-glow, rgba(239, 59, 59, 0.3));
  color: var(--piece-text, #fff);
}

.piece.drop {
  animation: chipDrop var(--drop-duration, 420ms) cubic-bezier(.18, .85, .28, 1.08);
  will-change: transform;
}

.piece.locked {
  box-shadow: 0 0 0 3px rgba(245, 197, 0, 0.7), 0 8px 18px rgba(0, 0, 0, 0.5);
}

.piece-symbol {
  font-family: 'FontNotas', sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.1rem);
  line-height: .9;
}

.piece-lock {
  position: absolute;
  right: 7%;
  top: 7%;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1000;
  font-size: .7rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

/* ── Overlays ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 14, 0.86);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 999;
}

/* ── Challenge & Result cards ── */
.challenge-card,
.result-card {
  width: min(1060px, 96vw);
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(245, 197, 0, 0.25);
  padding: 1.2rem;
  box-shadow:
    0 0 60px rgba(245, 197, 0, 0.07),
    0 30px 60px rgba(0, 0, 0, 0.7);
  text-align: center;
  position: relative;
}

.challenge-card::before,
.result-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(239, 59, 59, 0.07);
  border-radius: 17px;
  pointer-events: none;
}

.challenge-card h3,
.result-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: .1em;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  position: relative;
  z-index: 1;
}

#challenge-help {
  color: var(--muted);
  margin-top: .2rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.challenge-rhythm {
  margin: .9rem 0 .65rem;
  min-height: clamp(120px, 24vh, 220px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  position: relative;
  z-index: 1;
}

.challenge-note {
  font-family: 'FontNotas', sans-serif;
  font-size: clamp(4.1rem, 10vw, 8.6rem);
  line-height: 1;
  border-radius: 10px;
  padding: .1rem .2rem;
  color: var(--text);
  transition: background .12s, transform .12s;
}

.challenge-note.active {
  background: rgba(245, 197, 0, 0.15);
  color: var(--gold);
  transform: translateY(-4px);
  text-shadow: 0 0 20px var(--gold-glow);
}

.challenge-note.good {
  color: var(--ok);
}

.challenge-note.bad {
  color: var(--bad);
}

.challenge-feedback {
  min-height: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.challenge-actions,
.result-actions {
  margin-top: .85rem;
  display: flex;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── TAP button ── */
.tap-btn {
  background: linear-gradient(135deg, var(--red), #c82020);
  color: #fff;
  border-radius: 12px;
  padding: .62rem 1.1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .14em;
  min-width: 110px;
  box-shadow: 0 4px 18px rgba(239, 59, 59, 0.4);
  transition: transform .1s, box-shadow .1s;
}

.tap-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.tap-btn.flash {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(239, 59, 59, 0.6);
}

/* ── Result subtitle ── */
#result-subtitle {
  margin-top: .3rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* ── Confetti ── */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1400;
}

.confetti-piece {
  position: absolute;
  top: -14px;
  width: 10px;
  height: 16px;
  border-radius: 2px;
  opacity: .95;
  animation-name: confettiFall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes confettiFall {
  from {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  to {
    transform: translateY(110vh) rotate(540deg);
    opacity: .95;
  }
}

/* ── Keyframes ── */
@keyframes linePulse {
  0% {
    transform: scale(1);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 0 3px rgba(245, 197, 0, 0.85);
  }

  50% {
    transform: scale(1.04);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 0 4px rgba(255, 220, 80, 1), 0 0 24px rgba(245, 197, 0, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 0 3px rgba(245, 197, 0, 0.85);
  }
}

@keyframes chipDrop {
  0% {
    transform: translateY(calc((var(--drop-rows, 1) * -118%) - 26%)) scale(0.96);
  }

  72% {
    transform: translateY(4%) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .board {
    width: min(98vw, calc((100dvh - 320px) * 7 / 6));
    gap: .28rem;
    border-radius: 16px;
    padding: .4rem;
  }

  .cell {
    border-radius: 11px;
  }

  .piece-symbol {
    font-size: clamp(1rem, 3.6vw, 1.7rem);
  }
}

@media (max-width: 760px) {
  body {
    padding: .5rem;
  }

  .panel {
    padding: .85rem;
  }

  .player-inline {
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .scoreboard {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .ghost {
    flex: 1;
    min-width: 145px;
  }

  .board {
    width: min(99vw, calc((100dvh - 390px) * 7 / 6));
  }

  .challenge-card,
  .result-card {
    padding: .9rem;
  }

  .game-logo {
    width: min(300px, 85%);
  }
}

/* ── Premium Locks ── */
.locked-premium {
  position: relative;
  opacity: 0.65;
  cursor: not-allowed !important;
}

.locked-premium>* {
  pointer-events: none;
}

.locked-premium::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.45);
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C9.243 2 7 4.243 7 7V10H6V20H18V10H17V7C17 4.243 14.757 2 12 2ZM9 7C9 5.346 10.346 4 12 4C13.654 4 15 5.346 15 7V10H9V7ZM12 17C10.895 17 10 16.105 10 15C10 13.895 10.895 13 12 13C13.105 13 14 13.895 14 15C14 16.105 13.105 17 12 17Z" fill="white"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C9.243 2 7 4.243 7 7V10H6V20H18V10H17V7C17 4.243 14.757 2 12 2ZM9 7C9 5.346 10.346 4 12 4C13.654 4 15 5.346 15 7V10H9V7ZM12 17C10.895 17 10 16.105 10 15C10 13.895 10.895 13 12 13C13.105 13 14 13.895 14 15C14 16.105 13.105 17 12 17Z" fill="white"/></svg>');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}