/* Custom styles for CodingPlan */
:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --bg-lightest-blue: #e6f3ff;
}

body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.platform-card {
  transition: box-shadow 0.2s;
}
.platform-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.subscribe-btn {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}
.subscribe-btn:hover {
  background: var(--primary-dark);
}

.affiliate-placeholder {
  display: none;
}
