/* PlayDrift.pro — Static Site Stylesheet */
:root {
  --primary: #D91E18;
  --secondary: #1F2937;
  --bg: #F9FAFB;
  --text: #111827;
  --accent: #2563EB;
  --muted: #6B7280;
  --border: #E5E7EB;
  --card: #FFFFFF;
  --radius: 8px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Header */
.header {
  background: var(--secondary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; color: #fff; text-decoration: none; }
.logo span { color: var(--primary); }
.nav { display: flex; gap: 1.5rem; }
.nav a { color: #d1d5db; font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav a:hover { color: var(--primary); text-decoration: none; }

/* Hero */
.hero {
  background: var(--secondary);
  color: #fff;
  padding: 4rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.hero p { color: #9CA3AF; font-size: 1.1rem; margin-bottom: 1.5rem; }
.hero-image {
  height: 300px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; opacity: 0.9; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }

/* Section */
.section { padding: 4rem 0; }
.section-muted { background: #F3F4F6; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-header h2 { font-size: 1.75rem; font-weight: 700; }
.section-header a { color: var(--accent); font-size: 0.875rem; font-weight: 500; }

/* Cards Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); text-decoration: none; }
.card-image {
  height: 180px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 1.25rem; }
.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.25rem 0 0.5rem;
}
.card-excerpt { font-size: 0.875rem; color: var(--muted); }
.card-meta { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; }

/* Stars */
.stars { display: flex; align-items: center; gap: 2px; margin-top: 0.75rem; }
.stars .star { color: var(--border); }
.stars .star.filled { color: var(--primary); }
.stars span { font-size: 0.75rem; color: var(--muted); margin-left: 4px; }

/* Footer */
.footer { background: var(--secondary); color: #d1d5db; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 3rem 0; }
.footer h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 1rem; }
.footer h3 span { color: var(--primary); }
.footer h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; font-size: 0.875rem; }
.footer a { color: #9CA3AF; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9CA3AF;
}
.footer-badges { display: flex; align-items: center; gap: 1rem; }
.age-badge {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Content pages */
.content { max-width: 768px; margin: 0 auto; padding: 3rem 2rem; }
.content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.content .meta { font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }
.content h2 { font-size: 1.5rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
.content p { margin-bottom: 1rem; }
.content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content li { margin-bottom: 0.5rem; }
.back-link { font-size: 0.875rem; color: var(--accent); display: inline-block; margin-bottom: 1.5rem; }

/* Review detail */
.review-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.sidebar-card {
  position: sticky;
  top: 5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0.75rem; }
.sidebar-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.sidebar-card .note { font-size: 0.625rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid, .review-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .nav { display: none; }
}
