.content-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.blog-article {
    background-color: #1e1e1e;
    padding: 40px;
    border: 2px solid #333;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    color: #fff;
}

.blog-article h1 {
    font-size: 3.2em;
    color: #00bfff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.blog-article .meta {
    text-align: center;
    color: #bbb;
    font-size: 1.1em;
    margin-bottom: 30px;
    font-style: italic;
}

.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    display: block;
}

.blog-article h2 {
    font-size: 2.4em;
    color: #00bfff;
    margin-top: 50px;
    margin-bottom: 15px;
    border-bottom: 2px solid #00bfff;
    padding-bottom: 8px;
}

.blog-article h3 {
    font-size: 1.8em;
    color: #00bfff;
    margin-top: 40px;
    margin-bottom: 10px;
}

.blog-article p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: justify;
}

.blog-article a {
    color: #00bfff;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-article a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

/* Bulleted list */
.bullet-list {
    background-color: #262626;
    padding: 20px 30px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #00bfff;
}

.bullet-list li {
    margin-bottom: 12px;
    font-size: 1.2em;
}

/* Table styling */
.episode-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #262626;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.episode-table th,
.episode-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.episode-table th {
    background-color: #00bfff;
    color: #121212;
    font-size: 1.2em;
}

.episode-table tr:last-child td {
    border-bottom: none;
}

.episode-table tr:hover {
    background-color: #333;
}

/* Author bio box */
.author-bio {
    background-color: #262626;
    padding: 25px;
    border-radius: 12px;
    margin-top: 50px;
    border: 2px dashed #00bfff;
    text-align: center;
}

.author-bio h3 {
    color: #00bfff;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 10px;
    }

    .blog-article {
        padding: 25px;
    }

    .blog-article h1 {
        font-size: 2.6em;
    }

    .blog-article h2 {
        font-size: 2em;
    }

    .blog-article p,
    .bullet-list li {
        font-size: 1.1em;
    }

    .episode-table th,
    .episode-table td {
        padding: 12px;
        font-size: 1em;
    }

    .featured-image {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .blog-article h1 {
        font-size: 2.2em;
    }

    .blog-article h2 {
        font-size: 1.8em;
    }

    .episode-table {
        font-size: 0.9em;
    }

    .episode-table th,
    .episode-table td {
        padding: 10px;
    }
}