/* =================================================================
           POST PAGE - CINEMA GOLD THEME
           Matches blog.html cinema aesthetic exactly
           ================================================================= */

        :root {
            --cinema-bg: #050505;
            --cinema-surface: #0a0a0a;
            --cinema-glass: rgba(20, 20, 20, 0.6);
            --cinema-border: rgba(255, 255, 255, 0.08);
            --gold-primary: #FF8A3D;
            --gold-glow: #ffae00;
            --gold-dark: #b85c00;
            --neon-accent: #FB16B9;
        }

        body {
            background-color: var(--cinema-bg);
            color: #e0e0e0;
            overflow-x: hidden;
        }

        /* ── LIVING BACKGROUND (same as blog.html) ── */
        .cinema-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: var(--cinema-bg);
        }

        .cinema-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.4;
            animation: floatMesh 20s infinite alternate ease-in-out;
            will-change: transform, opacity;
        }

        .orb-1 {
            top: -10%;
            left: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, var(--gold-dark), transparent 70%);
            animation-duration: 25s;
        }

        .orb-2 {
            bottom: -20%;
            right: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, #2a103c, transparent 70%);
            animation-duration: 30s;
            animation-delay: -5s;
        }

        .orb-3 {
            top: 40%;
            left: 40%;
            width: 30vw;
            height: 30vw;
            background: radial-gradient(circle, rgba(251, 22, 185, 0.15), transparent 60%);
            animation-duration: 18s;
            animation-delay: -10s;
        }

        @keyframes floatMesh {
            0% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(50px, 30px) scale(1.1);
            }

            100% {
                transform: translate(-30px, -20px) scale(0.9);
            }
        }

        /* ── HEADER OVERRIDE (same as blog) ── */
        .header {
            background: rgba(5, 5, 5, 0.8) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .nav-link:hover {
            color: var(--gold-primary) !important;
        }

        /* ── SCROLL PROGRESS ── */
        .scroll-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-glow));
            z-index: 9999;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(255, 138, 61, 0.5);
        }

        /* ── POST HERO ── */
        .post-hero {
            position: relative;
            min-height: 65vh;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        .post-hero-img {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .post-hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.45;
            filter: brightness(0.55) saturate(1.3);
            transition: transform 8s ease;
        }

        .post-hero:hover .post-hero-img img {
            transform: scale(1.03);
        }

        .post-hero-gradient {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(0deg,
                    var(--cinema-bg) 0%,
                    rgba(5, 5, 5, 0.9) 25%,
                    rgba(5, 5, 5, 0.4) 55%,
                    rgba(5, 5, 5, 0.6) 100%);
        }

        .post-hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 30px 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .post-category-badge {
            display: inline-block;
            background: var(--gold-primary);
            color: #000;
            padding: 6px 18px;
            border-radius: 4px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 138, 61, 0.5);
        }

        .post-hero h1 {
            font-family: 'Anton', sans-serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            text-transform: uppercase;
            line-height: 1.05;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .post-tags-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .post-tag-pill {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .post-tag-pill:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            background: rgba(255, 138, 61, 0.08);
        }

        .post-meta-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #777;
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 50px;
        }

        .post-meta-item svg {
            color: var(--gold-primary);
        }

        /* ── ARTICLE BODY ── */
        .article-wrapper {
            position: relative;
            z-index: 5;
            padding: 60px 0 80px;
        }

        .article-layout {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 50px;
            padding: 0 30px;
        }

        .article-main {
            min-width: 0;
        }

        /* Glass panel widget (same as blog sidebar) */
        .panel-widget {
            background: var(--cinema-glass);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 12px;
            position: relative;
        }

        .panel-widget::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 10px;
            right: 10px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            opacity: 0.5;
        }

        .article-content {
            background: var(--cinema-glass);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 55px 60px;
            position: relative;
        }

        .article-content::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 10px;
            right: 10px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            opacity: 0.5;
        }

        /* Typography - matches blog card style */
        .article-content h2 {
            font-family: 'Anton', sans-serif;
            color: #fff;
            margin: 45px 0 20px;
            font-size: 1.8rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-left: 20px;
        }

        .article-content h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 3px;
            bottom: 3px;
            width: 3px;
            background: linear-gradient(to bottom, var(--gold-primary), var(--gold-glow));
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 138, 61, 0.4);
        }

        .article-content h3 {
            color: #ddd;
            margin: 30px 0 15px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .article-content p {
            color: #aaa;
            line-height: 1.9;
            margin-bottom: 24px;
            font-size: 17px;
        }

        .article-content p:first-of-type {
            font-size: 19px;
            color: #ccc;
            line-height: 1.8;
            font-weight: 500;
        }

        .article-content ul,
        .article-content ol {
            margin: 25px 0;
            padding-left: 25px;
            color: #aaa;
        }

        .article-content li {
            margin-bottom: 12px;
            line-height: 1.8;
            font-size: 16px;
        }

        .article-content ul li::marker {
            color: var(--gold-primary);
        }

        .article-content strong {
            color: #eee;
            font-weight: 600;
        }

        .article-content a {
            color: var(--gold-primary);
            text-decoration: underline;
            text-decoration-color: rgba(255, 138, 61, 0.3);
            text-underline-offset: 3px;
            transition: all 0.3s;
        }

        .article-content a:hover {
            text-decoration-color: var(--gold-primary);
        }

        .article-content img {
            max-width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid var(--cinema-border);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .article-content blockquote {
            background: rgba(255, 138, 61, 0.04);
            border-left: 3px solid var(--gold-primary);
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 17px;
            color: #ccc;
        }

        /* ── SIDEBAR ── */
        .article-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-title {
            font-family: 'Anton', sans-serif;
            font-size: 16px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sidebar-title i,
        .sidebar-title svg {
            color: var(--gold-primary);
            width: 16px;
            height: 16px;
        }

        /* Author card */
        .author-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #000;
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(255, 138, 61, 0.3);
        }

        .author-name {
            font-size: 15px;
            font-weight: 600;
            color: #eee;
        }

        .author-role {
            font-size: 12px;
            color: #888;
            margin-top: 3px;
        }

        /* CTA Widget */
        .cta-widget {
            background: radial-gradient(circle at top right, rgba(255, 138, 61, 0.1), rgba(0, 0, 0, 0.4)) !important;
            border-color: rgba(255, 138, 61, 0.2) !important;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold-primary);
            color: #000;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            transition: all 0.3s;
            margin-top: 15px;
            box-shadow: 0 0 20px rgba(255, 138, 61, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 138, 61, 0.5);
        }

        /* Related posts */
        .related-post-item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .related-post-item:last-child {
            border-bottom: none;
        }

        .related-post-item:hover .related-post-title {
            color: var(--gold-primary);
        }

        .related-post-img {
            width: 60px;
            height: 45px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .related-post-title {
            font-size: 13px;
            color: #ccc;
            font-weight: 500;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .related-post-date {
            font-size: 11px;
            color: #666;
            margin-top: 4px;
        }

        /* ── POST NAVIGATION ── */
        .post-nav {
            max-width: 1300px;
            margin: 40px auto 0;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 0 30px;
        }

        .post-nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 28px;
            background: var(--cinema-glass);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            color: #ccc;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.3s;
            text-decoration: none;
        }

        .post-nav-link:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 138, 61, 0.12);
        }

        .post-nav-link i,
        .post-nav-link svg {
            color: var(--gold-primary);
        }

        /* ── SONIC WAVE (same as blog) ── */
        .sonic-wave-deco {
            display: flex;
            gap: 3px;
            align-items: center;
            justify-content: center;
            height: 24px;
            margin: 40px 0 0;
            opacity: 0.3;
        }

        .sonic-wave-deco .bar {
            width: 3px;
            background: var(--gold-primary);
            border-radius: 3px;
            animation: sonicPulse 1.2s ease-in-out infinite;
        }

        .sonic-wave-deco .bar:nth-child(1) {
            height: 30%;
            animation-delay: 0s;
        }

        .sonic-wave-deco .bar:nth-child(2) {
            height: 55%;
            animation-delay: 0.1s;
        }

        .sonic-wave-deco .bar:nth-child(3) {
            height: 85%;
            animation-delay: 0.2s;
        }

        .sonic-wave-deco .bar:nth-child(4) {
            height: 100%;
            animation-delay: 0.3s;
        }

        .sonic-wave-deco .bar:nth-child(5) {
            height: 85%;
            animation-delay: 0.4s;
        }

        .sonic-wave-deco .bar:nth-child(6) {
            height: 55%;
            animation-delay: 0.5s;
        }

        .sonic-wave-deco .bar:nth-child(7) {
            height: 30%;
            animation-delay: 0.6s;
        }

        @keyframes sonicPulse {

            0%,
            100% {
                transform: scaleY(0.5);
            }

            50% {
                transform: scaleY(1);
            }
        }

        /* ── NOT FOUND ── */
        .post-not-found-wrap {
            text-align: center;
            padding: 140px 20px;
        }

        .post-not-found-wrap h1 {
            font-family: 'Anton', sans-serif;
            font-size: 3rem;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 15px;
        }

        /* ── SHARE ROW ── */
        .share-row {
            display: flex;
            gap: 10px;
            margin-top: 12px;
        }

        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #888;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .share-btn:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            background: rgba(255, 138, 61, 0.08);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 992px) {
            .article-layout {
                grid-template-columns: 1fr;
            }

            .article-sidebar {
                position: static;
            }

            .article-content {
                padding: 35px 30px;
            }
        }

        @media (max-width: 768px) {
            .post-hero {
                min-height: 45vh;
            }

            .post-hero h1 {
                font-size: 2rem;
            }

            .article-content {
                padding: 25px 20px;
            }

            .post-nav {
                flex-direction: column;
            }

            .post-meta-row {
                gap: 10px;
            }

            .post-meta-item {
                font-size: 11px;
                padding: 5px 10px;
            }

            /* ── HAMBURGER VISIBILITY FIX (cinema dark theme) ── */
            .mobile-toggle {
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 138, 61, 0.35);
                border-radius: 10px;
                padding: 10px;
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .mobile-toggle:hover,
            .mobile-toggle:active {
                background: rgba(255, 138, 61, 0.15);
                border-color: var(--gold-primary);
                box-shadow: 0 0 16px rgba(255, 138, 61, 0.3);
            }

            .mobile-toggle span {
                background: var(--gold-primary) !important;
                height: 2.5px;
                border-radius: 2px;
                box-shadow: 0 0 4px rgba(255, 138, 61, 0.4);
            }
        }

        /* ── FOOTER OVERRIDE ── */
        .site-footer {
            background: #000;
            border-top: 1px solid #222;
            padding: 40px 0;
            color: #555;
            text-align: center;
            position: relative;
            z-index: 5;
            font-size: 14px;
        }
