/* Minimal, clean styling for Madden365 (refined) */
:root {
  --bg: #0f172a;
  --fg: #e5e7eb;
  --muted: #94a3b8;
  --accent: #22d3ee;
  --card: #111827;
  --link: #38bdf8;
}

html {scroll-behavior: smooth;}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--fg); background: var(--bg); }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid rgba(148,163,184,.15);
  position: sticky; top: 0; backdrop-filter: saturate(180%) blur(8px);
  background: rgba(15,23,42,.75); z-index: 10;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo { font-size: 28px; }
.brand h1 { font-size: 20px; margin: 0; letter-spacing: .5px; }

nav a { margin-left: 18px; color: var(--fg); opacity: .9; }
nav a:hover { opacity: 1; }

.hero {
  padding: 80px 0 48px;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(56,189,248,.15), transparent 60%),
              radial-gradient(1000px 500px at 80% 0%, rgba(34,197,94,.12), transparent 60%);
  text-align: center;
}
.hero h2 { font-size: clamp(28px, 6vw, 44px); margin: 0 0 12px; }
.hero p { margin: 0 auto 0; max-width: 720px; color: var(--muted); font-size: 18px; }

.about, .survey { padding: 44px 0; }
.about p { color: var(--fg); opacity: .9; }

.survey .iframe-wrap {
  position: relative; background: var(--card); border: 1px solid rgba(148,163,184,.2);
  border-radius: 12px; padding: 10px; margin-top: 10px;
}
.survey iframe {
  width: 100%; height: 2722px; border: 0; display: block; border-radius: 10px;
}
.muted { color: var(--muted); margin-top: 0; }

.site-footer { border-top: 1px solid rgba(148,163,184,.15); padding: 20px 0; text-align: center; color: var(--muted); }
/* make entire brand clickable, but never underline the whole link */
a.brand-link {
  color: var(--fg);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* keep the emoji clean */
a.brand-link .logo {
  text-decoration: none;
}

/* show underline ONLY on the text when hovering the brand */
a.brand-link:hover .brand-text {
  text-decoration: underline;
}