body {
    position: relative;
    min-height: 100vh;
    background-image: url('/assets/site/blog/payment-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}

.blog-post {
    background: rgba(10, 15, 45, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    color: #ffffff;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    letter-spacing: -0.02em;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: #00ff00;
}

.blog-post-featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.blog-post-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff00;
    margin: 2.5rem 0 1.5rem;
}

.blog-post-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.blog-post-content a {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-content a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-decoration: none;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.blog-post-tag {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.blog-post-tag:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ff00;
}

.blog-post-author-info {
    flex: 1;
}

.blog-post-author-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-decoration: none;
}

.blog-post-author-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-post-share-title {
    font-weight: 600;
}

.blog-post-share-buttons {
    display: flex;
    gap: 0.75rem;
}

.blog-post-share-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-post-share-button:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-post {
        padding: 1.5rem;
        margin: 1rem 0;
    }

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

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

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .blog-post-content h3 {
        font-size: 1.25rem;
    }

    .blog-post-author {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .blog-post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
