:root {
  --mint-green: #147b65;
  --mint-light: #59d39c;
  --deep-light-blue: #299ec2;
  --deep-blue-light: #00a1dc;
  --corporate-blue: #1541aa;
  --gold-yellow: #e7cc32;
  --gold-light: #d6dd8b;
  --amber-fire: #c42727;
  --amber-light: #f0afa7;
  --white: #ffffff;
  --black: #000000;
  --light-grey: #f4f4f4;
  --dark-grey: #333333;
  --border-grey: #eaeaea;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  color: var(--black);
  font-weight: normal;
}

body {
  background-color: var(--white);
  line-height: 1.6;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.warex-title {
  font-size: 54px;
  font-weight: bold;
  color: var(--corporate-blue);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 1.5rem;
}

h1 { font-size: 42px; color: var(--corporate-blue); margin-top: 2rem; }

h2 {
  font-size: 32px;
  color: var(--deep-light-blue);
  border-bottom: 2px solid var(--light-grey);
  margin: 2rem 0 1rem 0;
  padding-bottom: 5px;
}

h3 { color: var(--mint-green); font-size: 24px; margin-top: 1.5rem; }

a {
  color: var(--mint-green);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

nav {
  background: var(--light-grey);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

nav ul {
  display: flex;
  gap: 25px;
  margin: 0;
  list-style: none;
  padding-left: 0;
}

nav ul li {
  padding: 0;
  border: none;
  color: black !important;
}

nav ul li::before { content: none; } 

nav ul li a {
  color: var(--amber-fire);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

nav ul li a:hover {
  color: var(--gold-yellow);
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

ul li {
  position: relative;
  padding: 10px 0 10px 35px;
  border-bottom: 1px solid var(--light-grey);
  transition: background 0.2s ease;
}

ul li::before {
  content: "●";
  position: absolute;
  left: 10px;
  color: var(--mint-green);
  font-size: 14px;
}

ul li:hover {
  background-color: var(--mint-light);
}

ul ul { margin: 0.5rem 0; }
ul ul li { border-bottom: none; padding-left: 30px; }
ul ul li::before { content: "○"; color: var(--deep-light-blue); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th {
  background: var(--corporate-blue);
  color: var(--white);
  text-align: left;
  padding: 12px;
}

td {
  padding: 12px;
  border: 1px solid var(--border-grey);
}

tr:nth-child(even) { background: var(--deep-blue-light); }

section {
  background: var(--white);
  border-left: 5px solid var(--amber-fire);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--amber-light);
  border-radius: 0 8px 8px 0;
  border-left: 5px solid var(--amber-fire);
  font-style: italic;
}

footer {
  margin-top: 4rem;
  font-size: 14px;
  color: var(--dark-grey);
  border-top: 1px solid var(--border-grey);
  padding-top: 20px;
  text-align: center;
}

code {
  font-family: "Noto Sans Mono", monospace;
  background-color: var(--gold-light);
  color: var(--black); /* Darker gold for contrast */
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

pre {
  background: var(--dark-grey);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

pre code {
  background: transparent;
  color: var(--deep-light-blue);
  padding: 0;
}