:root {
  --color-navy: #12294d;
  --color-navy-dark: #0c1e3a;
  --color-accent: #c8352b;
  --color-accent-dark: #a82a21;
  --color-gold: #d99a3d;
  --color-cream: #f7ecd9;
  --color-ink: #2a2420;
  --color-white: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-navy-dark);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background:
    linear-gradient(180deg, rgba(12,20,30,0.82) 0%, rgba(12,20,30,0.92) 100%),
    var(--bg-image, none) center / cover no-repeat;
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  padding: 36px 28px 30px;
  text-align: center;
}

.logo {
  max-width: 220px;
  margin: 0 auto 14px;
}

.tagline {
  font-family: var(--font-script);
  color: var(--color-accent);
  font-size: 1.4rem;
  margin: 0 0 28px;
  line-height: 1.2;
}

.links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 6px 16px rgba(18,41,77,0.25);
}
.link-btn:hover { transform: translateY(-2px); background: var(--color-navy-dark); }
.link-btn:nth-child(2) { background: var(--color-accent); box-shadow: 0 6px 16px rgba(200,53,43,0.3); }
.link-btn:nth-child(2):hover { background: var(--color-accent-dark); }

.link-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.link-label { flex: 1; text-align: left; }
.link-arrow { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  transition: background 0.15s ease;
}
.social a:hover { background: var(--color-accent); }
.social svg { width: 19px; height: 19px; fill: currentColor; }

.powered {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}
.powered-brand { display: flex; align-items: center; gap: 5px; font-weight: 800; color: var(--color-white); }
.powered-brand svg { width: 15px; height: 15px; fill: #4caf6d; }
