* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --black-3: #121212;
  --gold: #c89b3c;
  --gold-2: #8f6420;
  --gold-light: #e0b75c;
  --text: #f7f1df;
  --muted: #b8ad95;
  --border: rgba(200, 155, 60, 0.28);
  --shadow: rgba(200, 155, 60, 0.18);
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(200, 155, 60, 0.18), transparent 35%),
    radial-gradient(circle at bottom, rgba(143, 100, 32, 0.14), transparent 35%),
    linear-gradient(180deg, #000, #070707 45%, #000);
  color: var(--text);
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 460px;
  padding: 28px 18px 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(5, 5, 5, 0.98)),
    var(--black);
  box-shadow:
    0 0 45px rgba(0, 0, 0, 0.75),
    0 0 45px var(--shadow),
    inset 0 0 30px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.13);
  filter: blur(45px);
  top: -120px;
  right: -130px;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}

.logo-area,
.status,
.links,
footer {
  position: relative;
  z-index: 2;
}

.logo-area {
  text-align: center;
  margin-bottom: 18px;
}

.logo {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, #1a1a1a, #050505),
    var(--black);
  border: 1px solid rgba(224, 183, 92, 0.45);
  box-shadow:
    0 0 28px rgba(200, 155, 60, 0.20),
    inset 0 0 24px rgba(200, 155, 60, 0.08);
}

.logo span {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(224, 183, 92, 0.35);
}

.logo-area h1 {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.logo-area p {
  color: var(--muted);
  font-size: 15px;
}

.status {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(200, 155, 60, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32d46b;
  box-shadow: 0 0 14px #32d46b;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.link-btn {
  width: 100%;
  min-height: 76px;
  padding: 13px 14px;
  border-radius: 20px;
  border: 1px solid rgba(200, 155, 60, 0.20);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #0a0a0a;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.22s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(224, 183, 92, 0.13), transparent);
  transition: 0.45s ease;
}

.link-btn:hover::before {
  left: 120%;
}

.link-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 183, 92, 0.55);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(200, 155, 60, 0.13);
}

.link-btn:active {
  transform: scale(0.98);
}

.icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-2));
  box-shadow: 0 0 18px rgba(200, 155, 60, 0.18);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: #080808;
}

.icon text {
  fill: #080808;
  font-family: Arial, Helvetica, sans-serif;
}

.link-btn div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-btn strong {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.link-btn small {
  color: var(--muted);
  font-size: 13px;
}

.whatsapp .icon {
  background: linear-gradient(145deg, #d6ad55, #8d681f);
}

.ifood .icon {
  background: linear-gradient(145deg, #e2bd61, #9a6d24);
}

.ninenine .icon {
  background: linear-gradient(145deg, #d6a94b, #805919);
}

.menu .icon {
  background: linear-gradient(145deg, #e0b75c, #8b621d);
}

.maps .icon {
  background: linear-gradient(145deg, #d2a047, #755018);
}

.insta .icon {
  background: linear-gradient(145deg, #efca73, #8b621d);
}

footer {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
}

footer p {
  font-size: 13px;
  margin-bottom: 4px;
}

footer small {
  font-size: 12px;
  color: rgba(184, 173, 149, 0.75);
}

@media (max-width: 420px) {
  .page {
    padding: 18px 12px;
    align-items: flex-start;
  }

  .card {
    padding: 24px 14px 20px;
    border-radius: 24px;
  }

  .logo {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }

  .logo span {
    font-size: 38px;
  }

  .logo-area h1 {
    font-size: 25px;
  }

  .link-btn {
    min-height: 72px;
    border-radius: 18px;
    padding: 12px;
  }

  .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .icon svg {
    width: 26px;
    height: 26px;
  }

  .link-btn strong {
    font-size: 15px;
  }

  .link-btn small {
    font-size: 12px;
  }
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.coming-card {
  text-align: center;
}

.coming-box {
  margin: 24px 0;
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid rgba(200, 155, 60, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #090909;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 24px rgba(200, 155, 60, 0.04);
}

.coming-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 34px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-2));
  box-shadow: 0 0 25px rgba(200, 155, 60, 0.18);
}

.coming-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text);
}

.coming-box p {
  max-width: 330px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.coming-box strong {
  color: var(--gold-light);
  font-size: 15px;
}

.back-btn {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  background: linear-gradient(145deg, var(--gold-light), var(--gold-2));
  color: #080808;
  font-weight: 800;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: 0.22s ease;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(200, 155, 60, 0.2);
}