/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --blue: #0099ff;
  --green: #00ff99;
  --white: #f0f8ff;
  --muted: #719cac;
  --bg: #0a1128;
  --accent: #a0e8af;
  --text: #e0e6ea;
  --panel-bg: rgba(255,255,255,0.05);
}

body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px 0;
}

header h1 {
  font-family: 'Special Elite', cursive;
  font-size: 3rem;
  margin: 0;
  color: var(--blue);
  text-shadow: 0 0 10px rgba(0,255,255,0.8);
}

header .subtitle {
  font-size: 1.2rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(0,255,153,0.6);
}

section {
  margin: 40px 0;
}

.title, .subtitle {
  text-align: center;
  font-family: 'Special Elite', cursive;
  color: var(--accent);
  margin: 0 0 10px;
  text-shadow: 0 0 5px rgba(160,232,175,0.6);
}

.title {
  font-size: 2rem;
}

.subtitle {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  margin: 0 0 15px;
}

.posts-container .blogpost {
  background: var(--panel-bg);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.blogpost .date {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
}

.blogpost h3 {
  margin: 5px 0;
}

.links .platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.linkcard {
  display: inline-block;
  background: var(--blue);
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(255,255,255,0.5);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  text-transform: uppercase;
  transition: background 0.3s;
}

.linkcard:hover {
  background: var(--green);
  color: black;
  text-shadow: 0 0 4px rgba(255,255,255,0.8);
}

.listen-btn {
  background: var(--green);
  font-size: 1.2rem;
  padding: 12px 20px;
}

.extra {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.extra section {
  flex: 1 1 300px;
  background: var(--panel-bg);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

footer {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

footer p {
  margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  header h1 { font-size: 2.5rem; }
  .title { font-size: 1.5rem; }
  .extra { flex-direction: column; align-items: center; }
}
