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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.site-wrapper {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 80%, rgba(120, 180, 255, 0.15) 0, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.1) 0, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(80, 160, 255, 0.08) 0, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0, #1a1a1a 100%);
  position: relative;
}

.particle-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #4facfe;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Leaderboards */
.leaderboards-section {
  padding: 80px 0 20px;
}
.lb-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .lb-cards-grid { grid-template-columns: 1fr; }
}
.lb-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.lb-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lb-card-title {
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lb-card-title i { color: #facc15; }
.lb-tabs { display: inline-flex; gap: 8px; }
.lb-tab {
  background: rgba(255,255,255,0.05);
  color: #d1d5db;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}
.lb-tab.active {
  background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%);
  color: #fff;
  border-color: transparent;
}
.lb-card-body { padding: 10px; }
.lb-list { list-style: none; margin: 0; padding: 0; }
.lb-list.is-tab-hidden { display: none; }
.lb-row {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
  transition: background 0.18s ease;
}
.lb-row-inner {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  padding: 16px 14px;
  transition: transform 0.18s ease;
  will-change: transform;
}
.lb-list.no-score .lb-row-inner { grid-template-columns: 36px 1fr; }
.lb-row:last-child { border-bottom: none; }
.lb-row.gold { border-left: 4px solid #facc15; }
.lb-row.silver { border-left: 4px solid #e5e7eb; }
.lb-row.bronze { border-left: 4px solid #f59e0b; }
.lb-rank { font-weight: 800; color: #9ca3af; }
.lb-row.gold .lb-rank { color: #facc15; }
.lb-row.silver .lb-rank { color: #e5e7eb; }
.lb-row.bronze .lb-rank { color: #f59e0b; }
.lb-name { color: #e5e7eb; font-weight: 600; }
.lb-name-text { display: inline-block; }
.lb-score { color: #9ca3af; font-weight: 700; }
.lb-row:hover { background: rgba(255,255,255,0.03); }

/* Luxury hover for Top 1–3 */
.lb-row.gold:hover .lb-row-inner,
.lb-row.silver:hover .lb-row-inner,
.lb-row.bronze:hover .lb-row-inner { transform: scale(1.02); cursor: pointer; }
.lb-row.gold:hover .lb-name-text {
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.7), 0 0 24px rgba(245, 158, 11, 0.45);
}
.lb-row.silver:hover .lb-name-text {
  text-shadow: 0 0 12px rgba(229, 231, 235, 0.8), 0 0 26px rgba(209, 213, 219, 0.55);
}
.lb-row.bronze:hover .lb-name-text {
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6), 0 0 22px rgba(217, 119, 6, 0.45);
}
.is-hidden { display: none; }
.lb-medal { margin-right: 8px; }
.lb-row.gold .lb-medal { color: #facc15; }
.lb-row.silver .lb-medal { color: #e5e7eb; }
.lb-row.bronze .lb-medal { color: #f59e0b; }
.lb-list { overflow-y: hidden; overflow-x: hidden; }
.lb-list.scrollable { overflow-y: auto; }

/* Themed vertical scrollbar for Show More lists */
.lb-list.scrollable { 
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(79,172,254,0.8) rgba(255,255,255,0.06);
}
.lb-list.scrollable::-webkit-scrollbar { width: 10px; height: 10px; }
.lb-list.scrollable::-webkit-scrollbar-track { 
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.lb-list.scrollable::-webkit-scrollbar-thumb { 
  background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.12);
}
.lb-list.scrollable::-webkit-scrollbar-thumb:hover { 
  background: linear-gradient(180deg, #6bc1ff 0%, #3af1ff 100%);
}

/* Special effects for Top 1, 2, 3 names */
.lb-row.gold .lb-name-text {
  background: linear-gradient(90deg, #fff3b0 0%, #facc15 40%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.35), 0 0 14px rgba(245, 158, 11, 0.15);
  animation: lbGoldPulse 2.4s ease-in-out infinite;
}

.lb-row.silver .lb-name-text {
  background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 50%, #d1d5db 100%);
  -webkit-background-clip: text;  
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(229, 231, 235, 0.40);
}

.lb-row.bronze .lb-name-text {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 60%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes lbGoldPulse {
  0%, 100% {
    text-shadow: 0 0 6px rgba(250, 204, 21, 0.35), 0 0 14px rgba(245, 158, 11, 0.15);
  }
  50% {
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.65), 0 0 22px rgba(245, 158, 11, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-row.gold .lb-name-text { animation: none; }
}

/* Award Modal (Kartu Penghargaan) */
#award-modal .modal-content.award-card {
  max-width: 560px;
  padding-top: 56px;
}
.award-card .award-avatar {
  width: 160px;
  height: 160px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}
.award-card .award-name {
  font-size: 1.6em;
  font-weight: 800;
  margin: 6px 0 8px 0;
}
.award-card .award-title {
  font-size: 1.05em;
  color: #d1d5db;
}
.award-card.gold .award-name {
  background: linear-gradient(90deg, #fff3b0, #facc15 45%, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.award-card.silver .award-name {
  background: linear-gradient(90deg, #ffffff, #e5e7eb 50%, #d1d5db);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.award-card.bronze .award-name {
  background: linear-gradient(90deg, #d97706, #f59e0b 60%, #b45309);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lb-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 16px;
}
.lb-show-more {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.lb-show-more:hover {
  border-color: rgba(79,172,254,0.35);
  background: linear-gradient(135deg, rgba(79,172,254,0.15) 0, rgba(0,242,254,0.15) 100%);
}
.lb-updated { color: #6b7280; font-size: .9rem; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}




.hero-section {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  margin-bottom: 40px;
}

.hero-title-h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0, #4facfe 50%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.hero-subtitle-p {
  font-size: 1.4em;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta-button {
  background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%);
  color: #fff;
  padding: 20px 45px;
  border: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}
.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.features-section {
  padding: 80px 0;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 172, 254, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
  font-size: 2.5em;
  color: #4facfe;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-description {
  color: #9ca3af;
  line-height: 1.6;
  min-height: 180px;
  font-size: 1.05em;
  position: relative;
  z-index: 1;
}

.feature-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0;
  border-radius: 12px;
}

.feature-image-wrapper {
  margin-top: auto;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-title-h2 {
  font-size: 3em;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #fff 0, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.features-subtitle-p {
  text-align: center;
  font-size: 1.2em;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-title-h2 {
  font-size: 3em;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #fff 0, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.testimonials-subtitle-p {
  text-align: center;
  font-size: 1.2em;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto 40px;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0.35;
}
.testimonial-card.active {
  opacity: 1;
  transform: scale(1.02);
  border-color: rgba(79, 172, 254, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.testimonial-card.prev,
.testimonial-card.next {
  opacity: 0.65;
  cursor: pointer;
}

/* Hover effects aligned with site theme */
.testimonial-card:hover {
  border-color: rgba(79, 172, 254, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 2px rgba(79, 172, 254, 0.25) inset,
    0 0 30px rgba(79, 172, 254, 0.25);
  transform: translateY(-4px) scale(1.015);
}
.testimonial-card.active:hover {
  transform: translateY(-4px) scale(1.03);
}
.testimonial-card:hover .testimonial-avatar {
  box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.35), 0 0 16px rgba(79, 172, 254, 0.35);
}
.testimonial-card:hover .testimonial-name {
  background: linear-gradient(135deg, #ffffff 0, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-text {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1.05em;
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  color: #9ca3af;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35em;
  color: #9ca3af;
}
/* Image avatar untuk testimonial */
.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.testimonial-name {
  color: #fff;
  font-weight: 600;
}
.testimonial-handle {
  color: #9ca3af;
  font-size: 0.95em;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
}
.testimonial-dot.active {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  transform: scale(1.2);
}
.testimonials-dots .testimonial-dot:hover {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .ip-text { 
    font-size: 1.8em;
  }
  .features-grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .final-cta-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ip-address-text-p {
    font-size: 0.5em;
    word-break: break-all;
  }
  .ip-copy-hint-p {
    font-size: 0.95em;
  }
  .ip-copy-button-div {
    margin-left: 8vw;
    margin-right: 8vw;
    font-size: 0rem;
  }
}

.copy-notification-popup {
  position: fixed;
  top: 30px;
  right: 30px;
  background: rgba(0, 255, 136, 0.9);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
}
.copy-notification-popup.show {
  transform: translateX(0);
}

.final-cta-section {
  padding: 80px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  margin-top: 120px;
  margin-bottom: 120px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Tutorial Section */
.tutorial-section {
  padding: 60px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  margin-top: 80px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.tutorial-title-h2 {
  font-size: 2.2em;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.tutorial-subtitle-p {
  font-size: 1.1em;
  color: #9ca3af;
  margin-bottom: 26px;
}
.tutorial-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tutorial-button {
  background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2), 0 10px 25px rgba(79, 172, 254, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tutorial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.35), 0 16px 32px rgba(79, 172, 254, 0.33);
}

.final-cta-title-h2 {
  font-size: 2.5em;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.final-cta-subtitle-p {
  font-size: 1.2em;
  color: #9ca3af;
  margin-bottom: 40px;
}

.ip-copy-button-div {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0, rgba(0, 242, 254, 0.15) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 18px 18px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.ip-address-text-p {
  font-size: 2.5em;
  font-weight: 700;
  color: #4facfe;
  margin-bottom: 8px;
  letter-spacing: 1px;
  word-break: break-all;
}
@media (max-width: 600px) {
  .ip-copy-button-div {
    padding: 10px 6vw;
    font-size: 1em;
    min-width: 0;
    max-width: 100%;
    word-break: break-all;
  }
  .ip-address-text-p {
    font-size: 1.2em;
    word-break: break-all;
  }
}
.ip-copy-button-div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: subtract;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
}
.ip-copy-button-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.ip-copy-hint-p {
  font-size: 1em;
  color: #9ca3af;
  opacity: 0.9;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  padding: 48px 32px 32px 32px;
  min-width: 340px;
  max-width: 95vw;
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-content.visible {
  transform: scale(1);
  opacity: 1;
}

.modal-title-h2 {
  font-size: 2.2em;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

.modal-close-button {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 1.5em;
  color: #9ca3af;
  background: 0 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.modal-close-button:hover {
  color: #4facfe;
  transform: rotate(90deg) scale(1.2);
}

.modal-links-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.vote-modal-link {
  background: linear-gradient(135deg, #4facfe 0, #00f2fe 100%);
  color: #fff;
  padding: 16px 0;
  border: none;
  border-radius: 16px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(79, 172, 254, 0.15);
  display: block;
}
.vote-modal-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(79, 172, 254, 0.25);
}

@media (max-width: 600px) {
  .modal-content {
    padding: 24px 0;
    min-width: 0;
    width: 70vw;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
  .modal-title-h2 {
    font-size: 1.3em;
  }
  .vote-modal-link {
    width: 70%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
