/* Common styles for Faprank */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0f0f1a;
  color: #eee;
  min-height: 100vh;
}

/* Global header */
.global-header {
  background: #0a0a12;
  border-bottom: 1px solid #1a1a2e;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.global-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.site-logo {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6b9d, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-logo:hover {
  opacity: 0.8;
}

.site-tagline {
  font-size: 12px;
  color: #666;
}

.global-nav {
  display: flex;
  gap: 24px;
}

.global-nav a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.global-nav a:hover {
  color: #fff;
}

.global-nav a.active {
  color: #fff;
}

/* Global footer */
.global-footer {
  text-align: center;
  padding: 32px 20px;
  color: #555;
  font-size: 12px;
  border-top: 1px solid #1a1a2e;
  margin-top: 48px;
}

.global-footer .affiliate-notice {
  margin-bottom: 12px;
  color: #666;
}

.global-footer .footer-links {
  margin-bottom: 12px;
}

.global-footer .footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 8px;
}

.global-footer .footer-links a:hover {
  color: #888;
}

.global-footer .copyright {
  color: #444;
}

/* Last updated */
.last-updated {
  color: #666;
  font-size: 12px;
  margin-top: 8px;
}
