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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.7;
}

a {
  color: #f5a623;
  text-decoration: none;
}

/* Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #111;
  border-bottom: 3px solid #f5a623;
  padding: 18px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5a623;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Ad slot top */
.ad-top {
  background: #111;
  padding: 12px 0;
  text-align: center;
  border-bottom: 1px solid #222;
  min-height: 50px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid #222;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

/* Ad slot middle */
.ad-middle {
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #222;
  min-height: 50px;
}

/* Content sections */
.content {
  padding: 50px 0;
}

.section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #1e1e1e;
}

.section:last-child {
  border-bottom: none;
}

.section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 12px;
}

.section p {
  color: #ccc;
  font-size: 1rem;
}

/* Ad slot bottom */
.ad-bottom {
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid #222;
  min-height: 50px;
}

/* Footer */
footer {
  background: #111;
  border-top: 1px solid #222;
  padding: 24px 0;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .hero { padding: 40px 0 30px; }
}
