@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600;700&display=swap");
:root {
/* Catppuccin Mocha color palette */
--bg-color: #1e1e2e;
--surface-color: #181825;
--text-color: #cdd6f4;
--accent-color: #89b4fa;
--secondary-color: #fab387;
--tertiary-color: #89dceb;
--highlight-color: #f5c2e7;
--green-color: #a6e3a1;
--red-color: #f38ba8;
--yellow-color: #f9e2af;
};
* {
 box-sizing: border-box;
 }
body {
margin: 0;
padding: 0;
background-color: var(--bg-color);
color: var(--text-color);
font-family: "JetBrains Mono", monospace;
line-height: 1.6;
font-weight: 400;
}
#gradient-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.15;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
padding: 4rem 0;
}
h1 {
font-size: 3rem;
margin: 0;
background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-family: "JetBrains Mono", monospace;
}
.subtitle {
font-family: "JetBrains Mono", monospace;
color: var(--tertiary-color);
opacity: 0.8;
margin-top: 0.5rem;
font-weight: 300;
}
.status {
font-family: "JetBrains Mono", monospace;
font-size: 1rem;
opacity: 0.8;
margin-top: 1rem;
}
.section {
margin: 3rem 0;
padding: 2rem;
background: rgba(49, 50, 68, 0.5);
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(137, 180, 250, 0.2);
}
h2 {
color: var(--accent-color);
font-family: "JetBrains Mono", monospace;
font-size: 2rem;
margin-bottom: 1rem;
font-weight: 600;
}
h3 {
font-family: "JetBrains Mono", monospace;
font-weight: 600;
}
p, li {
color: var(--text-color);
font-family: "JetBrains Mono", monospace;
font-weight: 400;
}
.tag {
display: inline-block;
padding: 0.3rem 0.8rem;
margin: 0.2rem;
background: var(--secondary-color);
border-radius: 20px;
font-size: 0.75rem;
font-family: "JetBrains Mono", monospace;
color: var(--surface-color);
font-weight: 600;
}
.projects {
display: grid;
gap: 2rem;
}
.project-card {
padding: 1.5rem;
background: rgba(137, 180, 250, 0.1);
border-radius: 8px;
border: 1px solid rgba(137, 180, 250, 0.3);
transition: all 0.3s ease;
}
.project-card:hover {
border-color: var(--accent-color);
background: rgba(137, 180, 250, 0.15);
transform: translateY(-2px);
}
.project-card h3 {
margin-top: 0;
color: var(--highlight-color);
}
.project-card.featured h3 {
color: var(--green-color);
}
.project-card.beta-tag {
position: relative;
}
.beta-label {
display: inline-block;
background: var(--red-color);
color: var(--surface-color);
padding: 0.2rem 0.6rem;
border-radius: 4px;
font-size: 0.7rem;
font-weight: 600;
margin-left: 0.5rem;
}
.skills, .tech-stack {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.skills .tag, .tech-stack .tag {
background: var(--tertiary-color);
color: var(--surface-color);
}
footer {
text-align: center;
padding: 2rem;
font-family: "JetBrains Mono", monospace;
opacity: 0.7;
font-weight: 300;
}
a {
color: var(--tertiary-color);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--accent-color);
}
.project-links {
margin-top: 1rem;
}
.project-links a {
margin-right: 1rem;
font-weight: 600;
}
ul {
padding-left: 1.5rem;
}
ul li {
margin-bottom: 0.5rem;
}
/* Blog Post Styles */
.post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.post-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.post-date {
    font-size: 1rem;
    color: var(--tertiary-color);
}

.post-author {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.back-to-blog, .back-to-home, .share-twitter {
    padding: 0.5rem 1rem;
    background: rgba(137, 180, 250, 0.1);
    border: 1px solid rgba(137, 180, 250, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.back-to-blog:hover, .back-to-home:hover {
    background: rgba(137, 180, 250, 0.2);
    border-color: var(--accent-color);
}

.share-twitter {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
    color: #1DA1F2;
}

.share-twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.post-content {
    line-height: 1.8;
    margin-bottom: 3rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content pre {
    background: rgba(24, 24, 37, 0.8);
    border: 1px solid rgba(137, 180, 250, 0.2);
    border-radius: 6px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content code {
    background: rgba(24, 24, 37, 0.6);
    color: var(--tertiary-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: "JetBrains Mono", monospace;
}

.post-content pre code {
    background: transparent;
    padding: 0;
}

.post-footer {
    border-top: 1px solid rgba(137, 180, 250, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.prev-post, .next-post {
    padding: 1rem;
    background: rgba(49, 50, 68, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(137, 180, 250, 0.2);
}

.next-post {
    text-align: right;
}

.prev-post span, .next-post span {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.back-to-top {
    text-align: center;
}

.back-to-top a {
    padding: 0.5rem 1rem;
    background: rgba(137, 180, 250, 0.1);
    border: 1px solid rgba(137, 180, 250, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-to-top a:hover {
    background: rgba(137, 180, 250, 0.2);
    border-color: var(--accent-color);
}

/* Post Sharing Styles */
.post-share {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(49, 50, 68, 0.3);
    border-radius: 8px;
}

.post-share h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.share-btn.twitter {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
    color: #1DA1F2;
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
    transform: translateY(-1px);
}

.share-btn.linkedin {
    background: rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.3);
    color: #0077B5;
}

.share-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077B5;
    transform: translateY(-1px);
}

/* Blog Index Styles */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-preview {
    padding: 2rem;
    background: rgba(49, 50, 68, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(137, 180, 250, 0.2);
    transition: all 0.3s ease;
}

.blog-post-preview:hover {
    border-color: var(--accent-color);
    background: rgba(49, 50, 68, 0.7);
    transform: translateY(-2px);
}

.blog-post-title {
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-post-meta {
    color: var(--tertiary-color);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-post-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
}

.read-more:hover {
    color: var(--tertiary-color);
}

/* Navigation styles */
.blog-nav-link {
    padding: 0.5rem 1rem;
    background: rgba(137, 180, 250, 0.1);
    border: 1px solid rgba(137, 180, 250, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.blog-nav-link:hover {
    background: rgba(137, 180, 250, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.no-posts {
    text-align: center;
    padding: 3rem 2rem;
}

.no-posts h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.no-posts p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.no-posts code {
    background: rgba(24, 24, 37, 0.6);
    color: var(--tertiary-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: "JetBrains Mono", monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}

h2 {
   font-size: 1.75rem;
}
.container {
   padding: 1rem;
}
.section {
   padding: 1.5rem;
}

.post-title {
    font-size: 2rem;
}

.post-nav {
    flex-direction: column;
    gap: 1rem;
}

.post-navigation {
    grid-template-columns: 1fr;
}

.next-post {
    text-align: left;
}

.post-meta {
    flex-direction: column;
    text-align: center;
}

.share-buttons {
    flex-direction: column;
    align-items: center;
}

.share-btn {
    width: 100%;
    max-width: 200px;
}

}