    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; scrollbar-width: none; -ms-overflow-style: none; }
    *::-webkit-scrollbar { display: none; }
    :root {
      --black: #0a0a0a; --ink: #1a1a1a; --gray: #6b6b6b; --light: #f5f4f0;
      --white: #ffffff; --accent: #54adf2; --border: #e8e6e0;
      --font-serif: 'Georgia','Times New Roman',serif;
      --font-sans: -apple-system,'Helvetica Neue',Arial,sans-serif;
      --safe-top: env(safe-area-inset-top,0px);
      --safe-bottom: env(safe-area-inset-bottom,0px);
    }
    html { font-size: 16px; }
    body { font-family: var(--font-sans); background: var(--white); color: var(--ink); min-height: 100dvh; overscroll-behavior: none; -webkit-font-smoothing: antialiased; }

    /* Desktop Landing */
    #desktop-landing { display: none; min-height: 100vh; align-items: center; justify-content: center; background: #f5f4f0; }
    .landing-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 440px; width: 90%; padding: 48px 40px; background: #fff; border-radius: 24px; box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
    .landing-logo { margin-bottom: 50px; }
    .landing-logo img { height: 48px; width: auto; display: block; margin: 0 auto; }
    .landing-tagline { font-size: 12px; color: var(--gray); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 40px; }
    .landing-qr { width: 180px; height: 180px; border-radius: 12px; margin-bottom: 32px; }
    .landing-headline { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 12px; }
    .landing-desc { font-size: 15px; color: var(--gray); line-height: 1.65; margin-bottom: 5px; }
    .landing-steps { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-bottom: 32px; }
    .landing-step { display: flex; align-items: center; gap: 14px; background: var(--light); border-radius: 12px; padding: 14px 16px; text-align: left; }
    .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: white; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-text { font-size: 14px; color: var(--ink); line-height: 1.4; }
    .step-text strong { font-weight: 600; }
    .landing-url { font-size: 13px; color: #aaa; background: var(--light); padding: 10px 20px; border-radius: 20px; }

    /* App Shell */
    #app { display: flex; flex-direction: column; min-height: 100dvh; max-width: 480px; margin: 0 auto; }

    /* Update banner */
    #update-banner { display: none; background: #1a7a3a; color: white; padding: 12px 20px; align-items: center; gap: 12px; font-size: 13px; }
    #update-banner.show { display: flex; }
    #update-banner p { flex: 1; }
    #update-banner strong { display: block; font-size: 14px; }
    .btn-update { background: white; color: #1a7a3a; border: none; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }

    /* Topbar */
    .topbar { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); padding: calc(var(--safe-top) + 12px) 20px 12px; display: flex; align-items: center; justify-content: space-between; }
    .topbar-logo { text-decoration: none; display: flex; align-items: center; }
    .topbar-logo img { height: 28px; width: auto; display: block; }
    .topbar-actions { display: flex; gap: 12px; align-items: center; }
    .icon-btn { background: none; border: none; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--ink); }
    .icon-btn svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }
    .icon-btn:active { background: var(--light); }

    /* Banners */
    #btn-pdf-issue { display: none !important; }
    #article-pdf-btn { display: none !important; }
    #install-banner { display: none !important; background: var(--black); color: var(--white); padding: 14px 20px; align-items: center; gap: 12px; font-size: 13px; }
    #install-banner.show { display: flex; }
    #install-banner p { flex: 1; line-height: 1.4; }
    #install-banner strong { display: block; font-size: 14px; }
    #notif-banner { display: none !important; background: #f0f7ff; border-bottom: 1px solid #d0e8ff; padding: 12px 20px; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); }
    #notif-banner.show { display: flex; }
    #notif-banner p { flex: 1; }
    .btn-install { background: var(--white); color: var(--black); border: none; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
    .btn-dismiss { background: none; border: none; color: var(--gray); font-size: 20px; cursor: pointer; line-height: 1; }
    .btn-notif { background: #0066cc; color: white; border: none; padding: 7px 14px; border-radius: 16px; font-size: 12px; font-weight: 600; cursor: pointer; }

    /* Offline */
    #offline-bar { display: none; background: #ff5722; color: white; text-align: center; padding: 8px; font-size: 12px; font-weight: 500; }
    #offline-bar.show { display: block; }

    /* Main */
    main { flex: 1; padding-bottom: calc(70px + var(--safe-bottom)); }
    .view { display: none; }
    .view.active { display: block; }
    .view.active.nav-forward { animation: viewIn 0.22s ease both; }
    @keyframes viewIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

    /* Section */
    .section-header { padding: 24px 20px 16px; display: flex; align-items: baseline; justify-content: space-between; }
    .section-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; letter-spacing: -0.5px; color: var(--black); }
    .section-sub { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

    /* Hero */
    .hero-issue { margin: 0 20px 24px; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; background: var(--light); }
    .hero-issue img { width: 100%; height: auto; display: block; }
    .hero-issue-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
    .hero-issue-label { font-size: 18px; font-weight: 700; font-family: var(--font-serif); text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; }
    .hero-issue-title { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: white; line-height: 1.15; margin-bottom: 12px; }
    .btn-read { display: inline-block; background: var(--white); color: var(--black); padding: 10px 22px; border-radius: 24px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; align-self: flex-start; }

    /* Issues grid */
    .issues-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 20px; }
    .issue-card { cursor: pointer; border-radius: 10px; overflow: hidden; background: var(--light); }
    .issue-card-cover { aspect-ratio: 3/4; overflow: hidden; }
    .issue-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
    .issue-card:active .issue-card-cover img { transform: scale(1.03); }
    .issue-card-info { padding: 10px 12px; }
    .issue-card-num { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 3px; }
    .issue-card-title { font-family: var(--font-serif); font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.3; }

    /* Issue detail */
    .issue-detail-header { position: relative; overflow: hidden; background: var(--light); }
    .issue-detail-header img { width: 100%; height: auto; display: block; }
    .issue-detail-header-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
    .issue-detail-num { font-size: 18px; font-weight: 700; font-family: var(--font-serif); text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 6px; }
    /* Home: cover as a small centered card */
    #view-home .issue-detail-header { position: static; overflow: visible; display: flex; justify-content: center; padding: 28px 20px 20px; }
    .cover-wrap { position: relative; width: 250px; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.22); flex-shrink: 0; background: var(--light); }
    .cover-wrap img { opacity: 0; transition: opacity 0.4s ease; }
    .cover-wrap img.img-ready { opacity: 1; }
    #view-home .issue-detail-num { font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }


    /* Articles */
    .articles-list { padding: 8px 0; }
    .article-row { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); cursor: pointer; align-items: flex-start; transition: background 0.15s; }
    .article-row:active { background: var(--light); }
    .article-row-thumb { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--light); }
    .article-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .article-row--ad .article-row-thumb img { width: 100%; height: auto; }
    .article-row-info { flex: 1; }
    .article-row-category { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 4px; font-weight: 600; }
    .article-row-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--black); margin-bottom: 5px; }
    .article-row-meta { font-size: 11px; color: var(--gray); }
    .badge-free { display: inline-block; margin-top: 6px; padding: 3px 9px; background: #e6f4ec; color: #1a7a3c; font-size: 11px; font-weight: 600; border-radius: 20px; letter-spacing: 0.3px; }

    /* Article */
    .article-hero { aspect-ratio: 3/2; overflow: hidden; background: var(--light); }
    .article-hero img { width: 100%; height: 100%; object-fit: cover; }
    .article-body { padding: 28px 22px; }
    .paywall-fade { height: 80px; background: linear-gradient(to bottom, transparent, white); pointer-events: none; }
    .paywall-blur-content { filter: blur(5px); user-select: none; pointer-events: none; }
    .article-category { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
    .article-title { font-family: var(--font-serif); font-size: 28px; font-weight: 700; line-height: 1.2; color: var(--black); margin-bottom: 12px; }
    .article-lead { font-family: var(--font-serif); font-size: 17px; line-height: 1.6; color: var(--gray); margin-bottom: 20px; font-style: italic; }
    .article-byline { display: flex; align-items: center; gap: 10px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
    .article-byline-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--light); overflow: hidden; display: flex; align-items: center; justify-content: center; }
    .article-byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .byline-initials { font-size: 13px; font-weight: 700; color: var(--gray); font-family: var(--font-serif); line-height: 1; }
    .article-byline-name { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
    .article-byline-date { font-size: 12px; color: var(--gray); }
    .article-content p { font-family: var(--font-serif); font-size: 17px; line-height: 1.75; color: var(--ink); margin-bottom: 20px; }
    .article-content h2 { margin-bottom: 10px; }
    .article-content h2.colored { color: #6a9eba; }
    .article-content a.colored { color: #6a9eba;text-decoration:none; }
    .article-content .blue-colored-block { background: #c9d9e5; padding: 68px 22px 24px; margin: 28px -22px; position: relative; }
    .article-content .blue-colored-block::before { content: ''; position: absolute; top: 16px; left: 22px; width: 120px; height: 28px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath d='M0,14 C10,5 20,5 30,14 C40,23 50,23 60,14 C70,5 80,5 90,14 C100,23 110,23 120,14' stroke='white' stroke-width='8' fill='none' stroke-linecap='butt'/%3E%3C/svg%3E") no-repeat; }
    .article-content .blue-colored-block-no-wave { background: #c9d9e5; padding: 20px 22px 24px; margin: 28px -22px; position: relative; }
    .article-content .colored-block { background: #c9d9e5; padding: 68px 22px 24px; margin: 28px -22px; position: relative; }
    .article-content .colored-block.white-text p, .article-content .colored-block.white-text h2  { color: white; }
    .article-content .colored-block::before { content: ''; position: absolute; top: 16px; left: 22px; width: 120px; height: 28px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath d='M0,14 C10,5 20,5 30,14 C40,23 50,23 60,14 C70,5 80,5 90,14 C100,23 110,23 120,14' stroke='%23bcd1e0' stroke-width='8' fill='none' stroke-linecap='butt'/%3E%3C/svg%3E") no-repeat; }
    .article-content ol, .article-content ul { padding-left: 1.5rem; margin: 0.5rem 0 1.25rem; }
    .article-content ol li, .article-content ul li { margin-bottom: 0.75rem; line-height: 1.6; font-family: var(--font-serif); font-size: 17px; color: var(--ink); }
    .article-content .colored-block ol, .article-content .colored-block ul { padding-left: 1.5rem; margin: 0.5rem 0; }
    .article-content .colored-block ol li, .article-content .colored-block ul li { margin-bottom: 0.75rem; line-height: 1.6; }
    .article-content .callout-ciekawostka { background: rgba(255,255,255,0.45); border-radius: 8px; padding: 12px 16px; margin: 16px 0; }
    .article-content .callout-ciekawostka-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; }
    .article-content .callout-ciekawostka p { font-size: 14px; line-height: 1.5; color: var(--ink); margin: 0; }
    .article-content .pullquote, .article-content blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; margin: 28px 0; font-family: var(--font-serif); font-size: 20px; line-height: 1.5; color: var(--black); list-style: none; }
    .article-content .pullquote, .article-content blockquote.blue { color: var(--accent); }
    .article-inline-img { margin: 24px -22px; overflow: hidden; }
    .article-inline-img img { width: 100%; display: block; }
    .article-inline-img figcaption { font-size: 12px; color: var(--gray); padding: 8px 22px 0; font-style: italic; }
    .article-inline-img.no-margin-bottom { margin-bottom: 0; }


    .article-inline-img.icon-text-style { margin: 24px 0; display: flex; align-items: start; gap: 16px; }
    .article-inline-img.icon-text-style img { width: 100px; height: 100px; flex-shrink: 0; }
    .article-inline-img.icon-text-style figcaption { padding: 0; font-style: normal; }
    .article-inline-img.icon-text-style figcaption strong { display: block; color: var(--ink); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
    .article-inline-img.icon-text-style figcaption span { font-size: 13px; color: var(--ink); }


    .article-inline-img.qr { margin: 24px 0; display: flex; align-items: start; gap: 16px; }
    .article-inline-img.qr img { width: 100px; height: 100px; flex-shrink: 0; }
    .article-inline-img.qr figcaption { padding: 0; font-style: normal; }
    .article-inline-img.qr figcaption strong { display: block; color: var(--accent); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
    .article-inline-img.qr figcaption span { font-size: 13px; color: var(--ink); }

    /* Slide menu */
    #menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 400; }
    #menu-overlay.open { display: block; }
    #slide-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 500; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.32,0.72,0,1); display: flex; flex-direction: column; padding: calc(var(--safe-top) + 16px) 0 calc(var(--safe-bottom) + 28px); }
    #slide-menu.open { transform: translateX(0); }
    .menu-header { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 32px; }
    .menu-logo { height: 26px; width: auto; display: block; }
    .menu-close { flex-shrink: 0; }
    .menu-body { flex: 1; padding: 0 28px; overflow-y: auto; text-align: center; }
    .menu-section { margin-bottom: 8px; }
    .menu-link { display: block; font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--black); text-decoration: none; padding: 10px 0; line-height: 1.2; }
    .menu-link:active { opacity: 0.6; }
    .menu-link--heading { cursor: default; padding-bottom: 6px; }
    .menu-divider { border: none; border-top: 1px solid var(--border); margin: 12px auto 20px; width: 30%; }
    .menu-small-link { display: block; font-size: 14px; color: var(--gray); text-decoration: none; padding: 6px 0; }
    .menu-small-link:active { opacity: 0.6; }
    .menu-small-link:active { opacity: 0.6; }
    .menu-socials { display: flex; gap: 12px; padding: 24px 28px 0; border-top: 1px solid var(--border); margin-top: 16px; justify-content: center; }
    .menu-social { width: 40px; height: 40px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--ink); text-decoration: none; flex-shrink: 0; }
    .menu-social svg { width: 20px; height: 20px; }
    .menu-social:active { background: var(--border); }

    /* Bottom nav */
    .bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 480px; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 8px 0 calc(8px + var(--safe-bottom)); display: flex; justify-content: space-around; z-index: 100; }
    .nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 20px; cursor: pointer; border: none; background: none; color: var(--gray); font-size: 10px; font-family: var(--font-sans); letter-spacing: 0.3px; border-radius: 10px; }
    .nav-item.active { color: var(--accent); }
    .nav-item svg { width: 22px; height: 22px; }

    /* Toast */
    #toast { position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-80px); background: var(--black); color: var(--white); padding: 12px 20px; border-radius: 24px; font-size: 13px; font-weight: 500; z-index: 999; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap; max-width: 90vw; text-align: center; }
    #toast.show { transform: translateX(-50%) translateY(0); }

    /* Back btn */
    .back-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; font-size: 14px; color: var(--accent); cursor: pointer; font-weight: 500; padding: 4px 0; }

    /* Profile */
    .profile-section { padding: 32px 20px 20px; }
    .profile-avatar-wrap { width: 80px; height: 80px; border-radius: 18px; background: var(--light); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .profile-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .profile-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 6px; }
    .profile-email { font-size: 13px; color: var(--gray); text-align: center; margin-top: 4px; }
    .profile-sub { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 28px; }
    .settings-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
    .settings-row-label { color: var(--ink); }
    .settings-row-value { font-size: 13px; color: var(--gray); }
    .pwa-status { margin: 24px 0; background: var(--light); border-radius: 12px; padding: 16px; }
    .pwa-status-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 10px; }
    .pwa-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 20px; }
    .pwa-badge.installed { background: #e6f7ec; color: #1a7a3a; }
    .pwa-badge.browser { background: #fff3e0; color: #b35a00; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

    /* Search */
    .search-input-wrap { padding: 16px 20px; position: sticky; top: 61px; background: var(--white); z-index: 10; border-bottom: 1px solid var(--border); }
    .search-input { width: 100%; background: var(--light); border: none; border-radius: 12px; padding: 12px 16px; font-size: 15px; font-family: var(--font-sans); outline: none; color: var(--ink); }
    .search-results { padding: 8px 0; }
    .search-placeholder { text-align: center; padding: 60px 20px; color: var(--gray); font-size: 14px; }
    .search-placeholder-icon { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--gray); }
    .search-placeholder-icon svg { width: 100%; height: 100%; }

    /* Buttons */
    .action-btn { width: 100%; padding: 14px; border: none; border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; margin-bottom: 10px; }
    .action-btn-dark { background: var(--black); color: white; }
    .action-btn-light { background: var(--light); color: var(--ink); }

    /* Lightbox */
    #lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.95); flex-direction: column; }
    #lightbox.open { display: flex; }
    #lightbox-topbar { display: flex; align-items: center; justify-content: space-between; padding: calc(env(safe-area-inset-top,0px) + 10px) 16px 10px; flex-shrink: 0; }
    #lightbox-hint { color: rgba(255,255,255,0.35); font-size: 11px; }
    #lightbox-close { background: rgba(255,255,255,0.12); border: none; border-radius: 50%; color: white; width: 36px; height: 36px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
    #lightbox-scroll { flex: 1; overflow: hidden; display: flex; align-items: center; justify-content: center; touch-action: none; }
    #lightbox-img-wrap { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
    #lightbox-img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; touch-action: none; user-select: none; -webkit-user-drag: none; transform-origin: center center; }
    #lightbox-caption { text-align: center; color: rgba(255,255,255,0.5); font-size: 12px; padding: 10px 24px calc(env(safe-area-inset-bottom,0px) + 10px); flex-shrink: 0; }
    .lightbox-trigger { cursor: zoom-in; }

    /* Article swipe nav */
    #view-article { touch-action: pan-y; }
    .article-nav-drawer { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%); width: 100%; max-width: 480px; background: var(--white); border-radius: 20px 20px 0 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.12); z-index: 200; transition: transform 0.35s cubic-bezier(0.32,0.72,0,1); padding-bottom: calc(20px + var(--safe-bottom)); }
    .article-nav-drawer.open { transform: translateX(-50%) translateY(0); }
    .drawer-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 12px auto 16px; }
    .drawer-title { font-family: var(--font-serif); font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; padding: 0 20px 12px; }
    .drawer-slider { display: flex; gap: 12px; padding: 0 20px 4px 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory; scroll-padding-left: 20px; }
    .drawer-slide:first-child { margin-left: 20px; }
    .drawer-slider::-webkit-scrollbar { display: none; }
    .drawer-slide { flex-shrink: 0; width: 140px; cursor: pointer; scroll-snap-align: start; }
    .drawer-slide-thumb { width: 140px; height: 198px; border-radius: 8px; overflow: hidden; background: var(--light); margin-bottom: 8px; border: 2px solid transparent; transition: border-color 0.15s; }
    .drawer-slide-thumb img { width: 100%; height: 100%; object-fit: contain; }
    .drawer-slide.active .drawer-slide-thumb { border-color: var(--accent); }
    .drawer-slide-category { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 600; margin-bottom: 3px; }
    .drawer-slide-title { font-family: var(--font-serif); font-size: 12px; line-height: 1.3; color: var(--black); font-weight: 700; }
    .drawer-slide-meta { font-size: 10px; color: var(--gray); margin-top: 2px; }
    #drawer-overlay { display: none; position: fixed; inset: 0; z-index: 199; background: rgba(0,0,0,0.3); }
    #drawer-overlay.open { display: block; }
    /* Article swipe animation */
    #view-article { overflow: hidden; position: relative; }
    .article-back-bar { position: sticky; top: 0; z-index: 10; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px; }
    .article-scroll-body { }
    .article-inner { will-change: transform; }
    .article-inner.animating { transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); }
    .article-ad-view { display: none; width: 100%; overflow: hidden; touch-action: none; background: var(--white); }
    .article-ad-view.active { display: block; }
    #article-ad-img { width: 100%; height: auto; touch-action: none; user-select: none; -webkit-user-drag: none; transform-origin: center center; display: block; }
    /* Swipe arrows */
    .swipe-arrow-hint { position: fixed; top: 50%; transform: translateY(-50%); z-index: 90; pointer-events: none; opacity: 0; transition: opacity 0.4s; }
    .swipe-arrow-hint.show { animation: arrow-pulse 1.8s ease-in-out infinite; }
    @keyframes arrow-pulse { 0%, 100% { opacity: 0.12; } 50% { opacity: 0.45; } }
    .swipe-arrow-hint svg { width: 36px; height: 36px; color: rgba(0,0,0,1); }
    #swipe-arrow-left { left: 6px; }
    #swipe-arrow-right { right: 6px; }

    /* PDF Viewer */
    #view-pdf { display: none; flex-direction: column; position: fixed; inset: 0; z-index: 300; background: #1a1a1a; }
    #view-pdf.active { display: flex; }
    .pdf-topbar { display: flex; align-items: center; justify-content: space-between; padding: calc(var(--safe-top) + 12px) 16px 12px; background: #0a0a0a; flex-shrink: 0; }
    .pdf-topbar-title { font-family: var(--font-serif); font-size: 15px; color: white; font-weight: 700; }
    .pdf-topbar-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
    .pdf-close-btn { background: rgba(255,255,255,0.1); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .pdf-scroll-outer { flex: 1; overflow: auto; -webkit-overflow-scrolling: touch; background: #2a2a2a; touch-action: pan-x pan-y pinch-zoom; }
    .pdf-pages-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 0; transform-origin: top left; }
    .pdf-page-canvas { display: block; }
    .pdf-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: rgba(255,255,255,0.5); gap: 16px; font-size: 14px; }
    .pdf-spinner { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,0.15); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
    .pdf-bottombar { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 16px calc(var(--safe-bottom) + 10px); background: #0a0a0a; flex-shrink: 0; }
    .pdf-page-info { color: rgba(255,255,255,0.6); font-size: 13px; min-width: 70px; text-align: center; }
    .pdf-nav-btn { background: rgba(255,255,255,0.1); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
    .pdf-nav-btn:disabled { opacity: 0.3; }
    .pdf-zoom-btns { display: flex; gap: 6px; align-items: center; }
    .pdf-zoom-btn { background: rgba(255,255,255,0.1); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; }
    .pdf-zoom-level { color: rgba(255,255,255,0.5); font-size: 11px; min-width: 36px; text-align: center; }
    /* PDF buttons in article and issue */
    .btn-pdf { display: inline-flex; align-items: center; gap: 8px; background: var(--light); color: var(--ink); border: none; padding: 10px 18px; border-radius: 24px; font-size: 13px; font-weight: 600; cursor: pointer; }
    .btn-pdf-issue { display: flex; align-items: center; gap: 8px; margin: 0 20px 20px; padding: 14px 20px; background: var(--light); border: none; border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; width: calc(100% - 40px); }
    .btn-pdf-issue svg, .btn-pdf svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

    /* Paywall — full-screen opaque view rising from bottom */
    .paywall-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 299; opacity: 0; pointer-events: none; transition: opacity 0.38s; }
    .paywall-overlay.open { opacity: 1; pointer-events: auto; display: block; }
    .paywall-drawer { position: fixed; bottom: 0; left: 0; right: 0; height: 90%; transform: translateY(100%); z-index: 300; background: var(--white); border-radius: 20px 20px 0 0; transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; }
    .paywall-drawer.open { transform: translateY(0); pointer-events: auto; }
    .paywall-fade { display: none; }
    .paywall-wrap { max-width: 480px; margin: 0 auto; padding: 8px 24px calc(env(safe-area-inset-bottom,0px) + 24px); display: flex; flex-direction: column; height: 100%; overflow: hidden; }
    .paywall-top { margin-bottom: 40px; }
    .paywall-close-btn { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; font-size: 15px; color: var(--gray); cursor: pointer; padding: 4px 0; }
    .paywall-close-btn svg { display: block; }
    .drawer-drag-zone { width: 100%; padding: 8px 0 20px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; cursor: grab; touch-action: none; }
    .drawer-handle-bar { width: 36px; height: 4px; background: var(--border); border-radius: 2px; }
    .paywall-body { flex: 1; min-height: 0; display: block; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .paywall-cover-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
    .paywall-cover { width: 180px; border-radius: 6px; box-shadow: 0 8px 28px rgba(0,0,0,0.22); display: block; }
    .paywall-text { font-family: var(--font-serif); font-size: 17px; line-height: 1.55; color: var(--black); margin-bottom: 24px; }
    .paywall-btn-primary { width: 100%; padding: 15px; background: var(--black); color: var(--white); border: none; border-radius: 12px; font-size: 15px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; margin-bottom: 10px; }
    .paywall-btn-primary:active { opacity: 0.85; }
    .paywall-btn-blue { background: var(--accent); color: var(--white); }
    .paywall-btn-secondary { width: 100%; padding: 15px; background: var(--light); color: var(--ink); border: none; border-radius: 12px; font-size: 15px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; }
    .paywall-btn-secondary:active { opacity: 0.8; }
    /* Purchase options step */
    .purchase-heading { font-size: 16px; font-family: var(--font-serif); font-weight: 700; color: var(--black); letter-spacing: 0; text-transform: none; margin-bottom: 16px; }
    .purchase-options-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-shrink: 0; }
    .purchase-header-x { background: none; border: none; cursor: pointer; padding: 4px; color: var(--gray); display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; }
    .purchase-header-x:active { opacity: 0.6; }
    .purchase-options-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--black); }
    .purchase-options-sub { font-size: 14px; color: var(--gray); text-align: center; line-height: 1.5; margin-bottom: 12px; }
    .purchase-issue-identity { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 14px; }
    .purchase-issue-cover-thumb { width: 90px; height: auto; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
    .purchase-logo { height: 20px; width: auto; display: block; }
    .purchase-variant-label { font-size: 14px; color: var(--gray); text-align: center; margin-bottom: 8px; }
    .purchase-options-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
    .purchase-option { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 14px; cursor: pointer; background: var(--white); text-decoration: none; color: inherit; }
    .purchase-option.selected { border-color: var(--accent); background: #f0f7ff; }
    .purchase-option:active { opacity: 0.75; }
    .purchase-option-radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--white); }
    .purchase-option.selected .purchase-option-radio { border-color: var(--accent); background: var(--accent); }
    .purchase-option-radio--ext { background: var(--light); border-color: var(--border); color: var(--gray); }
    .purchase-option-info { flex: 1; min-width: 0; }
    .purchase-option-title { font-size: 14px; font-weight: 700; color: var(--black); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; line-height: 1.3; }
    .purchase-option-badge { font-size: 10px; font-weight: 700; background: #deeefb; color: var(--accent); padding: 2px 8px; border-radius: 20px; letter-spacing: 0.4px; flex-shrink: 0; }
    .purchase-option-desc { font-size: 12px; color: var(--gray); margin-top: 3px; line-height: 1.4; }
    .purchase-order-btn { width: 100%; padding: 15px; background: var(--accent); color: var(--white); border: none; border-radius: 14px; font-size: 16px; font-weight: 700; font-family: var(--font-sans); cursor: pointer; letter-spacing: 0.01em; transition: opacity 0.15s; }
    .purchase-order-btn:active { opacity: 0.85; }
    .purchase-free-link { width: 100%; background: none; border: none; color: var(--accent); font-size: 14px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; padding: 14px 0 4px; text-align: center; }
    .purchase-free-divider { width: 100%; text-align: center; color: var(--gray); font-size: 13px; font-weight: 400; font-family: var(--font-sans); padding: 4px 0; }
    #purchase-login-link { padding-top: 4px; }

    /* Registration view */
    #view-register { background: var(--white); min-height: 100dvh; }
    .reg-wrap { max-width: 400px; margin: 0 auto; padding: 16px 24px 40px; display: flex; flex-direction: column; }
    .reg-top { margin-bottom: 24px; }
    .reg-back-btn { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; font-size: 15px; color: var(--gray); cursor: pointer; padding: 4px 0; }
    .reg-back-btn svg { display: block; }
    .reg-logo { margin-bottom: 36px; }
    .reg-logo img { height: 26px; width: auto; display: block; }
    .reg-header { margin-bottom: 32px; }
    .reg-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 8px; }
    .reg-sub { font-size: 14px; color: var(--gray); line-height: 1.5; }

    /* Fields */
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .field-group { display: flex; flex-direction: column; margin-bottom: 16px; }
    .field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray); margin-bottom: 7px; }
    .field-optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; color: #bbb; }
    .field-input { width: 100%; padding: 13px 15px; font-size: 16px; font-family: var(--font-sans); color: var(--ink); background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; outline: none; transition: border-color 0.15s, box-shadow 0.15s; -webkit-appearance: none; }
    .field-input::placeholder { color: #c0bfba; }
    .field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(84,173,242,0.12); }
    .field-input.is-error { border-color: #e03c3c; box-shadow: 0 0 0 3px rgba(224,60,60,0.1); }
    .field-hint { font-size: 12px; color: #bbb; margin-top: 5px; }

    /* Agreements */
    .field-group--checkbox { margin-bottom: 12px; }
    .checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--ink); line-height: 1.5; }
    .checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
    .reg-link { color: var(--accent); text-decoration: none; font-weight: 500; }

    /* Error + button */
    .reg-error { font-size: 13px; color: #e03c3c; min-height: 20px; margin-bottom: 12px; line-height: 1.4; }
    .reg-btn { width: 100%; padding: 15px; background: var(--black); color: var(--white); border: none; border-radius: 12px; font-size: 15px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; transition: opacity 0.15s; letter-spacing: 0.01em; }
    .reg-btn:active { opacity: 0.85; }
    .reg-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .reg-login-link { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray); }
    .reg-link-btn { background: none; border: none; color: var(--ink); font-size: 14px; font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }

    /* Legal pages */
    .legal-page { padding: 20px 20px 48px; }
    .legal-back-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-size: 14px; color: var(--gray); padding: 0; margin-bottom: 24px; font-family: var(--font-sans); }
    .legal-back-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    .legal-back-btn:active { opacity: 0.6; }
    .legal-title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 20px; }
    .legal-section { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--black); margin: 28px 0 10px; padding-top: 4px; border-top: 1px solid var(--border); }
    .legal-page p { font-size: 14px; line-height: 1.75; color: var(--ink); margin-bottom: 12px; }
    .legal-page ul, .legal-page ol { font-size: 14px; line-height: 1.75; color: var(--ink); padding-left: 20px; margin-bottom: 12px; }
    .legal-page li { margin-bottom: 6px; }

    /* Bottom drawer (account data, reusable) */
    .bottom-drawer { position: fixed; inset: 0; transform: translateY(100%); z-index: 300; background: var(--white); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); pointer-events: none; }
    .bottom-drawer.open { transform: translateY(0); pointer-events: auto; }
    .bottom-drawer-wrap { max-width: 480px; margin: 0 auto; height: 100%; display: flex; flex-direction: column; padding: calc(env(safe-area-inset-top,0px) + 12px) 0 calc(env(safe-area-inset-bottom,0px) + 24px); }
    .bottom-drawer-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 16px; flex-shrink: 0; }
    .bottom-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 16px; flex-shrink: 0; border-bottom: 1px solid var(--border); }
    .bottom-drawer-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--black); }
    .bottom-drawer-body { flex: 1; overflow-y: auto; padding: 20px 20px 0; }
    .acct-section-title { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray); margin: 20px 0 10px; }
    .acct-section-title:first-child { margin-top: 0; }
    .acct-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--border); gap: 16px; }
    .acct-label { font-size: 13px; color: var(--gray); flex-shrink: 0; }
    .acct-value { font-size: 14px; color: var(--ink); font-weight: 500; text-align: right; }

    /* Profile — my issues */
    .profile-section-title { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; text-align: left; }
    .profile-issues-list { display: flex; flex-direction: column; gap: 10px; }
    .profile-issue-card { display: flex; align-items: center; gap: 14px; background: var(--light); border-radius: 12px; padding: 12px; cursor: pointer; }
    .profile-issue-card:active { opacity: 0.75; }
    .profile-issue-cover { width: 48px; flex-shrink: 0; background: var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
    .profile-issue-cover img { width: 100%; height: auto; display: block; }
    .profile-issue-num { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
    .profile-issue-season { font-size: 12px; color: var(--gray); }

    /* Contact page */
    .contact-block { margin-bottom: 28px; }
    .contact-company { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
    .contact-line { font-size: 15px; color: var(--gray); line-height: 1.6; }
    .contact-link { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--light); border-radius: 12px; text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500; margin-bottom: 10px; }
    .contact-link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gray); }
    .contact-link:active { opacity: 0.7; }
    .contact-block--legal { border-top: 1px solid var(--border); padding-top: 24px; }
    .contact-legal-line { font-size: 13px; color: var(--gray); line-height: 1.8; }
    .contact-legal-line span { font-weight: 600; color: var(--ink); }

    /* Redakcja */
    .redakcja-page { padding-bottom: 60px; }
    .redakcja-editors { display: flex; gap: 24px; justify-content: center; margin-bottom: 20px; }
    .redakcja-editor-card { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; max-width: 160px; }
    .redakcja-editor-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; background: var(--light); flex-shrink: 0; }
    .redakcja-editor-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .redakcja-avatar-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: var(--gray); font-family: var(--font-serif); }
    .redakcja-editor-role { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.6px; text-align: center; }
    .redakcja-editor-name { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--black); text-align: center; line-height: 1.3; }
    .redakcja-authors-heading { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 20px; }
    .redakcja-authors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
    .redakcja-author-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .redakcja-author-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--light); flex-shrink: 0; }
    .redakcja-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .redakcja-author-name { font-size: 12px; font-weight: 600; color: var(--black); text-align: center; line-height: 1.3; }

    /* Checkout type toggle (Osoba fizyczna / Firma) */
    .checkout-type-toggle { display: flex; background: var(--light); border-radius: 10px; padding: 3px; gap: 2px; }
    .checkout-type-btn { flex: 1; padding: 9px 8px; border: none; border-radius: 8px; background: transparent; font-size: 13px; font-weight: 500; color: var(--gray); cursor: pointer; font-family: var(--font-sans); transition: background 0.15s, color 0.15s; }
    .checkout-type-btn.active { background: var(--white); color: var(--black); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,0.10); }
    .checkout-section-label { font-size: 14px; font-weight: 700; color: var(--black); letter-spacing: 0; text-transform: none; margin: 16px 0 10px; }

    /* Checkout step inside purchase drawer */
    .checkout-summary { background: var(--light); border-radius: 12px; padding: 14px 16px; margin-bottom: 20px; }
    .checkout-summary-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink); padding: 3px 0; }
    .checkout-summary-total { font-weight: 700; font-size: 15px; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 10px; }
    .checkout-form { display: flex; flex-direction: column; }
    .checkout-submit { width: 100%; padding: 15px; background: var(--black); color: var(--white); border: none; border-radius: 12px; font-size: 15px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; margin-top: 8px; letter-spacing: 0.01em; transition: opacity 0.15s; }
    .checkout-submit:active { opacity: 0.85; }
    .checkout-submit:disabled { opacity: 0.5; cursor: not-allowed; }
    .checkout-step { flex: 1; min-height: 0; display: block; overflow-y: auto; -webkit-overflow-scrolling: touch; }

    /* Thank you view */
    @keyframes spin { to { transform: rotate(360deg); } }
    #view-thank-you { background: var(--white); }
    #view-payment-pending { background: var(--white); }
    #view-payment-pending .thank-you-icon { background: #f0f0f0; }
    .thank-you-wrap { max-width: 400px; margin: 0 auto; padding: calc(env(safe-area-inset-top,0px) + 60px) 32px calc(env(safe-area-inset-bottom,0px) + 80px); display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 100dvh; justify-content: center; }
    .thank-you-icon { width: 80px; height: 80px; background: #e8f4e8; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
    .thank-you-icon svg { width: 40px; height: 40px; color: #3a7a3a; }
    .thank-you-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 14px; }
    .thank-you-text { font-size: 15px; color: var(--gray); line-height: 1.6; margin-bottom: 10px; }
    .thank-you-btn { margin-top: 32px; width: 100%; padding: 15px; background: var(--black); color: var(--white); border: none; border-radius: 12px; font-size: 15px; font-weight: 600; font-family: var(--font-sans); cursor: pointer; letter-spacing: 0.01em; }
    .thank-you-btn:active { opacity: 0.85; }
