    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    :root {
        --bg-primary: #0a0a0f;
        --bg-secondary: #12121a;
        --bg-tertiary: #1a1a24;
        --bg-card: #16161f;
        --accent: #22c55e;
        --accent-glow: rgba(34, 197, 94, 0.3);
        --accent-purple: #a855f7;
        --text-primary: #ffffff;
        --text-secondary: #a1a1aa;
        --text-muted: #71717a;
        --border-color: rgba(255,255,255,0.1);
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
    }
    
    /* Override WordPress default heading colors */
    h1, h2, h3, h4, h5, h6 {
        color: var(--text-primary) !important;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 20% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }
    
    /* Main Content */
    .ih-main {
        padding: 120px 40px 80px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    /* Blog List */
    .ih-blog-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .ih-blog-header h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .ih-blog-header p {
        font-size: 18px;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .ih-blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 32px;
    }
    
    .ih-blog-card {
        background: var(--bg-card);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        transition: all 0.3s;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
    }
    
    .ih-blog-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    
    .ih-blog-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        background: var(--bg-tertiary);
    }
    
    .ih-blog-card-content {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .ih-blog-card-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 13px;
        color: var(--text-muted);
    }
    
    .ih-blog-card-category {
        background: var(--accent);
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .ih-blog-card-locked {
        background: var(--accent-purple);
    }
    
    .ih-blog-card-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .ih-blog-card-excerpt {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
        flex: 1;
    }
    
    .ih-blog-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid var(--border-color);
    }
    
    .ih-blog-card-author {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .ih-blog-card-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent) 0%, #ec4899 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        color: white;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .ih-blog-card-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .ih-blog-card-author-name {
        font-size: 13px;
        color: var(--text-secondary);
    }
    
    .ih-blog-card-read {
        color: var(--accent);
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    /* Single Post */
    .ih-post {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .ih-post-header {
        margin-bottom: 40px;
    }
    
    .ih-post-back {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 24px;
        transition: color 0.2s;
    }
    
    .ih-post-back:hover {
        color: var(--accent);
    }
    
    .ih-post-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .ih-post-title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    
    .ih-post-featured {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 40px;
    }
    
    /* Post Content */
    .ih-post-content {
        font-size: 17px;
        line-height: 1.8;
        color: var(--text-secondary);
    }
    
    .ih-post-content h2,
    .ih-post-content h3,
    .ih-post-content h4 {
        color: var(--text-primary);
        margin: 40px 0 20px;
        font-weight: 700;
    }
    
    .ih-post-content h2 {
        font-size: 28px;
    }
    
    .ih-post-content h3 {
        font-size: 22px;
    }
    
    .ih-post-content p {
        margin-bottom: 20px;
    }
    
    .ih-post-content a {
        color: var(--accent);
        text-decoration: underline;
    }
    
    .ih-post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 24px 0;
    }
    
    .ih-post-content figure {
        margin: 24px 0;
    }
    
    .ih-post-content figcaption {
        text-align: center;
        font-size: 14px;
        color: var(--text-muted);
        margin-top: 8px;
    }
    
    .ih-post-content ul,
    .ih-post-content ol {
        margin: 20px 0;
        padding-left: 24px;
    }
    
    .ih-post-content li {
        margin-bottom: 8px;
    }
    
    .ih-post-content blockquote {
        border-left: 4px solid var(--accent);
        padding-left: 24px;
        margin: 24px 0;
        font-style: italic;
        color: var(--text-primary);
    }
    
    .ih-post-content strong {
        color: var(--text-primary);
        font-weight: 600;
    }
    
    /* Locked Content */
    .ih-locked-content {
        background: var(--bg-card);
        border: 2px dashed var(--accent-purple);
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        margin: 40px 0;
    }
    
    .ih-locked-icon {
        font-size: 64px;
        margin-bottom: 24px;
    }
    
    .ih-locked-content h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-primary);
    }
    
    .ih-locked-content p {
        color: var(--text-secondary);
        margin-bottom: 24px;
        font-size: 16px;
    }
    
    .ih-btn-unlock {
        background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        color: white;
        padding: 16px 32px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
    }
    
    .ih-btn-unlock:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(168, 85, 247, 0.4);
    }
    
    /* Footer */
    .ih-footer {
        padding: 40px;
        border-top: 1px solid var(--border-color);
        text-align: center;
        color: var(--text-muted);
        font-size: 14px;
        position: relative;
        z-index: 1;
    }

    /* NOTE: Mobile Menu, Navigation, and Dropdown styles are centralized in common.css */

    /* Responsive - Blog-specific */
    @media (max-width: 768px) {
        .ih-main {
            padding: 100px 20px 60px;
        }
        
        .ih-blog-header h1 {
            font-size: 32px;
        }
        
        .ih-blog-grid {
            grid-template-columns: 1fr;
        }
        
        .ih-post-title {
            font-size: 28px;
        }
        
        .ih-locked-content {
            padding: 40px 20px;
        }
    }
