/* Minimal static site styles for FlaccidDick.com */
:root {
  color-scheme: dark;
  color: #e8e8e8;
  background: #0b0b10;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

body, a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  background: #09090f;
  border-bottom: 1px solid #222;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  color: #9fd6ff;
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 10px;
}

nav a:hover,
nav a:focus {
  color: #fff;
  background: rgba(159, 214, 255, 0.08);
  border-color: rgba(159, 214, 255, 0.2);
}

.hero {
  margin: 48px 0 32px;
  text-align: center;
}

.hero p {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 1rem;
  color: #d3d3d3;
}

.footer {
  border-top: 1px solid #222;
  margin-top: 48px;
  padding-top: 20px;
  color: #9a9a9a;
  font-size: 0.95rem;
}

.visit-counter {
  margin-top: 10px;
}
