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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #d32f2f;
  transition: all 0.3s ease;
}

a:hover {
  background-color: #d32f2f;
  color: #000;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

h1 {
  font-size: 4rem;
  border-bottom: 5px solid #d32f2f;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-top: 3rem;
  border-left: 5px solid #d32f2f;
  padding-left: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

header, nav, main, footer {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  border-bottom: 1px solid #333;
  margin-bottom: 2rem;
  padding-top: 0;
  padding-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  margin-right: 1.5rem;
  text-decoration: none;
}

nav a:hover {
  background: none;
  color: #d32f2f;
}

footer {
  margin-top: 4rem;
  border-top: 1px solid #333;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* AdSense CLS Armor (MANDATORY) */
.ad-container-leaderboard {
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  background-color: #111;
  border: 1px solid #333;
}
@media (max-width: 768px) {
  .ad-container-leaderboard {
    min-height: 250px;
  }
}

/* Specific Content Styles */
article {
  padding-bottom: 4rem;
}

.hero {
  text-align: center;
  margin: 4rem 0;
}

.hero h2 {
  font-size: 4rem;
  border: none;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin: 1rem auto;
  color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 3rem; }
  body { font-size: 16px; }
  nav { text-align: center; }
  nav a { display: inline-block; margin: 0.5rem; }
}
