        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --primary: #0a0f1f;
            --accent: #f59e0b;
            --accent-dark: #d97706;
            --secondary: #1e293b;
            --text: #0f172a;
            --text-light: #64748b;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --radius: 16px;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 18px 32px; display: flex; align-items: center;
            justify-content: space-between; background: var(--primary);
            transition: all 0.35s ease;
        }
        .nav-logo { font-size: 1.45rem; font-weight: 800; color: white; text-decoration: none; letter-spacing: -0.5px; }
        .nav-logo span { color: var(--accent); }
        .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
        .nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-weight: 500; font-size: 0.88rem; transition: color 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: var(--accent); }
        .lang-dropdown { position: relative; }
        .lang-btn {
            display: flex; align-items: center; gap: 7px;
            background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
            color: white; padding: 6px 12px; border-radius: 8px; cursor: pointer;
            font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500; transition: background 0.2s;
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); }
        .lang-btn img { border-radius: 2px; vertical-align: middle; }
        .lang-btn-arrow { font-size: 0.65rem; opacity: 0.7; }
        .lang-menu {
            display: none; position: absolute; top: calc(100% + 8px); right: 0;
            background: #1e293b; border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px; overflow: hidden; min-width: 140px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.5); z-index: 2000;
        }
        .lang-menu.open { display: block; }
        .lang-option {
            display: flex; align-items: center; gap: 10px; padding: 10px 16px;
            cursor: pointer; color: rgba(255,255,255,0.8);
            font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500;
            transition: background 0.15s; border: none; background: none; width: 100%; text-align: left;
        }
        .lang-option:hover { background: rgba(255,255,255,0.08); color: white; }
        .lang-option.active { color: var(--accent); }
        .lang-option img { border-radius: 2px; flex-shrink: 0; }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
        .hamburger span { width: 26px; height: 2px; background: white; border-radius: 2px; display: block; }
        .mobile-menu {
            display: none; position: fixed; inset: 0; background: var(--primary); z-index: 999;
            flex-direction: column; align-items: center; justify-content: center; gap: 36px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { color: white; text-decoration: none; font-size: 1.6rem; font-weight: 700; transition: color 0.2s; }
        .mobile-menu a:hover, .mobile-menu a.active { color: var(--accent); }
        .mobile-close { position: absolute; top: 24px; right: 28px; font-size: 2rem; color: white; cursor: pointer; background: none; border: none; font-family: inherit; line-height: 1; }
        .lang-mobile-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .lang-mobile-btn {
            display: flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: white; padding: 10px 18px; border-radius: 8px;
            font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s;
        }
        .lang-mobile-btn:hover, .lang-mobile-btn.active { background: rgba(245,158,11,0.2); color: var(--accent); border-color: var(--accent); }

        /* ── ARTICLE HERO ── */
        .article-hero {
            min-height: 45vh;
            background: linear-gradient(160deg, rgba(10,15,30,0.92) 0%, rgba(10,37,69,0.85) 60%, rgba(10,15,30,0.92) 100%),
                        url('/images/YourKrakowPhoto1.jpeg') center/cover no-repeat;
            display: flex; align-items: flex-end; padding: 100px 24px 48px;
        }
        .article-hero-inner { max-width: 860px; margin: 0 auto; width: 100%; }
        .article-hero-back {
            display: inline-flex; align-items: center; gap: 6px;
            color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem;
            font-weight: 500; margin-bottom: 24px; transition: color 0.2s;
        }
        .article-hero-back:hover { color: var(--accent); }
        .article-hero-meta {
            font-size: 0.8rem; color: rgba(255,255,255,0.55);
            text-transform: uppercase; letter-spacing: 0.06em;
            margin-bottom: 12px; font-weight: 500;
        }
        .article-hero h1 {
            font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; color: white;
            line-height: 1.2; margin-bottom: 16px;
        }
        .article-hero-by { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
        .article-hero-by strong { color: rgba(255,255,255,0.85); }

        /* Optional thumbnail behind hero */
        .article-hero.has-thumb {
            background-size: cover; background-position: center;
        }

        /* ── LANG BAR ── */
        .lang-bar-wrap {
            background: var(--light-bg); border-bottom: 1px solid #e2e8f0;
            padding: 10px 24px; display: none; justify-content: center;
            align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.82rem;
            color: var(--text-light); font-weight: 500;
        }
        .lang-bar-wrap.visible { display: flex; }
        .lang-bar-link {
            color: var(--text-light); text-decoration: none; padding: 3px 10px;
            border-radius: 6px; font-weight: 500; transition: all 0.15s;
        }
        .lang-bar-link:hover { background: rgba(0,0,0,0.06); color: var(--text); }
        .lang-bar-link.active { background: var(--accent); color: #000; font-weight: 600; }

        /* ── ARTICLE BODY ── */
        .article-wrap {
            max-width: 860px; margin: 0 auto;
            padding: 56px 24px 80px;
        }

        .article-content {
            line-height: 1.85; font-size: 1.05rem; color: var(--text);
        }
        .article-content h2 { font-size: 1.55rem; font-weight: 700; margin: 40px 0 16px; line-height: 1.3; }
        .article-content h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 12px; line-height: 1.4; }
        .article-content h4 { font-size: 1.05rem; font-weight: 600; margin: 20px 0 10px; }
        .article-content p { margin-bottom: 1.3rem; }
        .article-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; display: block; }
        .article-content blockquote {
            border-left: 4px solid var(--accent); padding: 12px 20px; margin: 24px 0;
            background: rgba(245,158,11,0.06); border-radius: 0 8px 8px 0;
            color: var(--text-light); font-style: italic; font-size: 1.02rem;
        }
        .article-content ul, .article-content ol { padding-left: 28px; margin-bottom: 1.3rem; }
        .article-content li { margin-bottom: 6px; }
        .article-content a { color: var(--accent); text-underline-offset: 3px; }
        .article-content a:hover { color: var(--accent-dark); }
        .article-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.3rem; }
        .article-content th, .article-content td { border: 1px solid #e2e8f0; padding: 10px 14px; text-align: left; }
        .article-content th { background: var(--light-bg); font-weight: 600; }
        .article-content hr { border: none; border-top: 1px solid #e2e8f0; margin: 32px 0; }

        /* Tour widget embedded in articles */
        .tour-widget-card {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border-left: 4px solid var(--accent);
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 32px 0;
        }
        .tour-widget-badge {
            display: inline-block;
            background: var(--accent);
            color: #000;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .tour-widget-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .tour-widget-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        .tour-widget-meta {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 14px;
        }
        .tour-widget-btn {
            display: inline-block;
            background: #0a0f1f;
            color: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .tour-widget-btn:hover { opacity: 0.85; color: #fff; }

        /* Breadcrumbs */
        .breadcrumbs {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.55);
            padding: 10px 24px;
            background: rgba(0,0,0,0.3);
        }
        .breadcrumbs a { color: rgba(255,255,255,0.55); text-decoration: none; }
        .breadcrumbs a:hover { color: var(--accent); }
        .bc-sep { margin: 0 6px; opacity: 0.4; }
        .bc-current { color: rgba(255,255,255,0.8); }

        /* Error / loading states */
        .article-state {
            text-align: center; padding: 80px 24px;
            color: var(--text-light); font-size: 1rem;
        }
        .article-state a { color: var(--accent); text-decoration: none; font-weight: 600; }

        /* Skeleton */
        .skel-line { height: 14px; border-radius: 7px; background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; margin-bottom: 14px; }
        .skel-line.title { height: 36px; width: 70%; margin-bottom: 20px; }
        .skel-line.short { width: 35%; }
        .skel-line.medium { width: 60%; }
        @keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

        /* ── RELATED POSTS ── */
        .related-section {
            background: #f8fafc;
            padding: 56px 24px;
        }
        .related-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        .related-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
        }
        .related-header h2 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text);
        }
        .related-header a {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
        }
        .related-header a:hover { text-decoration: underline; }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .related-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .related-card-thumb {
            height: 150px;
            overflow: hidden;
        }
        .related-card-thumb img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.3s;
        }
        .related-card:hover .related-card-thumb img { transform: scale(1.04); }
        .related-card-ph {
            width: 100%; height: 100%;
            background: linear-gradient(135deg, #0a0f1f, #0f2545);
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; opacity: 0.5;
        }
        .related-card-body {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .related-card-date {
            font-size: 0.72rem;
            color: var(--text-light);
            margin-bottom: 6px;
        }
        .related-card-title {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        @media (max-width: 700px) {
            .related-grid { grid-template-columns: 1fr; }
        }

        /* ── FOOTER ── */
        footer {
            background: var(--primary); color: rgba(255,255,255,0.7);
            text-align: center; padding: 48px 24px 28px;
        }
        .footer-logo { font-size: 1.9rem; font-weight: 800; color: white; margin-bottom: 6px; }
        .footer-logo span { color: var(--accent); }
        footer > p { font-size: 0.85rem; margin-bottom: 20px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-bottom: 24px; }
        .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 8px; }

        /* WhatsApp */
        .wa-float {
            position: fixed; bottom: 24px; right: 24px; z-index: 900;
            width: 58px; height: 58px; border-radius: 50%;
            background: #25D366; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s;
        }
        .wa-float:hover { transform: scale(1.08); }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            nav { padding: 14px 20px; }
            .article-wrap { padding: 40px 16px 60px; }
            .article-hero { padding: 100px 16px 36px; }
            /* Tables in article — allow horizontal scroll */
            .article-content table { display: block; overflow-x: auto; max-width: 100%; }
        }
        @media (max-width: 480px) {
            /* Tighter padding on ultra-small phones for more readable width */
            .article-wrap { padding: 30px 12px 40px; }
        }
