/* ---
Design: "Neon Dreamscape"
Inspired by: Heart, 1985
Palette:
  --bg-dark-purple: #101018;
  --accent-magenta: #ff007f;
  --accent-cyan: #00bfff;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --border-color: rgba(255, 0, 127, 0.3);
--- */

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    background: #101018;
    color: #f0f0f0;
}

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

/* Header */
header {
    background: linear-gradient(to bottom, #101018, #1a1a26);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

header h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin: 0;
    color: #fff;
    font-size: 3em;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f, 0 0 30px #ff007f;
}

header p {
    font-size: 1.1em;
    color: #a0a0b0;
}

.github-link {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #a0a0b0;
    transition: color 0.3s ease;
}

.github-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.github-link:hover {
    color: #ff007f;
}

/* Navigation */
nav {
    background: #1a1a26;
    border-top: 1px solid rgba(255, 0, 127, 0.2);
    border-bottom: 1px solid rgba(255, 0, 127, 0.2);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    font-family: 'Raleway', sans-serif;
    color: #f0f0f0;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 8px #ff007f;
}

/* Main Content */
main {
    padding: 40px 0;
}

section {
    background: #1a1a26;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 127, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #ff007f;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(255, 0, 127, 0.5);
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #fff;
}

blockquote {
    border-left: 3px solid #00bfff;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #a0a0b0;
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.3);
}

/* Media & Blog */
.spotify-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 127, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.blog-post {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 0, 127, 0.2);
}

.blog-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-post h3 {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    margin-bottom: 5px;
}

.post-meta {
    color: #a0a0b0;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: transparent;
    color: #ff007f;
    text-decoration: none;
    border: 1px solid #ff007f;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.read-more:hover {
    background-color: #ff007f;
    color: #fff;
    box-shadow: 0 0 10px #ff007f;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to top, #101018, #1a1a26);
    border-top: 1px solid rgba(255, 0, 127, 0.2);
    color: #a0a0b0;
    font-family: 'Raleway', sans-serif;
}
