body {
  line-height: 1.6;
  background: repeating-linear-gradient(
    90deg,
    #0b6623 0,
    #0b6623 60px,
    #0a5a1a 60px,
    #0a5a1a 120px
  );
  padding: 1rem;
}

.newsletter-page {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(11, 102, 35, 0.2);
  padding: 2rem;
  margin: 1rem auto;
  max-width: 800px;
  border: 1px solid rgba(11, 102, 35, 0.1);
  animation: fadeIn 0.6s ease-in;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base text readability */
p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

strong {
  color: #111827;
  font-weight: 600;
}

/* Card sections */
.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 102, 35, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card h2 {
  color: #059669;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 0.5rem 0;
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

li strong {
  color: #111827;
  font-weight: 600;
}

/* Winner/Loser styling for better readability */
.winner {
  color: #059669;
  font-weight: 600;
}

.loser {
  color: #dc2626;
  font-weight: 500;
}

.muted {
  color: #6b7280;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

h1,
h2 {
  margin-top: 0;
  font-weight: 700;
  text-align: center;
  color: #111827;
}

img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Newsletter Styling */
.executive-summary {
    background: linear-gradient(135deg, #0b6623 0%, #0a5a1a 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 2px solid #0a5a1a;
}

.executive-summary h2 {
    color: white;
    margin-top: 0;
    font-size: 1.4em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.executive-summary p {
    font-size: 1.1em;
    margin-bottom: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.executive-summary ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
}

.executive-summary li {
    color: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.executive-summary strong {
    color: white;
    font-weight: 700;
}

.highlight-box {
    background: #f0f9f0;
    border-left: 4px solid #0b6623;
    padding: 16px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(11, 102, 35, 0.1);
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
    font-size: 1rem;
}

.performance-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    margin-left: 8px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.record-alert {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    color: #92400e;
    font-weight: 500;
    line-height: 1.5;
}

.share-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0b6623 0%, #0a5a1a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 102, 35, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 102, 35, 0.4);
}

.share-button:active {
    transform: translateY(0);
}

.share-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .share-button {
        padding: 10px 16px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
}
