/* Base styling */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #0b3d0b; /* dark football pitch green */
  color: #f0f0f0; /* light text for contrast */
  line-height: 1.6;
}

h1, h2 {
  color: #ffb300; /* gold/orange highlights */
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 16px;
}

.site-header {
  text-align: center;
  padding: 20px 0;
  border-bottom: 3px solid #4caf50; /* vibrant green line */
}

.subtitle {
  font-size: 16px;
  color: #ddd;
}

/* Blog sections */
.section {
  background: #145214; /* deeper green for sections */
  border: 1px solid #4caf50;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

/* Lists */
ul {
  padding-left: 20px;
  margin: 10px 0;
}

ul li {
  margin-bottom: 6px;
}

/* Blog images */
.blog-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Ad slots */
.ad-slot {
  background: #1f6e1f; /* darker green ad background */
  border: 1px dashed #4caf50;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d4edda;
}

/* Share buttons */
.social-share {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 40px;
  min-width: 120px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
  text-align: center;
}

.share-btn.fb { background: #4267B2; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.rd { background: #FF5700; }

.share-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}