
/* ===== Modernized CSS for Fear of God series ===== */
/* Source baseline: style-feargod.css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root{
  --brand:#1b2d80;
  --text:#333;
  --link:#005a9c;
  --bg:#ffffff;
  --panel:#ffffff;
  --muted:#6b7280;
  --border:#d1d5db;
}

html, body { margin:0; padding:0; }
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 1rem;
}

main {
  max-width: 960px;
  margin: 0 auto;
  background: var(--panel);
  padding: min(5vw, 2rem);
  box-shadow: 0 0 10px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  border-radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--brand);
  margin: 0 0 .8rem 0;
  line-height: 1.25;
}

h1 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
h2 { font-size: clamp(1.35rem, 2.8vw, 1.8rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); }

p, li { margin: 0 0 1rem 0; }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  background-color: #fff;
  overflow-x: auto;
  display: block;
}
thead th { background:#f8fafc; }
td, th {
  padding: .75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

blockquote{
  border-left: 3px solid rgba(27,45,128,.25);
  padding-left: 1rem;
  margin: 1rem 0;
  color:#4b5563;
  font-style: italic;
}

/* Utilities */
.container{max-width:960px;margin:0 auto;padding:0 1rem;}
.muted{color:var(--muted);}

/* Responsive tweaks */
@media (max-width: 640px){
  body{padding:.75rem;}
  main{padding: 1rem;}
  table{font-size:.95rem;}
}
