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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-x: hidden;
}

main {
  padding: 2rem;
  max-width: 700px;
  width: 100%;
}

.cloud-icon {
  width: clamp(88px, 18vw, 132px);
  aspect-ratio: 1;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 0 22px rgba(100, 180, 255, 0.45));
}

.cloud-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(120, 190, 255, 0.26) 0%, rgba(120, 190, 255, 0.08) 44%, rgba(120, 190, 255, 0) 72%);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.yes-button {
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font: inherit;
}

.yes-text {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #a8d8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  user-select: all;
}

h1 {
  margin: 0 0 0.5rem;
  line-height: 1;
}

.yes-button:focus-visible {
  outline: 3px solid rgba(168, 216, 255, 0.8);
  outline-offset: 10px;
  border-radius: 12px;
}

h2 {
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 400;
  color: #8899aa;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.info p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #aabbcc;
  line-height: 1.7;
}

.info strong {
  color: #ff6b6b;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: #8899aa;
}

.timeline-item .year {
  width: 80px;
  text-align: right;
  font-weight: 600;
  color: #667788;
}

.timeline-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334455;
  border: 2px solid #556677;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-item .label {
  width: 80px;
  text-align: left;
  font-weight: 600;
}

.timeline-item:last-child .dot {
  background: #ff6b6b;
  border-color: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.timeline-item:last-child .label {
  color: #ff6b6b;
}

.viral-prompt {
  font-size: 1rem;
  color: #c8d6e5;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.viral-prompt strong {
  color: #fff;
}

.share-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
  margin-bottom: 2rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.copy-btn.copied {
  border-color: #4ecdc4;
  color: #4ecdc4;
}

.community-section {
  margin-bottom: 1.5rem;
}

footer {
  padding: 2rem;
  color: #ccaacc;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

footer a {
  color: #cc55cc;
  text-decoration: none;
}

footer a:hover {
  color: #cc00cc;
}

.footer-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
}

.footer-logos a {
  display: inline-flex;
  align-items: center;
}

.footer-logos img {
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-logos img:hover {
  opacity: 1;
}

.footer-logos .logo-yuryv {
  height: 28px;
}

.footer-logos .logo-digitalby {
  height: 20px;
  filter: invert(1) grayscale(1);
}
