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

        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: 2px solid rgba(255, 212, 0, 0.6);
            z-index: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 6px rgba(255, 212, 0, 0.3);
            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: 6px;
            line-height: 1;
        }

        .verified-badge {
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 4px;
            vertical-align: middle;
            margin-top: 1px;
        }

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

        .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: #FFD400;
        }

        .stat-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: #FFD400;
            stroke-width: 2;
        }

        .stat-icon.heart svg {
            fill: #FFD400;
            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: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            border: none;
            border-radius: 12px;
            color: #000;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(255, 212, 0, 0.4);
            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-timer {
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            font-size: 9px;
            font-weight: 700;
            background: linear-gradient(135deg, #FF4444 0%, #FF6B6B 100%);
            color: #fff;
            border-radius: 6px;
            letter-spacing: -0.1px;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
        }

        .cta-timer-emoji {
            font-size: 10px;
        }

        .cta-timer-text {
            font-weight: 600;
        }

        .cta-timer-count {
            font-weight: 700;
            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 6px 20px rgba(255, 212, 0, 0.5);
            animation: none;
        }

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

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

        .cta-secondary:hover {
            background: rgba(255, 212, 0, 0.1);
            border-color: #FFD400;
        }

        .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, 1fr);
            gap: 4px;
            margin-bottom: 12px;
        }

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

        .progress-bar-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background: #FFD400;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .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: 2px solid #FFD400;
            background: #2a2a2a;
            transition: transform 0.2s ease, border-color 0.2s ease;
            box-shadow: 0 0 8px rgba(255, 212, 0, 0.3);
            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 12px rgba(255, 212, 0, 0.5);
        }

        .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%);
            font-size: 16px;
            z-index: 3;
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
            opacity: 0.9;
        }

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

        .timers-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 8px;
        }

        .timer-item {
            text-align: center;
            font-size: 11px;
            color: #FFD400;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

        .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: #FFD400;
            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: 2px solid #FFD400;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 212, 0, 0.3);
            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 12px rgba(255, 212, 0, 0.5);
        }

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

        .media-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1;
        }

        .media-card::after {
            content: '🔒';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            z-index: 3;
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.8));
            opacity: 0.6;
        }

        .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: 32px;
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

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

        .footer-security {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .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: 12px;
            position: relative;
            height: 30px;
        }

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

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

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            overflow-y: auto;
            padding: 20px;
        }

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

        .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);
        }

        .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: 6px;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }

        .premium-verified {
            width: 18px;
            height: 18px;
        }

        .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;
        }

        /* Timer countdown */
        .premium-timer {
            background: linear-gradient(135deg, #FF4444 0%, #FF6B6B 100%);
            border-radius: 6px;
            padding: 8px 12px;
            margin-top: 8px;
            margin-bottom: 12px;
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            animation: timerPulse 2s ease-in-out infinite;
        }

        .premium-timer-icon {
            font-size: 14px;
        }

        .premium-timer-text {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        @keyframes timerPulse {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
            }
            50% { 
                box-shadow: 0 0 12px 4px rgba(255, 68, 68, 0.3);
            }
        }


        /* 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.95);
            z-index: 99999;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(12px);
        }

        .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: 5px;
            margin-bottom: 3px;
        }

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

        .popup-verified-badge {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

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

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

        .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: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 14px;
            line-height: 1.3;
            text-align: center;
        }

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

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

        /* Benefits list */
        .popup-benefits {
            margin-bottom: 14px;
        }

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

        .popup-benefit:last-child {
            margin-bottom: 0;
        }

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

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

        .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: 10px;
        }

        .popup-btn-primary {
            background: #FFD400;
            border: none;
            border-radius: 10px;
            padding: 14px 20px;
            color: #000000;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .popup-btn-primary:hover {
            background: #FFC700;
            transform: translateY(-1px);
        }

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

        .popup-btn-secondary {
            background: transparent;
            border: none;
            padding: 10px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            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 {
            font-size: 12px;
            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 {
                font-size: 11px;
            }
        }

        /* Unlock progress bar - Version améliorée */
        .unlock-progress-container {
            margin: 24px 0;
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 212, 0, 0.05) 0%, rgba(255, 212, 0, 0.02) 100%);
            border: 1px solid rgba(255, 212, 0, 0.2);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .unlock-progress-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .unlock-progress-text {
            font-size: 15px;
            color: #fff;
            margin-bottom: 14px;
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.3px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .unlock-progress-text strong {
            color: #FFD400;
            font-size: 16px;
        }

        .unlock-progress-bar {
            width: 100%;
            height: 12px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255, 212, 0, 0.3);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .unlock-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #FFD400 0%, #FFC700 30%, #FFD400 60%, #FFC700 100%);
            border-radius: 12px;
            width: 0%;
            position: relative;
            animation: progressGrow 1.5s ease-out forwards, progressShine 2s ease-in-out infinite;
            box-shadow: 0 0 12px rgba(255, 212, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .unlock-progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            animation: progressSlide 2s linear infinite;
        }

        @keyframes progressGrow {
            0% { width: 0%; }
            100% { width: var(--progress-width, 73%); }
        }

        @keyframes progressShine {
            0% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
            100% { filter: brightness(1); }
        }

        @keyframes progressSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .unlock-progress-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-top: 14px;
        }

        .progress-stat-item {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 212, 0, 0.2);
            border-radius: 8px;
            padding: 8px 6px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .progress-stat-item:hover {
            background: rgba(255, 212, 0, 0.1);
            border-color: rgba(255, 212, 0, 0.4);
            transform: translateY(-2px);
        }

        .progress-stat-icon {
            font-size: 18px;
            display: block;
            margin-bottom: 4px;
        }

        .progress-stat-value {
            font-size: 13px;
            font-weight: 700;
            color: #FFD400;
            display: block;
            margin-bottom: 2px;
        }

        .progress-stat-label {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* 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: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            color: #000;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(255, 212, 0, 0.4);
            transition: transform 0.2s ease;
        }

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

        .premium-continue-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            border: none;
            border-radius: 10px;
            color: #000;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(255, 212, 0, 0.4);
            transition: all 0.2s ease;
            letter-spacing: -0.2px;
        }

        .premium-continue-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 212, 0, 0.5);
        }

        .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: #000 !important;
            z-index: 999999 !important;
        }

        .ptprelinker-wrapper {
            width: 100%;
            min-height: 100vh;
            background: #000;
            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: #000;
            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: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 44px rgba(0,0,0,0.65);
            position: relative;
            z-index: 3;
        }

        .ptprelinker-profile {
            display: flex;
            gap: 14px;
            align-items: center;
            padding: 18px 18px 14px;
            background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
            border-bottom: 1px solid rgba(255, 212, 0, 0.16);
        }

        .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: 8px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ptprelinker-profile-verified {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .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-note {
            padding: 12px 18px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            line-height: 1.55;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

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

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

        .ptprelinker-cta-pill {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            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;
        }

        .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: #FFD400 !important;
            --ptprelinker-css-border-success: #FFD400 !important;
            --ptprelinker-css-hover-success: #FFC700 !important;
            --ptprelinker-css-border-hover-success: #FFC700 !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"] {
            background: rgba(255, 255, 255, 0.08) !important;
            border: 1px solid rgba(255, 255, 255, 0.16) !important;
            border-radius: 12px !important;
            color: #fff !important;
            padding: 14px 16px !important;
            font-size: 15px !important;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08) !important;
        }

        .ptprelinker-register-form input:focus {
            border-color: rgba(255, 212, 0, 0.9) !important;
            box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.14) !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: linear-gradient(135deg, #FFD400 0%, #FFC700 100%) !important;
            border: none !important;
            border-radius: 14px !important;
            font-weight: 900 !important;
            letter-spacing: -0.2px !important;
            box-shadow: 0 8px 24px rgba(255, 212, 0, 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,14 € • 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: #FFD400 !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: 6px;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
        }

        .chat-verified {
            width: 18px;
            height: 18px;
        }

        .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;
        }

        .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: 14px;
            height: 14px;
        }

        .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.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: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            color: #000;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 16px rgba(255, 212, 0, 0.4);
            border: none;
            letter-spacing: -0.2px;
        }

        .unlock-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(255, 212, 0, 0.5);
        }

        .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: linear-gradient(135deg, #FFD400 0%, #FFC700 100%);
            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;
        }
