/* Minimalist, modern, responsive VPN landing page */
:root {
  --main-bg: #fff;
  --accent: #1a73e8;
  --text: #222;
  --muted: #888;
  --border: #eee;
  --radius: 16px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--main-bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}
header {
  padding: 32px 0 16px 0;
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
}
h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-align: center;
}
.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  gap: 32px;
  padding: 48px 0 32px 0;
}
.store-links {
  display: flex;
  gap: 24px;
}
.store-link img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px #0001;
  transition: transform 0.15s;
}
.store-link img:hover {
  transform: scale(1.05);
}
.contacts {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
}
.contacts a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 4px;
}
.contacts a:hover {
  text-decoration: underline;
}
footer {
  border-top: 1px solid var(--border);
  background: #fafbfc;
  padding: 16px 0;
  flex-shrink: 0;
}
.footer-content {
  text-align: center;
  font-size: 0.98rem;
  color: var(--muted);
}
.footer-link {
  color: var(--muted);
  text-decoration: none;
  margin: 0 4px;
}
.footer-link:hover {
  color: var(--accent);
}
@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding: 0 8px;
  }
  .main-content {
    padding: 32px 0 24px 0;
    gap: 20px;
  }
  .store-link img {
    height: 44px;
  }
}
