/* Blog index */
.blog-header {
    padding: 100px 0 60px;
    text-align: center;
}
.blog-subtitle {
    font-size: 1.3rem;
    color: #b0c4de;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.blog-card {
    background: rgba(26, 40, 68, 0.6);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: #00d9ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}
.blog-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.blog-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.blog-card-excerpt {
    color: #b0c4de;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}
.blog-card-tag {
    display: inline-block;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #00d9ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    margin-top: 1rem;
}

/* Blog post */
.post-header {
    padding: 100px 0 40px;
    text-align: center;
}
.post-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.post-meta {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.post-meta a {
    color: #00d9ff;
    text-decoration: none;
}
.post-meta a:hover {
    text-decoration: underline;
}
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    color: #c8d6e5;
    font-size: 1.15rem;
    line-height: 1.85;
}
.post-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00d9ff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.post-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}
.post-content p {
    margin-bottom: 1.25rem;
}
.post-content a {
    color: #00d9ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
}
.post-content a:hover {
    border-bottom-color: #00d9ff;
}
.post-content code {
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.15);
    color: #e0e7ef;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.95em;
}
.post-content pre {
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(100, 200, 255, 0.15);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.post-content pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9em;
    color: #c8d6e5;
}
.post-content ul, .post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.post-content li {
    margin-bottom: 0.5rem;
}
.post-content blockquote {
    border-left: 3px solid #00d9ff;
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 217, 255, 0.04);
    border-radius: 0 0.5rem 0.5rem 0;
    color: #b0c4de;
    font-style: italic;
}
.post-content img {
    max-width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgba(100, 200, 255, 0.15);
    margin: 1.5rem 0;
}

/* Post footer CTA */
.post-cta {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(26, 40, 68, 0.6);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 0.75rem;
    text-align: center;
}
.post-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.post-cta p {
    color: #b0c4de;
    margin-bottom: 1rem;
}
.post-cta .btn-game {
    margin: 0.25rem;
}

/* Discord CTA for blog */
.blog-discord-cta {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: rgba(88, 101, 242, 0.12);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.blog-discord-cta .discord-icon {
    font-size: 2rem;
    color: #5865f2;
    flex-shrink: 0;
}
.blog-discord-cta .discord-text {
    flex-grow: 1;
}
.blog-discord-cta .discord-text h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}
.blog-discord-cta .discord-text p {
    color: #b0c4de;
    font-size: 0.9rem;
    margin: 0;
}
.btn-discord {
    background: #5865f2;
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* RSS link */
.rss-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.rss-link:hover {
    color: #00d9ff;
}
.rss-link i {
    margin-right: 0.3rem;
}

/* Related posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 200, 255, 0.15);
}
.related-posts h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #00d9ff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-posts li {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}
.related-posts li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #00d9ff;
}
.related-posts a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    transition: border-color 0.3s;
}
.related-posts a:hover {
    border-bottom-color: #00d9ff;
}
.related-posts .related-desc {
    color: #6b7280;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

@media (max-width: 768px) {
    .post-title { font-size: 1.8rem; }
    .post-content { font-size: 1.05rem; }
    .post-content h2 { font-size: 1.4rem; }
    .blog-discord-cta { flex-direction: column; text-align: center; }
    .blog-card-title { font-size: 1.1rem; }
}
