/* style.css - Minimalist, responsive design for Bitchat.tr */
:root {
  --primary: #23272a;
  --accent: #7289da;
  --bg: #f9f9f9;
  --text: #23272a;
  --muted: #888;
  --white: #fff;
  --border: #e0e0e0;
  --radius: 8px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0 1rem 0;
  margin-bottom: 2rem;
}
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
nav a.active, nav a:hover {
  background: var(--accent);
  color: var(--white);
}
main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
h1, h2, h3 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.4rem;
}
p, li {
  margin-bottom: 1rem;
  color: var(--text);
}
ul {
  margin-left: 1.5rem;
}
img, video, iframe {
  max-width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-answer {
  display: none;
  margin-top: 0.5rem;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  display: block;
}
footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 2rem 0 1rem 0;
}
.adsense-placeholder {
  background: #f4f7fa;
  color: var(--muted);
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  margin: 2rem 0;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
}
@media (max-width: 600px) {
  main {
    padding: 1rem 0.5rem;
  }
  nav {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  h1 {
    font-size: 1.4rem;
  }
} 