:root {
  --bg: #fdfdfd;
  --text: #222;
  --accent: #4b6bfb;
  --accent2: #ff6bcb;
  --subtext: #555;
  --font: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 0 1rem;
}

header {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.1rem;
  color: var(--subtext);
  max-width: 600px;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.store-button {
  position: relative;
  display: inline-block;
  cursor: default;
  transition: all 0.3s ease;
}

.store-button img {
  display: block;
  filter: grayscale(0.1);
  opacity: 1;
  transition: all 0.3s ease;
}

.store-button:hover img {
  transform: translateY(-5px);
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

.store-button:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}

footer {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  line-height: 1.5;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

footer a:hover {
  color: #3556d3;
  transform: translateY(-2px);
  text-shadow: 0 4px 10px rgba(75,107,251,0.3);
}

@media (max-width: 600px) {
  h1 { font-size: 2.3rem; }
  p { font-size: 1rem; }
  .store-buttons { gap: 0.5rem; }
}
