:root {
  --bg1: #030014;
  --bg2: #050022;
  --bg3: #0b042c;

  --card-border: rgba(196, 116, 255, 0.8);
  --card-glow: rgba(129, 140, 248, 0.4);

  --accent: #a855f7;
  --accent-2: #38bdf8;

  --text-main: #f9f5ff;
  --text-muted: #9ca3af;

  --radius: 26px;

  --page-pad-x: clamp(14px, 3vw, 32px);
  --page-pad-top: clamp(22px, 4vw, 40px);
  --page-pad-bottom: clamp(20px, 0vh, 120px);

  --content-max: 1180px;

  --slider-visible: 3;

  --main-card-w: clamp(200px, 22vw, 280px);
  --main-card-font: clamp(15px, 1.6vw, 18px);

  --slider-card-w: clamp(200px, 20vw, 260px);
  --slider-card-h: clamp(170px, 18vw, 200px);
  --slider-gap: clamp(18px, 3vw, 40px);
  --slider-pad: clamp(16px, 3vw, 40px);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg1);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at top, #471494 0, transparent 40%),
    radial-gradient(circle at 20% 80%, #04405c 0, transparent 45%),
    radial-gradient(circle at 80% 80%, #680f37 0, transparent 45%),
    linear-gradient(160deg, var(--bg1), var(--bg2), var(--bg3));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateZ(0);
  will-change: transform;
}

.bg-space-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.bg-space-object {
  position: absolute;
  width: clamp(36px, 6vw, 80px);
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(148, 163, 184, 0.8));
  will-change: transform;
}

main {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 0 !important;
  padding: 0 var(--page-pad-x) 0;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  align-items: center;
  gap: clamp(18px, 1vw, 32px);
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 50px;
}
.logo-placeholder {
  height: 60px;
  margin-bottom: 12px;
}
.logo-title {
  font-size: clamp(34px, 6vw, 56px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.logo-image {
  width: clamp(290px, 14vw, 290px);
  height: auto;
  display: block;

  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.6))
    drop-shadow(0 0 26px rgba(56, 189, 248, 0.35));

  user-select: none;
  pointer-events: none;
}
.cards-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
}

.award-card {
  width: var(--main-card-w);
  aspect-ratio: 1 / 1;
  height: auto;

  border-radius: var(--radius);
  border: 1px solid var(--card-border);

  background: radial-gradient(
      circle at top left,
      rgba(248, 250, 252, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.08),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.9);

  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8), 0 22px 60px rgba(15, 23, 42, 0.9),
    0 0 55px var(--card-glow);

  color: var(--text-main);

  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;

  padding: clamp(16px, 2.4vw, 24px);
  font-weight: 600;
  font-size: var(--main-card-font);

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.2s ease-out, border-color 0.2s ease-out,
    background 0.2s ease-out;

  animation: cardFloat 7s ease-in-out infinite alternate;
}

.award-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(244, 114, 182, 0.35),
    transparent 55%
  );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.award-card span {
  position: relative;
  z-index: 1;
}

.award-card:hover {
  animation: none;
  transform: translateY(-10px) scale(1.04) rotate3d(1, -1, 0, 4deg);
  border-color: #e879f9;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.95),
    0 0 70px rgba(244, 114, 182, 0.8);
}

.award-card:hover::before {
  opacity: 1;
  transform: translate3d(10px, -10px, 0);
}
.section-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  text-align: center;
  color: white;
}
.section-caption {
  font-size: clamp(12px, 1.6vw, 13px);
  text-align: center;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
}

.slider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  margin-top: clamp(8px, 2vw, 10px);
}

.slider-arrow {
  flex: 0 0 auto;
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(
      circle at 30% 20%,
      rgba(248, 250, 252, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(129, 140, 248, 0.25),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease-out, border-color 0.2s ease-out,
    box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.slider-arrow-svg {
  width: clamp(20px, 3.5vw, 24px);
  height: clamp(20px, 3.5vw, 24px);
  stroke: #e5e7eb;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.2s ease-out, transform 0.2s ease-out;
}
.slider-arrow-svg--left {
  transform: scaleX(-1);
}

.slider-arrow:hover {
  border-color: #e879f9;
  box-shadow: 0 0 20px rgba(244, 114, 182, 0.7),
    0 0 32px rgba(56, 189, 248, 0.6);
  transform: translateY(-1px);
}
.slider-arrow:hover .slider-arrow-svg--right {
  transform: translateX(2px);
}
.slider-arrow:hover .slider-arrow-svg--left {
  transform: scaleX(-1) translateX(2px);
}

.slider-viewport {
  overflow: hidden;
  padding: var(--slider-pad);
  box-sizing: content-box;
  max-width: 100%;
}

.slider-track {
  display: flex;
  gap: var(--slider-gap);
  transition: transform 0.24s ease-out;
}

.slider-card {
  width: var(--slider-card-w);
  height: var(--slider-card-h);
  border-radius: var(--radius);

  border: 1px solid rgba(148, 163, 184, 0.7);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--text-main);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;

  padding: 16px;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);

  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;

  transform: translateZ(0);
  will-change: box-shadow, border-color;

  transition: border-color 0.22s ease-out, box-shadow 0.22s ease-out;
}
.card-video {
  position: absolute;
  inset: 0; 
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0; 
  pointer-events: none; 
}
.slider-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 25%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0) 65%
  );

  z-index: 1;
}

