 body {
        background-color: #050505 !important;
        color: #b3b3b3 !important;
      
    }
    
    /* Layout Wrappers */
    .site-main {
        padding: 0 20px;
        background-color: #050505;
        min-height: 100vh;
    }
    
    .single-post-container {
        max-width: 1140px;
        margin: 0 auto;
        padding-top: 60px;
    }

    /* 1. Header */
    .entry-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .entry-title {
        color: #fff;
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    .post-meta-header {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .author-avatar img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        object-fit: cover;
    }
    .byline a { color: #fff; text-decoration: none; font-weight: 600; }

    /* 2. Intro Excerpt (Text above image) */
    .entry-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px auto;
        font-size: 1.1rem;
        line-height: 1.6;
        color: #888;
    }

    /* 3. Glowing Hero Image */
    .hero-section {
        position: relative;
        margin-bottom: 80px;
    }
    .hero-image-wrapper {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #222;
        /* The Red/Orange Glow from Screenshot */
        box-shadow: 0 50px 100px -20px rgba(255, 100, 0, 0.2); 
    }
    .hero-image-wrapper img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* 4. Content Grid */
    .post-layout-grid {
        display: grid;
        grid-template-columns: 1fr 180px; /* Content | Sidebar */
        gap: 60px;
        align-items: start;
    }

    /* Content Typography */
    .entry-content {
        font-size: 1.15rem;
        line-height: 1.8;
    }
    .entry-content h2, .entry-content h3 {
        color: #fff;
        margin: 3rem 0 1.5rem 0;
        line-height: 1.2;
    }
    .entry-content p {
        margin-bottom: 1.5rem;
    }
    .entry-content ul {
        margin-bottom: 1.5rem;
        padding-left: 20px;
    }
    /* Quotes */
    .entry-content blockquote {
        border-left: 2px solid #fff;
        margin: 2rem 0;
        padding-left: 20px;
        font-style: italic;
        color: #fff;
    }

    /* Sidebar */
    .sticky-sidebar {
        position: sticky;
        top: 40px;
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: right; /* Align right like screenshot */
    }
    .share-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 20px;
    }
    .share-link {
        display: block;
        color: #888;
        text-decoration: none;
        margin-bottom: 15px;
        font-size: 0.9rem;
        transition: 0.2s;
    }
    .share-link:hover { color: #fff; }

    /* Footer / Nav */
    .entry-footer {
        max-width: 1000px;
        margin: 60px auto;
        border-top: 1px solid #222;
        padding-top: 40px;
        color: #666;
    }
    .navigation.post-navigation {
        margin-top: 40px;
        border-top: 1px solid #222;
        padding-top: 40px;
    }
    .nav-subtitle {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #666;
        display: block;
        margin-bottom: 5px;
    }
    .nav-title {
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
    }
    
    @media (max-width: 800px) {
        .post-layout-grid { grid-template-columns: 1fr; }
        .sticky-sidebar { display: none; }
        .entry-title { font-size: 2.5rem; }
    }