* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-bg: #242122;
  --brand-accent: #8c6b1c;
  --brand-gold: #8c6b1c;
  --brand-green: #8c6b1c;
  --card-bg: rgba(18, 17, 17, 0.72);
  --text-primary: #f5f5f5;
  --text-secondary: rgba(245, 245, 245, 0.75);
  --blur: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(
      circle at 15% 15%,
      rgba(140, 107, 28, 0.38),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(140, 107, 28, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(140, 107, 28, 0.28),
      transparent 60%
    ),
    #171516;
  color: var(--text-primary);
  overflow-x: hidden;
  overflow-y: auto;
}

.main-wrapper {
  width: min(480px, 100%);
  display: grid;
  gap: 1.75rem;
  position: relative;
  margin: 0 auto;
}

.glass-card {
  background: linear-gradient(
    135deg,
    rgba(36, 33, 34, 0.9),
    rgba(36, 33, 34, 0.64)
  );
  border-radius: 28px;
  padding: 2.5rem 2rem 2.75rem;
  border: 1px solid rgba(140, 107, 28, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(var(--blur));
  position: relative;
  isolation: isolate;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(140, 107, 28, 0.16),
    transparent 60%
  );
  z-index: -1;
}

.branding {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.branding img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(140, 107, 28, 0.35));
}

.branding h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.branding p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.button-grid {
  display: grid;
  gap: 1rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    rgba(54, 50, 51, 0.88),
    rgba(28, 26, 27, 0.92)
  );
  border: 1px solid rgba(140, 107, 28, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.link-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(140, 107, 28, 0.55),
    rgba(79, 63, 27, 0.3),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}

.link-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(140, 107, 28, 0.65);
  box-shadow: 0 18px 45px rgba(140, 107, 28, 0.35),
    0 0 32px rgba(140, 107, 28, 0.45);
}

.link-card:hover::before {
  opacity: 1;
}

.link-card.cta-primary {
  background: #e6c787;
  border-color: rgba(153, 117, 29, 0.55);
  box-shadow: 0 22px 55px rgba(153, 117, 29, 0.36),
    0 0 42px rgba(153, 117, 29, 0.45);
  color: #2a1e0b;
}

.link-card.cta-primary::before {
  background: linear-gradient(
    135deg,
    rgba(255, 246, 210, 0.8),
    rgba(177, 134, 30, 0.55),
    transparent 72%
  );
}

.link-card.cta-primary .icon-wrapper {
  background: radial-gradient(
    circle,
    rgba(209, 167, 74, 0.82),
    rgba(102, 78, 25, 0.38)
  );
  color: #3a290c;
  box-shadow: inset 0 0 16px rgba(140, 107, 28, 0.38),
    0 0 10px rgba(140, 107, 28, 0.5);
}

.link-card.cta-primary .label-stack small {
  color: rgba(110, 82, 18, 0.78);
}

.link-card.cta-primary .typing-label {
  color: #2a1e0b;
}

.link-card.cta-primary:hover {
  border-color: rgba(170, 130, 33, 0.78);
  box-shadow: 0 26px 60px rgba(170, 130, 33, 0.5),
    0 0 48px rgba(170, 130, 33, 0.62);
}

.icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    rgba(140, 107, 28, 0.65),
    rgba(74, 58, 24, 0.25)
  );
  color: var(--brand-accent);
  box-shadow: inset 0 0 12px rgba(140, 107, 28, 0.4),
    0 0 8px rgba(140, 107, 28, 0.45);
}

.icon-wrapper svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.label-stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.label-stack small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(140, 107, 28, 0.7);
}

.typing-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  line-height: 1.35;
  white-space: normal;
}

@media (max-width: 520px) {
  body {
    padding: 2.1rem 0.95rem;
    align-items: flex-start;
  }

  .glass-card {
    padding: 1.9rem 1.35rem 2.2rem;
    border-radius: 22px;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .typing-label {
    font-size: 0.92rem;
  }

  .link-card {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .locations-card {
    padding: 1.35rem 1.2rem;
    border-radius: 20px;
  }

  .location-item span {
    font-size: 0.88rem;
  }

  .card-footer {
    font-size: 0.78rem;
    gap: 0.25rem;
  }
}

@media (max-width: 390px) {
  body {
    padding: 2rem 0.75rem;
  }

  .branding img {
    width: 140px;
  }

  .branding p {
    font-size: 0.9rem;
  }

  .link-card {
    padding: 0.85rem 0.95rem;
  }

  .typing-label {
    font-size: 0.88rem;
  }

  .icon-wrapper {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 340px) {
  body {
    padding: 1.8rem 0.6rem;
  }

  .glass-card {
    padding: 1.65rem 1.1rem 2rem;
  }

  .link-card {
    gap: 0.65rem;
  }

  .typing-label {
    font-size: 0.82rem;
  }

  .label-stack small {
    font-size: 0.68rem;
  }

  .locations-card h2 {
    font-size: 1rem;
  }
}

.locations-card {
  background: linear-gradient(
    135deg,
    rgba(36, 33, 34, 0.88),
    rgba(54, 50, 51, 0.82)
  );
  border-radius: 24px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(140, 107, 28, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: grid;
  gap: 1rem;
}

.locations-card h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
}

.location-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  background: rgba(24, 22, 23, 0.9);
  border: 1px solid rgba(140, 107, 28, 0.18);
  box-shadow: inset 0 0 18px rgba(140, 107, 28, 0.12);
}

.location-item strong {
  color: var(--brand-accent);
  letter-spacing: 0.05em;
}

.location-item span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.4;
}

.card-footer {
  margin-top: 1rem;
  text-align: center;
  color: rgba(245, 245, 245, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: grid;
  gap: 0.35rem;
}

.card-footer a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-footer a:hover {
  color: var(--brand-gold);
}
