body {
  margin: 0;
  background: #000000;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.phone-wrapper {
  width: 380px;
  min-height: 820px;
  margin: 20px auto;
  padding: 45px 18px 20px;
  border: 1px solid #fac30e;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #070707e0, transparent 25%),
    linear-gradient(315deg, #030303e0, transparent 25%),
    #050505;
  box-shadow: 0 0 25px rgba(240, 236, 3, 0.35);
}

.top-text {
  text-align: center;
  letter-spacing: 2px;
  font-weight: bold;
}

.hero-card {
  border: 1px solid #fac30e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 89, 255, 0.918);
}

.hero-card img {
  width: 100%;
  display: block;
}

.btn {
  display: block;
  text-align: center;
  margin: 22px 0;
  padding: 16px;
  border-radius: 28px;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: bold;
}

.btn.outline {
  color: #ffffff;
  border: 1px solid #fffb1a;
}

.btn.solid {
  color: #0c0c0c;
  background: linear-gradient(90deg, #fffb1a, #fffb1a);
  box-shadow: 0 0 18px rgba(0, 110, 255, 0.884);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.menu-grid a {
  padding: 13px;
  text-align: center;
  border: 1px solid #fffb1a;
  border-radius: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.running-text {
  margin-top: 25px;
  padding: 12px;
  border: 1px dashed #c8eb05;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  color: #e9e3e3;
}

footer {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #f8f8f8;
  text-align: center;
  font-size: 11px;
  color: #777;
}

footer span {
  color: #eeebeb;
}