* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f0f0f;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.admin-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.9);
  border: 2px solid #52ff8f;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  z-index: 1000;
  display: none;
  box-shadow: 0 0 30px rgba(82,255,143,0.4);
}

.container {
  width: 100%;
  max-width: 500px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #ff4d4d;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.ticker {
  white-space: nowrap;
  display: inline-block;
  animation: tickerMove 12s linear infinite;
  font-weight: bold;
  opacity: 0.8;
}

@keyframes tickerMove {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 20px;
  line-height: 1;
  cursor: pointer;
}

.instagram-link {
  display: inline-block;
  margin-bottom: 25px;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  font-size: 1rem;
}

.instagram-link:hover {
  opacity: 1;
}

.answer {
  font-size: clamp(4rem, 18vw, 8rem);
  font-weight: bold;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.answer.yes {
  color: #52ff8f;
  text-shadow: 0 0 20px rgba(82,255,143,0.6);
}

.answer.no {
  color: #ff5a5a;
  text-shadow: 0 0 20px rgba(255,90,90,0.6);
}

img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.footer {
  opacity: 0.6;
  font-size: 0.9rem;
}

.loading-content {
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.loading-title {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.loading-bar {
  width: 100%;
  height: 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.loading-progress {
  height: 100%;
  width: 0%;
  background: #52ff8f;
  box-shadow: 0 0 20px rgba(82,255,143,0.8);
  transition: width 0.4s ease;
}

.loading-text {
  opacity: 0.7;
  font-size: 0.9rem;
}