* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 12px;
  color: #fff;
}

.page {
  width: min(100%, 520px);
  text-align: center;
}

.play-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #08bdf4, #7038ff);
  box-shadow: 0 0 22px rgba(0, 191, 255, 0.8);
}

.play-logo span {
  font-size: 27px;
  margin-left: 4px;
  color: #fff;
}

h1 {
  margin: 0;
  font-size: clamp(22px, 5vw, 29px);
  font-weight: 800;
  letter-spacing: -0.8px;
  text-shadow: 0 0 6px #00c8ff;
}

.subtitle {
  margin: 14px 0 15px;
  color: #cfcfcf;
  font-size: 8px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gallery-btn {
  min-height: 43px;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.gallery-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.gallery-btn:active {
  transform: scale(0.98);
}

.watch {
  background: linear-gradient(100deg, #287af0, #08a9ec);
  box-shadow: 0 0 14px rgba(0, 158, 255, 0.65);
}

.download {
  background: linear-gradient(100deg, #00c853, #00e676);
  box-shadow: 0 0 14px rgba(0, 229, 118, 0.55);
}

.daily {
  background: linear-gradient(100deg, #ff7900, #ff9900);
  box-shadow: 0 0 14px rgba(255, 136, 0, 0.6);
}

.groups {
  background: linear-gradient(100deg, #9c27b0, #df38ee);
  box-shadow: 0 0 14px rgba(210, 42, 255, 0.6);
}

.insta {
  background: linear-gradient(100deg, #ed1b2f, #f0a06b);
  box-shadow: 0 0 14px rgba(255, 67, 80, 0.55);
}

.footer {
  margin: 17px 0 0;
  color: #ffd900;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

@media (max-width: 360px) {
  body {
    padding-top: 22px;
  }

  .gallery-btn {
    min-height: 42px;
    font-size: 13px;
  }
}
