:root {
  --bg-dark: #0f172a;
  --bg-mid: #1e293b;
  --panel: #17c4fb;
  --ink: #111827;
  --ink-soft: #475569;
  --accent: #0ea5e9;
  --accent-strong: #0284c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

#wrap {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-section,
.links-section {
  width: 100%;
  padding: 2rem 1.25rem;
}

.hero-section {
  flex: 1 1 50%;
  min-height: 0;
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e2e8f0;
}

.site-logo {
  width: min(440px, 80vw);
  height: auto;
  margin-bottom: 1rem;
}

.hero-section h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: 0.02em;
}

.hero-section p {
  margin: 0.55rem 0 0;
  color: #cbd5e1;
  font-size: 1rem;
}

.links-section {
  flex: 1 1 50%;
  background: var(--panel);
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 -18px 34px rgba(15, 23, 42, 0.25);
}

.linktree-button {
  display: block;
  width: min(560px, 92vw);
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  background: #0b1f5e;
  border: 2px solid #163a8a;
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.linktree-button:hover,
.linktree-button:focus-visible {
  border-color: #60a5fa;
  box-shadow: 0 10px 24px rgba(11, 31, 94, 0.35);
  transform: translateY(-2px);
  outline: none;
}

.linktree-button:active {
  transform: translateY(0);
  background: #12307a;
  border-color: #93c5fd;
}

.linktree-button-fill {
  flex: 1 1 auto;
  display: flex;
  width: min(560px, 92vw);
  min-height: 8rem;
  align-items: center;
  justify-content: center;
  background-image: url("src/images/eejokicom_button_tambreda.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #166534;
  border-color: #166534;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.linktree-button-fill:hover,
.linktree-button-fill:focus-visible {
  border-color: #86efac;
  box-shadow: 0 10px 24px rgba(21, 128, 61, 0.28);
}

.linktree-button-fill:active {
  background-image: url("src/images/eejokicom_button_tambreda.png");
  background-position: center center;
  border-color: #bbf7d0;
}

@media (max-width: 640px) {
  .hero-section {
    flex-basis: 50%;
    min-height: 0;
    padding-top: 6%;
    padding-bottom: 6%;
  }

  .links-section {
    border-radius: 20px 20px 0 0;
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }
}