.slider-card:hover::after {
  opacity: 1;
}

.slider-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 0% 100%,
      rgba(56, 189, 248, 0.45),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(244, 114, 182, 0.35),
      transparent 55%
    );
  opacity: 0;
  mix-blend-mode: normal;
  transition: opacity 0.25s ease-out;
}

.slider-card span {
  position: relative;
  z-index: 1;
}

.slider-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.5),
    0 0 36px rgba(96, 165, 250, 0.45);
}

.slider-card:hover::after {
  opacity: 1;
}
.slider-card:hover::before {
  opacity: 1;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}


.made-by {
  margin-top: auto;
  padding: 15px 10px 28px;

  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  color: #e5e7eb;
  text-shadow: 0 0 10px rgba(148, 163, 184, 0.6);
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 18, 0.82);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 18px;
}
.modal-overlay.modal-overlay--visible {
  display: flex;
}


.modal {
  position: relative;
  max-width: min(860px, calc(100vw - 36px));
  width: 100%;

  border-radius: 26px;
  padding: 0;
  overflow: hidden;

  background: radial-gradient(
      circle at top left,
      rgba(129, 140, 248, 0.25),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(236, 72, 153, 0.25),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.97);

  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9),
    0 0 60px rgba(56, 189, 248, 0.4);

  border: 1px solid rgba(148, 163, 184, 0.7);

  max-height: min(84vh, 760px);
}
.modal-hint {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.modal-scroll {
  padding: clamp(14px, 1.8vw, 22px);
  padding-right: calc(clamp(14px, 1.8vw, 22px) + 14px);
  overflow: auto;
  max-height: inherit;

  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.7) rgba(148, 163, 184, 0.12);
}


.modal-scroll::-webkit-scrollbar {
  width: 7px;
}
.modal-scroll::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  margin: 16px 0;
}
.modal-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.8),
    rgba(236, 72, 153, 0.75)
  );
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.97);
}
.modal-scroll::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.modal-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  margin: 4px 0 6px;
  text-align: center;
}

.modal-description {
  font-size: clamp(12px, 1.6vw, 13px);
  color: var(--text-muted);
  margin: 0 0 14px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.18s ease-out, transform 0.18s ease-out;
  z-index: 3;
}
.modal-close:hover {
  color: #e5e7eb;
  transform: scale(1.05);
}

.modal--finalists {
  max-width: min(800px, calc(100vw - 36px));
}

.finalists-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: 10px;
}


.finalist-card {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;

  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out,
    border-color 0.22s ease-out;

  appearance: none;
  padding: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.finalist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 6, 23, 0.86) 0%,
    rgba(3, 6, 23, 0.35) 42%,
    rgba(3, 6, 23, 0.04) 78%
  );
  z-index: 0;
}

.finalist-name {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 10px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.finalist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 28px rgba(56, 189, 248, 0.42);
}

.finalist-card.is-selected {
  border-color: #e879f9;
  box-shadow: 0 0 0 2px rgba(232, 121, 249, 0.85),
    0 18px 44px rgba(232, 121, 249, 0.35), 0 0 52px rgba(56, 189, 248, 0.35);
  transform: translateY(-4px) scale(1.015);
}

.final-vote-btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: white;
  cursor: pointer;

  background: linear-gradient(120deg, #a855f7, #ec4899, #38bdf8);
  background-size: 200% 200%;

  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.95),
    0 0 40px rgba(236, 72, 153, 0.7);

  transition: background-position 0.6s ease-out, transform 0.18s ease-out,
    box-shadow 0.18s ease-out, opacity 0.18s ease-out;
}

.final-vote-btn:hover:not(:disabled) {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 1), 0 0 48px rgba(236, 72, 153, 0.9);
}

.final-vote-btn:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
  filter: grayscale(0.25);
}


.intro-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 18, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  padding: 18px;
}
.intro-overlay.intro-overlay--visible {
  display: flex;
}

.intro-modal {
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  padding: 26px 24px 22px;
  position: relative;

  background: radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.3),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(236, 72, 153, 0.3),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.97);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.95),
    0 0 72px rgba(59, 130, 246, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.9);
  text-align: center;
  max-height: min(620px, calc(100vh - 36px));
  overflow: auto;
}

