body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

.bg-wormhole {
    /* Updated background to allow for animation */
    background: linear-gradient(180deg, #030712 0%, #111827 50%, #4b5563 100%);
    animation: wormhole-animation 20s infinite linear; /* Apply animation */
    background-size: 200% 200%; /* Make background larger than viewport */
}

.text-wormhole-light {
    color: #f9fafb;
}
.text-wormhole-accent {
    color: #8b5cf6;
}
.bg-wormhole-card {
    background-color: #1f2937;
}
.border-wormhole {
    border-color: #6b7280;
}

/* Added for Blog Post Section */
.blog-post-card {
    background-color: #1f2937;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.blog-post-date {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.blog-post-excerpt,.blog-post-content {
    font-size: 1rem;
    color: #e5e7eb;
    line-height: 1.75rem;
}
.read-more-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #8b5cf6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #a855f7;
}

.blog-post-content.hidden {
    display: none;
}

.blog-post-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Wormhole Animation Keyframes */
@keyframes wormhole-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}