:root {
  color-scheme: light;
  --flag-yellow: #ffd700;
  --flag-red: #bf0a30;
  --text-dark: #2f0d0f;
  --surface: #fff2b2;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f1d7b4 0%, #e5c79b 100%);
  color: var(--text-dark);
}

.site-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(100%, 720px);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(191, 10, 48, 0.8);
  border-radius: 32px;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.flag-icon {
  display: block;
  width: 80%;
  max-width: 720px;
  margin: 0 auto 1.8rem;
  height: auto;
}


.eyebrow {
  margin: 0 0 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--flag-red);
  font-size: 0.92rem;
}

h1 {
  margin: 0;
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flag-red);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.subtitle {
  margin: 1rem auto 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.info-block {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(47, 13, 15, 0.9);
}

.domain {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--flag-red);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.footer-note {
    opacity: 1.0;
    margin-top: 0.5rem;
    font-size: 1.0rem;
}

@media (max-width: 520px) {
  .hero {
    padding: 2rem 1.25rem 1.5rem;
  }
}
