        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold-1: #ffe27a;
            --gold-2: #ffd24a;
            --gold-3: #ffc21f;
            --gold-gradient: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 55%, var(--gold-3) 100%);
            --gold-border: rgba(255, 210, 74, 0.36);
            --gold-soft-bg: rgba(255, 210, 74, 0.09);
            --gold-glow: rgba(255, 210, 74, 0.34);
            --lock-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='5.1' y='10' width='13.8' height='10.9' rx='2.8' fill='%231f1f1f' stroke='%23ffd24a' stroke-width='1.45'/%3E%3Cpath d='M8 10V7.85C8 5.75 9.8 4.05 12 4.05s4 1.7 4 3.8V10' stroke='%23ffe27a' stroke-width='1.9' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='15.35' r='1.2' fill='%23ffd24a'/%3E%3Cpath d='M12 16.55v1.45' stroke='%23ffd24a' stroke-width='1.45' stroke-linecap='round'/%3E%3C/svg%3E");
            --views-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2.2 12s3.65-6 9.8-6 9.8 6 9.8 6-3.65 6-9.8 6-9.8-6-9.8-6z' fill='rgba(255,210,74,0.14)' stroke='%23ffd24a' stroke-width='1.55'/%3E%3Ccircle cx='12' cy='12' r='3.05' fill='%23ffd24a'/%3E%3Ccircle cx='12' cy='12' r='1.2' fill='%23141414'/%3E%3C/svg%3E");
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
            background: #0f0f0f;
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            max-width: 480px;
            margin: 0 auto;
            background: #1a1a1a;
            min-height: 100vh;
            position: relative;
        }

        .banner {
            width: 100%;
            height: 150px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        }

        .top-logo-wrapper {
            position: absolute;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .top-logo-wrapper img {
            height: 48px;
            width: auto;
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(26,26,26,0.95) 100%);
            z-index: 1;
        }

        .profile-section {
            padding: 0 20px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .avatar-story-wrapper {
            position: relative;
            width: 108px;
            height: 108px;
            cursor: pointer;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .avatar-story-wrapper::before {
            content: '';
            position: absolute;
            width: 106px;
            height: 106px;
            border-radius: 50%;
            border: 1.5px solid var(--gold-border);
            z-index: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 2px rgba(255, 210, 74, 0.08), 0 0 14px rgba(255, 210, 74, 0.2);
            transition: all 0.3s ease;
        }

        .avatar-story-wrapper.live::before {
            border-color: rgba(255, 59, 48, 0.8);
            box-shadow: 0 0 12px rgba(255, 59, 48, 0.6);
            animation: liveRingOscillate 2s ease-in-out infinite;
        }

        @keyframes liveRingOscillate {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.05);
                opacity: 1;
            }
        }

        .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #1a1a1a;
            object-fit: cover;
            display: block;
            background: #2a2a2a;
            position: relative;
            z-index: 2;
        }

        .live-badge-avatar {
            position: absolute;
            bottom: 0;
            right: 0;
            background: #ff3b30;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 6px;
            border-radius: 10px;
            border: 2px solid #1a1a1a;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 3px;
            animation: livePulse 2s ease-in-out infinite;
        }

        .live-badge-avatar::before {
            content: '●';
            font-size: 8px;
            animation: liveDot 1s ease-in-out infinite;
        }

        @keyframes liveDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .profile-info {
            margin-top: 12px;
        }

        .profile-name {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }

        .profile-name h1 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 1px;
            line-height: 1;
        }

        .verified-badge {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: -1px;
            vertical-align: middle;
            flex-shrink: 0;
            align-self: center;
        }

        .verified-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .username {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 16px;
        }

        .stats {
            display: flex;
            gap: 20px;
            margin-bottom: 16px;
        }

        .stat-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
        }

        .stat-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--gold-2);
        }

        .stat-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: var(--gold-2);
            stroke-width: 2;
        }

        .stat-icon.heart svg {
            fill: var(--gold-2);
            stroke: none;
        }

        .stat-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 6px;
        }

        .stat-value {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }

        .cta-primary {
            width: 100%;
            padding: 16px;
            background: var(--gold-gradient);
            border: 1px solid rgba(255, 225, 120, 0.35);
            border-radius: 12px;
            color: #000;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 20px var(--gold-glow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            letter-spacing: -0.2px;
            animation: ctaPulse 3s ease-in-out infinite;
            position: relative;
            overflow: visible;
        }

        .cta-main-text {
            display: block;
        }

        .cta-offer-pill {
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 12px;
            font-size: 10px;
            font-weight: 600;
            background: #111;
            color: var(--gold-2);
            border: 1px solid var(--gold-border);
            border-radius: 20px;
            letter-spacing: 0.2px;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .cta-offer-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 9px;
            margin-right: 2px;
        }

        .cta-offer-was {
            text-decoration: line-through;
            opacity: 0.6;
            font-weight: 500;
            font-variant-numeric: tabular-nums;
        }

        .cta-offer-sep {
            opacity: 0.5;
            font-weight: 400;
        }

        .cta-offer-now {
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
        }

        .cta-offer-badge {
            margin-left: 2px;
            padding: 2px 6px;
            border-radius: 4px;
            background: rgba(255, 210, 74, 0.14);
            color: var(--gold-2);
            font-weight: 800;
            font-variant-numeric: tabular-nums;
        }

        @keyframes ctaPulse {
            0%, 100% { 
                box-shadow: 0 4px 16px rgba(255, 212, 0, 0.4);
            }
            50% { 
                box-shadow: 0 4px 20px rgba(255, 212, 0, 0.6), 0 0 30px rgba(255, 212, 0, 0.3);
            }
        }

        .cta-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 26px rgba(255, 210, 74, 0.46);
            animation: none;
        }

        .cta-primary:active {
            transform: scale(0.98);
        }

        .cta-secondary {
            width: 100%;
            padding: 14px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid var(--gold-border);
            border-radius: 12px;
            color: var(--gold-2);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            letter-spacing: -0.2px;
        }

        .cta-secondary:hover {
            background: var(--gold-soft-bg);
            border-color: rgba(255, 225, 120, 0.45);
        }

        .cta-secondary:active {
            transform: scale(0.98);
        }

        .section {
            padding: 24px 20px;
        }

        .section:first-of-type {
            padding-bottom: 8px;
        }

        .section:nth-of-type(2) {
            padding-top: 8px;
        }

        .section:last-of-type {
            padding-top: 12px;
        }

        .section-header {
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }

        .section-subtitle {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .progress-bars {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 5px;
            margin-bottom: 12px;
        }

        .progress-bar {
            height: 3px;
            border-radius: 999px;
            background: rgba(255, 210, 74, 0.2);
            overflow: hidden;
            position: relative;
        }

        .progress-bar-fill {
            position: absolute;
            inset: 0 auto 0 0;
            width: 0%;
            border-radius: 999px;
            background: var(--gold-gradient);
            box-shadow: 0 0 10px rgba(255, 210, 74, 0.28);
            transition: width 0.45s linear;
        }

        .stories-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .stories-row > * {
            min-width: 0;
            min-height: 0;
        }

        .story-bubble {
            position: relative;
            width: 100%;
            padding-bottom: 100%; /* Force square/circle on all devices */
            border-radius: 50%;
            overflow: hidden;
            border: 1.5px solid var(--gold-border);
            background: #2a2a2a;
            transition: transform 0.2s ease, border-color 0.2s ease;
            box-shadow: 0 0 0 1px rgba(255, 210, 74, 0.08), 0 0 12px rgba(255, 210, 74, 0.2);
            cursor: pointer;
        }
        
        /* Fallback for browsers that support aspect-ratio */
        @supports (aspect-ratio: 1) {
            .story-bubble {
                padding-bottom: 0;
                aspect-ratio: 1;
            }
        }

        .story-bubble:hover {
            transform: scale(1.05);
            box-shadow: 0 0 0 1px rgba(255, 225, 120, 0.2), 0 0 18px rgba(255, 210, 74, 0.34);
        }

        .story-bubble img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #2a2a2a;
            border-radius: 50%;
        }

        .story-bubble::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 22px;
            height: 22px;
            z-index: 3;
            background-image: var(--lock-icon);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.58));
            opacity: 0.94;
        }

        .story-bubble.unblurred::after {
            content: none;
        }

        .stories-helper {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 8px;
            margin-bottom: 0;
            font-weight: 500;
            letter-spacing: -0.2px;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 74, 0.8) 50%, transparent 100%);
            margin: 0 20px 0 20px;
            border-radius: 1px;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .media-card {
            position: relative;
            aspect-ratio: 9 / 16;
            border-radius: 8px;
            overflow: hidden;
            background: #2a2a2a;
            border: 1.5px solid var(--gold-border);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 210, 74, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            opacity: 0.7;
            cursor: pointer;
        }

        .media-card:hover {
            transform: scale(1.02);
            opacity: 0.85;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 16px rgba(255, 210, 74, 0.32);
        }

        .media-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 1;
        }

        .media-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 28px;
            height: 28px;
            z-index: 3;
            background-image: var(--lock-icon);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.66));
            opacity: 0.93;
        }

        .media-card.unblurred::before,
        .media-card.unblurred::after {
            content: none;
        }

        .media-card.unblurred {
            opacity: 1;
        }

        .default-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 24px;
        }

        .footer {
            padding: 24px 20px;
            margin-top: 0;
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
            margin-bottom: 20px;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 14px;
            text-align: center;
        }

        .footer-security {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .footer-security-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 10px 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-height: 74px;
        }

        .footer-security-icon {
            width: 20px;
            height: 20px;
            color: #FFD400;
            opacity: 0.95;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .footer-security-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .footer-security-text {
            font-size: 11px;
            line-height: 1.25;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 12px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-separator {
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 6px;
            position: relative;
            height: 30px;
        }

        .footer-logo img {
            height: 45px;
            width: auto;
        }

        .footer-copyright {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 420px) {
            .footer-security {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            z-index: 10000;
            overflow-y: auto;
            padding: 14px;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offer-step-modal {
            background: rgba(0, 0, 0, 0.24);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .modal-content {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 24px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .offer-step-content {
            position: relative;
            width: 100%;
            max-width: 430px;
            border-radius: 16px;
            padding: 18px 16px 14px;
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
            border: 1px solid rgba(255, 210, 74, 0.26);
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 210, 74, 0.12);
            text-align: center;
        }

        .offer-step-close {
            position: absolute;
            top: 8px;
            right: 10px;
            width: 30px;
            height: 30px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.82);
            background: rgba(255, 255, 255, 0.08);
            font-size: 18px;
            line-height: 1;
        }

        .offer-step-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(255, 210, 74, 0.12);
            border: 1px solid rgba(255, 210, 74, 0.34);
            color: #FFD400;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .offer-step-title {
            margin: 0 14px 8px;
            color: #fff;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 900;
        }

        .offer-step-text {
            margin: 0;
            color: rgba(255, 255, 255, 0.76);
            font-size: 13px;
            line-height: 1.45;
        }

        .offer-step-text strong {
            color: #FFD400;
            font-weight: 800;
        }

        .offer-step-price-line {
            margin: 12px 0 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 11px;
            border: 1px solid rgba(255, 210, 74, 0.28);
            background: rgba(255, 210, 74, 0.08);
            padding: 8px 12px;
        }

        .offer-step-benefits {
            margin: 0 0 12px;
            display: grid;
            gap: 6px;
            text-align: left;
        }

        .offer-step-benefit {
            position: relative;
            padding-left: 18px;
            font-size: 13px;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .offer-step-benefit::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gold-gradient);
            box-shadow: 0 0 8px rgba(255, 210, 74, 0.45);
        }

        .offer-step-was {
            color: rgba(255, 255, 255, 0.52);
            text-decoration: line-through;
            font-size: 13px;
            font-weight: 700;
        }

        .offer-step-now {
            color: #FFD400;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .offer-step-pct {
            color: #111;
            background: var(--gold-gradient);
            border-radius: 999px;
            padding: 2px 8px;
            font-size: 11px;
            font-weight: 900;
        }

        .offer-step-continue {
            width: 100%;
            border: none;
            border-radius: 12px;
            background: var(--gold-gradient);
            color: #121212;
            font-size: 15px;
            font-weight: 900;
            padding: 13px 14px;
            cursor: pointer;
            margin-bottom: 8px;
            box-shadow: 0 10px 22px rgba(255, 210, 74, 0.3);
        }

        .offer-step-later {
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.84);
            font-size: 14px;
            font-weight: 700;
            padding: 11px 12px;
            cursor: pointer;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        .modal-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease;
        }

        .modal-close:hover {
            color: #fff;
        }

        .modal-body {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.7;
        }

        .modal-body h3 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body ul {
            margin: 12px 0;
            padding-left: 20px;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        .modal-body p {
            margin-bottom: 12px;
        }

        /* Premium Registration Modal Styles */
        .registration-content.premium-offer {
            max-width: 440px;
            padding: 0;
            background: #1a1a1a;
        }

        .premium-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 28px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .premium-close:hover {
            color: #fff;
        }

        .premium-header {
            padding: 20px 20px;
            background: #2a2a2a;
            position: relative;
            border-bottom: 1px solid rgba(255, 212, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .premium-avatar-wrapper {
            width: 64px;
            height: 64px;
            position: relative;
            flex-shrink: 0;
        }

        .premium-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #FFD400;
            box-shadow: 0 2px 8px rgba(255, 212, 0, 0.3);
        }

        .premium-profile-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            flex: 1;
        }

        .premium-name {
            display: flex;
            align-items: center;
            gap: 1px;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }

        .premium-verified {
            width: 21px;
            height: 21px;
            display: block;
            object-fit: contain;
            flex-shrink: 0;
            align-self: center;
        }

        .premium-body {
            padding: 16px 18px 20px;
        }

        .premium-badge {
            display: inline-block;
            background: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            color: #000;
            padding: 4px 14px;
            border-radius: 14px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 1px 4px rgba(255, 212, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .premium-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.3;
        }

        .premium-benefits {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 12px;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 212, 0, 0.3);
        }

        .benefit-icon {
            font-size: 18px;
            flex-shrink: 0;
            line-height: 1;
        }

        .benefit-text {
            flex: 1;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
        }

        .benefit-check {
            width: 18px;
            height: 18px;
            background: #FFD400;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .premium-cta-box {
            background: rgba(255, 212, 0, 0.1);
            border: 1px solid rgba(255, 212, 0, 0.4);
            border-radius: 8px;
            padding: 10px 12px;
            margin-bottom: 12px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
        }

        .premium-cta-box strong {
            color: #FFD400;
            font-weight: 700;
            font-size: 15px;
        }

        .premium-offer-strip {
            background: rgba(255, 212, 0, 0.05);
            border: 1px solid rgba(255, 212, 0, 0.2);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 8px;
            margin-bottom: 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .premium-offer-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #FFD400;
            opacity: 0.9;
        }

        .premium-offer-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            flex-wrap: wrap;
        }

        .premium-offer-was {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            font-variant-numeric: tabular-nums;
        }

        .premium-offer-sep {
            color: rgba(255, 255, 255, 0.3);
            font-weight: 400;
        }

        .premium-offer-now {
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
        }

        .premium-offer-pct-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: 6px;
            background: rgba(255, 212, 0, 0.15);
            color: #FFD400;
            font-size: 13px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            margin-left: 2px;
        }


        /* Exit Intent Modal - Mobile-First Design */
        .exit-intent-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.24);
            z-index: 99999;
            align-items: center;
            justify-content: center;
            padding: 14px;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .exit-intent-modal.active {
            display: flex;
        }

        .exit-intent-content {
            background: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0;
            max-width: 400px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            animation: exitPopUp 0.3s ease-out;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        }

        @keyframes fadeIn {
            from { 
                opacity: 0;
                backdrop-filter: blur(0px);
            }
            to { 
                opacity: 1;
                backdrop-filter: blur(12px);
            }
        }

        @keyframes exitPopUp {
            0% { 
                transform: scale(0.92) translateY(30px);
                opacity: 0;
            }
            100% { 
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        /* Header profil dans les pop-ups */
        .popup-profile-header {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .popup-profile-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid #FFD400;
            margin: 0 auto 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            object-fit: cover;
        }

        .popup-profile-name-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1px;
            margin-bottom: 3px;
        }

        .popup-profile-name {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
        }

        .popup-verified-badge {
            width: 21px;
            height: 21px;
            flex-shrink: 0;
            display: block;
            object-fit: contain;
            align-self: center;
        }

        .popup-profile-username {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        /* Body des pop-ups */
        .popup-body {
            padding: 20px;
        }

        .popup-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            padding: 5px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 210, 74, 0.34);
            background: rgba(255, 210, 74, 0.1);
            color: #FFD400;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .exit-intent-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .exit-intent-close:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        .popup-title {
            font-size: 21px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1.3;
            text-align: center;
            letter-spacing: -0.2px;
        }

        .popup-title .highlight {
            color: #FFD400;
        }

        .popup-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.72);
            margin-bottom: 12px;
            line-height: 1.4;
            text-align: center;
        }

        .popup-body-close {
            position: relative;
        }

        .popup-chip-corner {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 210, 74, 0.34);
            background: rgba(255, 210, 74, 0.1);
            color: #FFD400;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .popup-body-close .popup-title {
            padding-top: 24px;
            text-align: center;
            margin-bottom: 6px;
        }

        .popup-body-close .popup-subtitle {
            text-align: left;
            margin-bottom: 10px;
            font-size: 13px;
            line-height: 1.35;
            padding-right: 4px;
        }

        .popup-body-close .popup-offer-row {
            margin-bottom: 10px;
        }

        .popup-body-close .popup-benefits {
            gap: 5px;
            margin-bottom: 10px;
        }

        .popup-body-close .popup-benefit {
            padding: 7px 10px;
        }

        .popup-offer-row {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            margin-bottom: 14px;
        }

        .popup-offer-was {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: line-through;
            font-size: 16px;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

        .popup-offer-now {
            color: #FFD400;
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.3px;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }

        .popup-offer-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 8px;
            border-radius: 8px;
            background: rgba(255, 210, 74, 0.14);
            border: 1px solid rgba(255, 210, 74, 0.28);
            color: #FFD400;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }

        /* Benefits list */
        .popup-benefits {
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .popup-benefit {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 8px 10px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .popup-benefit-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
            flex: 1;
            padding-left: 14px;
        }

        .popup-benefit::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 50%;
            width: 6px;
            height: 6px;
            transform: translateY(-50%);
            border-radius: 50%;
            background: #FFD400;
            box-shadow: 0 0 8px rgba(255, 210, 74, 0.34);
        }

        .popup-benefit-text strong {
            color: #FFD400;
            font-weight: 600;
        }

        /* Stats row (pop-up 45s) */
        .popup-stats {
            display: flex;
            justify-content: space-around;
            gap: 8px;
            margin-bottom: 16px;
            padding: 12px;
            background: rgba(255, 212, 0, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 212, 0, 0.1);
        }

        .popup-stat {
            text-align: center;
        }

        .popup-stat-number {
            display: block;
            font-size: 17px;
            font-weight: 700;
            color: #FFD400;
            line-height: 1;
            margin-bottom: 3px;
        }

        .popup-stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        /* Style urgent pour la pop-up close */
        .popup-urgent-banner {
            background: linear-gradient(135deg, #FF4444 0%, #FF6B6B 100%);
            padding: 10px 12px;
            text-align: center;
            margin-bottom: 16px;
            border-radius: 8px;
            animation: urgentPulse 2s ease-in-out infinite;
        }

        .popup-urgent-text {
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
        }

        @keyframes urgentPulse {
            0%, 100% { 
                opacity: 1;
            }
            50% { 
                opacity: 0.9;
            }
        }

        .popup-buttons {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .popup-btn-primary {
            background: var(--gold-gradient);
            border: none;
            border-radius: 10px;
            padding: 14px 20px;
            color: #000000;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 8px 18px rgba(255, 210, 74, 0.22);
            letter-spacing: -0.2px;
        }

        .popup-btn-primary:hover {
            background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 100%);
            transform: translateY(-1px);
        }

        .popup-btn-primary:active {
            transform: scale(0.98);
        }

        .popup-btn-secondary {
            background: transparent;
            border: none;
            padding: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .popup-btn-secondary:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .popup-btn-secondary:active {
            transform: scale(0.97);
        }

        /* Mobile optimizations */
        @media (max-width: 480px) {
            .exit-intent-content {
                max-width: 95%;
            }

            .popup-profile-header {
                padding: 16px;
            }

            .popup-profile-avatar {
                width: 55px;
                height: 55px;
            }

            .popup-profile-name {
                font-size: 16px;
            }

            .popup-body {
                padding: 16px;
            }

            .popup-title {
                font-size: 17px;
            }

            .popup-subtitle {
                font-size: 13px;
            }
        }

        /* Tablet */
        @media (min-width: 481px) and (max-width: 768px) {
            .exit-intent-content {
                max-width: 440px;
            }
        }

        /* Post views badge */
        .post-views-badge {
            position: absolute;
            bottom: 8px;
            left: 8px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            padding: 4px 10px;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            z-index: 2;
            max-width: calc(100% - 16px);
            white-space: nowrap;
        }

        .post-views-icon {
            width: 14px;
            height: 14px;
            display: inline-block;
            background-image: var(--views-icon);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .post-views-badge {
                font-size: 10px;
                padding: 3px 8px;
                border-radius: 10px;
                bottom: 6px;
                left: 6px;
            }

            .post-views-icon {
                width: 13px;
                height: 13px;
            }
        }

        /* Premium access card */
        .unlock-progress-container {
            margin: 14px 0 0;
            padding: 18px;
            background: linear-gradient(180deg, rgba(255, 212, 0, 0.07) 0%, rgba(255, 212, 0, 0.02) 100%);
            border: 1px solid rgba(255, 212, 0, 0.24);
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .unlock-progress-eyebrow {
            display: inline-block;
            margin-bottom: 10px;
            padding: 5px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 212, 0, 0.35);
            color: #FFD400;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            background: rgba(255, 212, 0, 0.1);
        }

        .unlock-progress-title {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 4px;
            letter-spacing: -0.3px;
        }

        .unlock-progress-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
            text-align: center;
            font-weight: 600;
            line-height: 1.45;
            margin-bottom: 12px;
        }

        .unlock-offer-line {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .unlock-offer-was {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.45);
            text-decoration: line-through;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

        .unlock-offer-now {
            font-size: 34px;
            color: #FFD400;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.3px;
            font-variant-numeric: tabular-nums;
        }

        .unlock-offer-pct {
            background: rgba(255, 212, 0, 0.14);
            border: 1px solid rgba(255, 212, 0, 0.32);
            color: #FFD400;
            border-radius: 8px;
            padding: 4px 8px;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }

        .unlock-benefits-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 14px;
            text-align: left;
        }

        .unlock-benefit-item {
            color: rgba(255, 255, 255, 0.92);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
            position: relative;
            padding-left: 18px;
        }

        .unlock-benefit-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #FFD400;
            font-weight: 800;
            font-size: 13px;
            line-height: 1.3;
        }

        .unlock-premium-button {
            width: 100%;
            border: none;
            border-radius: 14px;
            padding: 14px 16px;
            background: var(--gold-gradient);
            color: #000;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: -0.2px;
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(255, 210, 74, 0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .unlock-premium-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(255, 210, 74, 0.38);
        }

        .unlock-premium-button:active {
            transform: scale(0.99);
        }

        .unlock-progress-note {
            margin-top: 10px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.35;
        }

        /* Preview overlay */
        .preview-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 100;
            animation: fadeIn 0.2s ease;
        }

        .preview-overlay.active {
            display: flex;
        }

        .preview-cta-btn {
            background: var(--gold-gradient);
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            color: #000;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(255, 210, 74, 0.3);
            transition: transform 0.2s ease;
        }

        .preview-cta-btn:hover {
            transform: scale(1.05);
        }

        .premium-continue-btn {
            width: 100%;
            padding: 14px;
            background: var(--gold-gradient);
            border: none;
            border-radius: 10px;
            color: #000;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(255, 210, 74, 0.32);
            transition: all 0.2s ease;
            letter-spacing: -0.2px;
        }

        .premium-continue-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(255, 210, 74, 0.4);
        }

        .premium-continue-btn:active {
            transform: scale(0.98);
        }

        .premium-footer-note {
            margin-top: 10px;
            text-align: center;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.3;
        }

        .premium-footer-note a {
            color: #FFD400;
            text-decoration: none;
            font-weight: 600;
        }

        .premium-footer-note a:hover {
            text-decoration: underline;
        }

        .link-cgu,
        .link-privacy {
            color: #FFD400;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .link-cgu:hover,
        .link-privacy:hover {
            color: #FFC700;
            text-decoration: underline;
        }

        @media (min-width: 768px) {
            .container {
                box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
            }
        }

        /* External Register Form Modal (our full-screen page) */
        .ptprelinker-full-modal {
            background: rgba(0, 0, 0, 0.24) !important;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 999999 !important;
        }

        .ptprelinker-wrapper {
            width: 100%;
            min-height: 100vh;
            background: transparent;
            overflow: hidden;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .ptprelinker-close-btn {
            position: fixed;
            top: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1000000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.15s ease, background 0.15s ease;
            backdrop-filter: blur(8px);
        }

        .ptprelinker-close-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.04);
        }

        /* Background (no banner) */
        .ptprelinker-wrapper::before {
            content: "";
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 0;
            pointer-events: none;
        }

        .ptprelinker-hero-top {
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            z-index: 100000;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 18px;
            pointer-events: none;
        }

        .ptprelinker-logo-img {
            height: 42px;
            width: auto;
            filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
        }

        /* Center the card in the viewport */
        .ptprelinker-center {
            position: relative;
            z-index: 3;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 88px 14px 44px;
        }

        /* Hard lock scrolling when the ptprelinker modal is open */
        html.ptprelinker-lock,
        body.ptprelinker-lock {
            height: 100%;
            overflow: hidden !important;
            overscroll-behavior: none;
        }

        .ptprelinker-card {
            width: 100%;
            max-width: 520px;
            margin: 0;
            background: #171717;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 16px 46px rgba(0, 0, 0, 0.62);
            position: relative;
            z-index: 3;
        }

        .ptprelinker-profile {
            display: flex;
            gap: 14px;
            align-items: center;
            padding: 18px 18px 14px;
            background: #1d1d1d;
            border-bottom: 1px solid rgba(255, 212, 0, 0.12);
        }

        .ptprelinker-profile-avatar {
            width: 64px;
            height: 64px;
            flex-shrink: 0;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #FFD400;
            box-shadow: 0 6px 18px rgba(255, 212, 0, 0.18);
            background: #2a2a2a;
        }

        .ptprelinker-profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .ptprelinker-profile-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .ptprelinker-profile-name {
            display: flex;
            align-items: center;
            gap: 2px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ptprelinker-profile-verified {
            width: 21px;
            height: 21px;
            flex-shrink: 0;
            display: block;
            object-fit: contain;
            align-self: center;
        }

        .ptprelinker-profile-badge {
            display: inline-flex;
            width: fit-content;
            background: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            color: #000;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            box-shadow: 0 4px 14px rgba(255, 212, 0, 0.28);
        }

        .ptprelinker-heading {
            padding: 14px 18px 10px;
            text-align: center;
        }

        .ptprelinker-title {
            margin: 0;
            color: #fff;
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.3px;
            text-align: center;
            line-height: 1.15;
        }

        .ptprelinker-title span {
            color: #FF7A1A;
        }

        .ptprelinker-note {
            padding: 14px 18px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 13px;
            line-height: 1.45;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            text-align: center;
        }

        .ptprelinker-note strong {
            color: #FFD400;
            font-weight: 800;
        }

        .ptprelinker-note-line {
            display: block;
        }

        .ptprelinker-note-line + .ptprelinker-note-line {
            margin-top: 6px;
        }

        .ptprelinker-note-line-main {
            color: rgba(255, 255, 255, 0.88);
            font-weight: 600;
        }

        .ptprelinker-note-line-price {
            padding: 6px 8px;
            border-radius: 10px;
            border: 1px solid rgba(255, 210, 74, 0.22);
            background: rgba(255, 210, 74, 0.08);
            font-weight: 700;
            line-height: 1.35;
        }

        .ptprelinker-note-line-meta {
            color: rgba(255, 255, 255, 0.72);
            font-size: 12px;
            line-height: 1.4;
        }

        .ptprelinker-note-cta {
            display: block;
            margin-top: 8px;
            color: #fff;
            font-weight: 700;
        }

        .ptprelinker-cta-strip {
            padding: 12px 18px 12px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ptprelinker-cta-pill {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
            padding: 10px 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.2;
            font-weight: 700;
            min-height: 74px;
        }

        .ptprelinker-pill-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: #FFD400;
        }

        .ptprelinker-pill-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .ptprelinker-pill-label {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            font-size: 11px;
            line-height: 1.2;
        }

        .ptprelinker-form-container {
            padding: 16px 18px 18px;
            background: #1a1a1a;
        }

        /* Desktop refinement */
        @media (min-width: 768px) {
            .ptprelinker-center {
                padding-left: 20px;
                padding-right: 20px;
                padding-top: 104px;
            }
        }

        #selector {
            background: transparent;
        }

        /* Styling overrides for injected ptprelinker form */
        .ptprelinker-box,
        .ptprelinker-_Box,
        .ptprelinker-content,
        .ptprelinker-content-inner {
            background: transparent !important;
            box-shadow: none !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 !important;
            border-radius: 0 !important;
        }

        .ptprelinker-overlay {
            display: none !important;
        }

        /* Theme via CSS variables (works even if markup changes) */
        .ptprelinker-register-form {
            --ptprelinker-css-bg-body: transparent !important;
            --ptprelinker-css-middle: rgba(255, 255, 255, 0.85) !important;
            --ptprelinker-css-bg-input: rgba(255, 255, 255, 0.08) !important;
            --ptprelinker-css-ft-placeholder: rgba(255, 255, 255, 0.55) !important;
            --ptprelinker-css-bg-success: #ffd24a !important;
            --ptprelinker-css-border-success: #ffe27a !important;
            --ptprelinker-css-hover-success: #ffc21f !important;
            --ptprelinker-css-border-hover-success: #ffd24a !important;
            --ptprelinker-css-ft-success: #000 !important;
        }

        /* Fallbacks when variables aren't respected */
        .ptprelinker-register-form,
        .ptprelinker-register-form form {
            background: transparent !important;
        }

        .ptprelinker-register-form input[type="text"],
        .ptprelinker-register-form input[type="email"],
        .ptprelinker-register-form input[type="password"] {
            border: 1px solid transparent !important;
            border-radius: 999px !important;
            color: #fff !important;
            padding: 14px 18px !important;
            font-size: 15px !important;
            min-height: 50px !important;
            background:
                linear-gradient(180deg, rgba(23, 23, 23, 0.92), rgba(15, 15, 15, 0.92)) padding-box,
                var(--gold-gradient) border-box !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 6px 14px rgba(0, 0, 0, 0.24) !important;
        }

        .ptprelinker-register-form input:focus {
            border-color: transparent !important;
            background:
                linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(15, 15, 15, 0.96)) padding-box,
                linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 52%, var(--gold-3) 100%) border-box !important;
            box-shadow:
                0 0 0 3px rgba(255, 210, 74, 0.14),
                0 10px 22px rgba(255, 210, 74, 0.2) !important;
            outline: none !important;
        }

        .ptprelinker-register-form button[type="submit"],
        .ptprelinker-register-form input[type="submit"],
        .ptprelinker-register-form .ptprelinker-button-success,
        .ptprelinker-register-form [class*="button-success"] {
            background: var(--gold-gradient) !important;
            border: none !important;
            border-radius: 14px !important;
            font-weight: 900 !important;
            letter-spacing: -0.2px !important;
            box-shadow: 0 8px 24px rgba(255, 210, 74, 0.28) !important;
            position: relative !important;
            color: transparent !important;
            padding: 14px 16px !important;
            width: 100% !important;
            cursor: pointer !important;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
            font-size: 17px !important;
            line-height: 1.1 !important;
            text-transform: none !important;
        }

        .ptprelinker-register-form button[type="submit"]::after,
        .ptprelinker-register-form .ptprelinker-button-success::after,
        .ptprelinker-register-form [class*="button-success"]::after {
            content: "Débloquer";
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: 900;
            font-size: 16px;
            letter-spacing: -0.2px;
            text-transform: uppercase;
        }

        .ptprelinker-register-form button[type="submit"]::before,
        .ptprelinker-register-form .ptprelinker-button-success::before,
        .ptprelinker-register-form [class*="button-success"]::before {
            content: "Paiement unique 1,04 € • Accès à vie";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -18px;
            font-size: 11px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.4px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        /* Input submit cannot use ::after text, so keep it readable */
        .ptprelinker-register-form input[type="submit"] {
            color: #000 !important;
            font-size: 17px !important;
            text-transform: uppercase !important;
            letter-spacing: -0.2px !important;
            font-weight: 900 !important;
        }

        .ptprelinker-register-form label {
            color: rgba(255, 255, 255, 0.75) !important;
        }

        .ptprelinker-register-form a {
            color: #ffe27a !important;
            font-weight: 800 !important;
            text-decoration: none !important;
        }

        .ptprelinker-register-form a:hover {
            text-decoration: underline !important;
        }
        
        /* Ptprelinker injected form styling */
        .ptprelinker-box,
        .ptprelinker-_Box {
            background: transparent !important;
            border-radius: 0 !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            box-shadow: none !important;
        }
        
        .ptprelinker-overlay {
            display: none !important;
        }
        
        .ptprelinker-content {
            padding: 0 !important;
            background: transparent !important;
        }
        
        .ptprelinker-content-inner {
            background: transparent !important;
        }
        
        /* Form title styling */
        .ptprelinker-register-form h1,
        .ptprelinker-register-form h2,
        .ptprelinker-register-form h3 {
            color: #fff !important;
            font-weight: 700 !important;
            text-align: center !important;
            margin-bottom: 20px !important;
        }

        /* Chat Styles */
        .chat-icon {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 212, 0, 0.5);
            z-index: 9999;
            transition: transform 0.2s ease;
        }

        .chat-icon:hover {
            transform: scale(1.1);
        }

        .chat-icon svg {
            width: 28px;
            height: 28px;
            color: #000;
        }

        .chat-notification {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 24px;
            height: 24px;
            background: #ff3b30;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            border: 2px solid #0f0f0f;
        }

        .chat-window {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 380px;
            max-width: calc(100vw - 48px);
            height: 440px;
            max-height: calc(100vh - 48px);
            background: #1a1a1a;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            z-index: 10000;
            display: none;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(255, 212, 0, 0.3);
        }

        .chat-window.active {
            display: flex;
        }

        .chat-header {
            padding: 16px;
            background: #2a2a2a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header-profile {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .chat-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #FFD400;
        }

        .chat-header-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .chat-header-name {
            display: flex;
            align-items: center;
            gap: 1px;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
        }

        .chat-verified {
            width: 21px;
            height: 21px;
            display: block;
            object-fit: contain;
            flex-shrink: 0;
            align-self: center;
        }

        .chat-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #30d158;
            border-radius: 50%;
            animation: statusPulse 2s ease-in-out infinite;
        }

        .status-dot.live {
            background: #ff3b30;
            animation: livePulse 1.5s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes livePulse {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.7;
                transform: scale(1.2);
            }
        }

        .chat-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 28px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease;
        }

        .chat-close:hover {
            color: #fff;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .chat-welcome {
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            padding: 20px;
        }

        .chat-promo-wrapper {
            max-width: 100%;
            width: 100%;
            align-self: stretch;
        }

        .chat-promo-card {
            background: linear-gradient(160deg, rgba(255, 210, 74, 0.08) 0%, rgba(255, 210, 74, 0.03) 100%);
            border: 1px solid rgba(255, 210, 74, 0.28);
            border-radius: 14px;
            padding: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        }

        .chat-promo-title {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .chat-promo-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.45;
            margin-bottom: 8px;
        }

        .chat-promo-list {
            list-style: none;
            padding: 0;
            margin: 0 0 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .chat-promo-list li {
            position: relative;
            padding-left: 14px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.35;
        }

        .chat-promo-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #FFD400;
            font-weight: 800;
        }

        .chat-promo-button {
            width: 100%;
            border: none;
            border-radius: 10px;
            padding: 10px 12px;
            background: var(--gold-gradient);
            color: #000;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(255, 210, 74, 0.26);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .chat-promo-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(255, 210, 74, 0.35);
        }

        .chat-mini-error {
            align-self: center;
            width: 100%;
            max-width: 90%;
            border: 1px solid rgba(255, 210, 74, 0.25);
            background: rgba(255, 210, 74, 0.08);
            border-radius: 10px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            animation: fadeIn 0.16s ease;
        }

        .chat-mini-error-left {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-width: 0;
        }

        .chat-mini-error-lock {
            width: 13px;
            height: 13px;
            display: inline-block;
            background-image: var(--lock-icon);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            flex-shrink: 0;
            opacity: 0.95;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.38));
        }

        .chat-mini-error-text {
            font-size: 11px;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            min-width: 0;
        }

        .chat-mini-error-btn {
            border: 1px solid rgba(255, 210, 74, 0.35);
            background: rgba(255, 210, 74, 0.14);
            color: #FFD400;
            border-radius: 999px;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .message-wrapper {
            display: flex;
            flex-direction: column;
            max-width: 75%;
            align-self: flex-start;
        }

        .message-wrapper.user {
            align-self: flex-end;
        }

        .message-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .message-wrapper.user .message-header {
            justify-content: flex-end;
            color: rgba(255, 255, 255, 0.5);
        }

        .message-header-name {
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        .message-wrapper.user .message-header-name {
            color: rgba(255, 255, 255, 0.7);
        }

        .message-header-verified {
            width: 18px;
            height: 18px;
            display: block;
            object-fit: contain;
            flex-shrink: 0;
            align-self: center;
        }

        .message-header-time {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
        }

        .message {
            padding: 10px 14px;
            border-radius: 16px;
            font-size: 14px;
            line-height: 1.4;
            word-wrap: break-word;
        }

        .message.user {
            background: #FFD400;
            color: #000;
            border-bottom-right-radius: 4px;
        }

        .message-user-row {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
        }

        .message-unsent-cross {
            width: 16px;
            height: 16px;
            border-radius: 999px;
            background: #ff3b30;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            line-height: 1;
            box-shadow: 0 3px 8px rgba(255, 59, 48, 0.35);
        }

        .message.other {
            background: #2a2a2a;
            color: #fff;
            border-bottom-left-radius: 4px;
            position: relative;
        }

        .message-info {
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid #FFD400;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            width: 100%;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .message-info-name {
            color: #FFD400;
            font-weight: 600;
        }

        .message-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            width: 100%;
        }

        .blurred-message-box {
            background: rgba(42, 42, 42, 0.8);
            border-radius: 16px;
            border-bottom-left-radius: 4px;
            padding: 16px 18px;
            position: relative;
            min-width: 200px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .blurred-text {
            filter: blur(12px);
            color: rgba(255, 255, 255, 0.2);
            font-size: 14px;
            line-height: 1.5;
            user-select: none;
            opacity: 0.4;
            pointer-events: none;
        }

        .unlock-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
            backdrop-filter: blur(2px);
        }

        .unlock-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--gold-gradient);
            color: #000;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 8px 20px rgba(255, 210, 74, 0.32);
            border: none;
            letter-spacing: -0.2px;
        }

        .unlock-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(255, 210, 74, 0.4);
        }

        .unlock-button:active {
            transform: translateY(0);
        }

        .chat-typing {
            padding: 12px 16px;
            background: transparent;
        }

        .typing-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .typing-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #FFD400;
        }

        .typing-bubble {
            background: #2a2a2a;
            padding: 12px 16px;
            border-radius: 16px;
            border-bottom-left-radius: 4px;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .typing-dots span {
            width: 8px;
            height: 8px;
            background: #FFD400;
            border-radius: 50%;
            animation: typingBounce 1.4s ease-in-out infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingBounce {
            0%, 60%, 100% { 
                transform: translateY(0);
                opacity: 0.5;
            }
            30% { 
                transform: translateY(-6px);
                opacity: 1;
            }
        }

        .chat-input-container {
            padding: 12px 16px;
            background: #2a2a2a;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 8px;
        }

        .chat-input {
            flex: 1;
            background: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 10px 16px;
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .chat-input:focus {
            border-color: #FFD400;
        }

        .chat-send {
            width: 40px;
            height: 40px;
            background: var(--gold-gradient);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .chat-send:hover {
            transform: scale(1.05);
        }

        .chat-send svg {
            width: 18px;
            height: 18px;
            color: #000;
        }