.intro-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.intro-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.intro-connect-btn {
  margin-top: 4px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(120deg, #5865f2, #3b82f6);
  background-size: 200% 200%;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.95),
    0 0 32px rgba(88, 101, 242, 0.8);
  transition: background-position 0.5s ease-out, transform 0.16s ease-out,
    box-shadow 0.18s ease-out, opacity 0.18s ease-out;
}
.intro-connect-btn:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 1), 0 0 40px rgba(88, 101, 242, 0.95);
}
.intro-hint {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}
.bg-corner-image {
  position: fixed;
  right: 20px;
  bottom: 20px;
  rotate: 10deg;
  width: 420px;
  height: 420px;
  background-image: url(/images/re-tree.b74590284998349a28d4.gif);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;

  pointer-events: none;
  z-index: 0;
  opacity: 0.9; 
}
.bg-corner-left {
  width: 220px;
  height: 220px;
  left: 20px;
  rotate: -10deg;
  right: auto;
  bottom: 10px;
  background-image: url(/images/podarki.5ad791b7750266bb4268.png);
  background-position: bottom left;
}

#snow-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.award-card,
.slider-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.award-card::after,
.slider-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 4, 18, 0.75),
    rgba(3, 4, 18, 0.35),
    rgba(3, 4, 18, 0.15)
  );
  z-index: 0;
}
.award-card span,
.slider-card span {
  position: relative;
  z-index: 1;
}
.slider-card img,
.slider-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.discord-float-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;

  padding: 10px 16px;
  border-radius: 999px;
  border: none;

  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: white;

  background: linear-gradient(120deg, #5865f2, #3b82f6);
  background-size: 200% 200%;

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9),
    0 0 24px rgba(88, 101, 242, 0.8);

  transition: background-position 0.5s ease, transform 0.15s ease,
    box-shadow 0.2s ease, opacity 0.2s ease;
}

.discord-float-btn:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 1), 0 0 36px rgba(88, 101, 242, 0.95);
}

.intro-close {
  position: absolute;
  top: 10px;
  right: 12px;

  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;

  transition: color 0.2s ease, transform 0.2s ease;
}

.intro-close:hover {
  color: #e5e7eb;
  transform: scale(1.1);
}

@keyframes snowFall {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}
@keyframes snowFall {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50px 100vh;
  }
}
@keyframes snowFall {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}
@keyframes snowFall {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50px 100vh;
  }
}
@media (max-width: 560px) {
  :root {
    --slider-visible: 1;
    --content-max: 640px;
  }
  .bg-space-object {
    opacity: 0.55;
    width: clamp(28px, 8vw, 52px);
    filter: drop-shadow(0 0 8px rgba(148, 163, 184, 0.6));
  }
  .finalists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 380px) {
  .finalists-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 561px) and (max-width: 980px) {
  :root {
    --slider-visible: 2;
  }
}
@media (min-width: 1200px) {
  .slider {
    gap: 34px;
  }
}
@media (max-width: 1200px) {
  .bg-corner-image {
    width: 260px;
    height: 260px;
    opacity: 0.8;
    right: 5px;
    bottom: 10px;
  }
  .bg-corner-left {
    width: 180px;
    height: 180px;
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .bg-corner-image {
    width: 200px;
    height: 200px;
    opacity: 0.6;
    right: 5px;
    bottom: 10px;
  }
  .bg-corner-left {
    width: 100px;
    height: 100px;
    opacity: 0.6;
  }
}



.final-vote-btn {
  position: relative;
  overflow: hidden;
}


.btn-loader,
.btn-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
}


.final-vote-btn.is-loading .btn-text {
  opacity: 0;
}

.final-vote-btn.is-loading .btn-loader {
  opacity: 1;
}

.loader-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.25);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.final-vote-btn.success {
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  box-shadow:
    0 0 25px rgba(168, 85, 247, 0.6),
    0 0 40px rgba(236, 72, 153, 0.35);
}

.final-vote-btn.success .btn-success {
  opacity: 1;
}

.final-vote-btn.success .btn-loader {
  opacity: 0;
}

.btn-success svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}
.final-vote-btn:disabled {
  opacity: 1; 
}


.final-vote-btn .btn-text {
  transition: opacity 0.25s ease, transform 0.25s ease;
}


.final-vote-btn .btn-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.35s ease;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}


.btn-success {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;

  opacity: 0;
  transform: translateY(6px) scale(0.96);

  font-weight: 600;
  letter-spacing: 0.04em;

  transition:
    opacity 0.3s ease,
    transform 0.35s ease;
}

.btn-success svg {
  width: 18px;
  height: 18px;

  stroke: white;
  stroke-width: 2.5;
  fill: none;

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}


.final-vote-btn.success .btn-text {
  opacity: 0;
  transform: translateY(-6px);
}

.final-vote-btn.success .btn-success {
  opacity: 1;
  transform: translateY(0) scale(1);
}
