.card {
    margin: auto;
    margin-bottom: 20px;
    max-width: 356px;
    height: 500px;
    background-color: #1a1a1a; /* Dark card background */
    border: 1px solid #00ff00; /* Neon green border */
    box-shadow: 0 0 10px #00ff00; /* Neon green shadow */
}
.card-img-top {
    max-height: 200px;
    border-radius: 10px;
}
.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00ff00; /* Neon green title */
}
.card-text {
    font-size: 0.9rem;
    color: #a8ffa8; /* Light neon green text */
}
.btn-read-more {
    width: 100%;
    background-color: #00ff00; /* Neon green button */
    color: #0f0f0f; /* Dark text color for contrast */
    border: none;
    box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00; /* Neon glow effect */
    transition: 0.3s;
}
.btn-read-more:hover {
    background-color: #00cc00; /* Slightly darker neon on hover */
    box-shadow: 0 0 15px #00ff00, 0 0 20px #00ff00; /* Increased glow on hover */
    transform: scale(1.05); /* Slight scale effect on hover */
}
.text-muted {
    color: #a8ffa8; /* Muted text in light neon green */
}