/* Trick Tuners - Dark performance custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF5722;
  --orange-dark: #E64A19;
  --amber: #FFC107;
  --bg: #121212;
  --surface: #1E1E1E;
  --surface-light: #2A2A2A;
  --text: #E0E0E0;
  --text-dim: #9E9E9E;
  --border: #333;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

/* Header */
.tt-header {
  background: var(--surface);
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
}

.tt-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5em;
}

.tt-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tt-brand:hover { color: var(--amber); }

.tt-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 1.25em;
}

.tt-nav a:hover, .tt-nav a.active { color: var(--orange); }

/* Main content */
.tt-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2em 1.5em 3em;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 2em 0 0.5em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--border);
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  color: var(--amber);
  text-transform: uppercase;
  margin: 1.5em 0 0.4em;
}

p { margin-bottom: 1.25em; }

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

strong { color: #fff; font-weight: 600; }

ul, ol { margin: 0 0 1.25em 1.5em; }
li { margin-bottom: 0.4em; }

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5em 0;
  display: block;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

/* Spec box (technical callout) */
.spec-box {
  background: var(--surface);
  border-left: 4px solid var(--orange);
  padding: 1.25em 1.5em;
  margin: 1.75em 0;
  border-radius: 0 4px 4px 0;
}

.spec-box h3 {
  margin-top: 0;
  font-size: 0.95em;
  color: var(--orange);
}

.spec-box p:last-child { margin-bottom: 0; }

/* Mod card (comparison/resource) */
.mod-card {
  background: var(--surface);
  border-left: 4px solid var(--amber);
  padding: 1.25em 1.5em;
  margin: 1.75em 0;
  border-radius: 0 4px 4px 0;
}

.mod-card h3 {
  margin-top: 0;
  color: var(--amber);
}

/* Hub list */
.hub-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.hub-list li {
  padding: 0.75em 0;
  border-bottom: 1px solid var(--border);
}

.hub-list li:last-child { border-bottom: none; }

.hub-list a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05em;
  text-transform: uppercase;
}

.hub-list .desc {
  display: block;
  font-size: 0.9em;
  color: var(--text-dim);
  margin-top: 0.2em;
  text-transform: none;
  font-family: -apple-system, sans-serif;
}

/* Homepage grid */
.tt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25em;
  margin: 2em 0;
}

.tt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25em 1.5em;
}

.tt-card h2 {
  font-size: 1em;
  margin: 0 0 0.4em;
  border-bottom: none;
  padding-bottom: 0;
}

.tt-card h2 a { color: var(--orange); }
.tt-card h2 a:hover { color: var(--amber); }

.tt-card p {
  font-size: 0.9em;
  color: var(--text-dim);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Footer */
.tt-footer {
  background: var(--surface);
  border-top: 2px solid var(--orange);
  padding: 2em 0;
  margin-top: 3em;
}

.tt-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5em;
  text-align: center;
}

.tt-footer-links { margin-bottom: 1em; }

.tt-footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0.75em;
}

.tt-footer-links a:hover { color: var(--orange); }

.tt-footer-copy {
  color: rgba(255,255,255,0.2);
  font-size: 0.75em;
}

/* Responsive */
@media (max-width: 700px) {
  .tt-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .tt-nav a { margin-left: 0; margin-right: 0.75em; font-size: 0.8em; }
  h1 { font-size: 1.6em; }
  .tt-content { padding: 1.5em 1em 2em; }
  .tt-grid { grid-template-columns: 1fr; }
}
