:root {
    --primary-purple: #835afd;
    --primary-gradient: linear-gradient(135deg, #835afd 0%, #633bbc 100%);
    --bg-dark: #000000;
    --card-bg: rgba(15, 15, 18, 0.95);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --status-online: #22c55e;
    --radius-lg: 35px;
    --radius-md: 16px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.app-container {
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

/* State Management */
.state {
    display: none;
}

.state.active {
    display: block;
}

/* Landing State - Matching reference exactly */
#state-landing {
    text-align: center;
    padding: 0 20px;
    min-height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000 url('dark_matrix_background.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

#state-landing.active {
    display: flex;
}

.search-box {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--card-border);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo-top img {
    height: 55px;
    margin-bottom: 12px;
    object-fit: contain;
}

.logo-top span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-family: 'Outfit';
}

.search-box h1 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.search-box h1 span {
    color: #8b5cf6;
}

.search-box .description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    max-width: 280px;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.input-container input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-size: 1rem;
}

#cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#search-input-container {
    margin-bottom: 30px;
}

.at-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b5cf6;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 10px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    width: 100%;
    max-width: 340px;
    padding: 18px;
    background: linear-gradient(135deg, #835afd 0%, #633bbc 100%);
    border: none;
    border-radius: 100px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(131, 90, 253, 0.3);
    z-index: 5;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-primary i {
    font-size: 1.2rem;
}

.hidden {
    display: none !important;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.input-container input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-container input:focus {
    border-color: #835afd;
}

.btn-circle-search {
    position: absolute;
    right: 8px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #835afd 0%, #633bbc 100%);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-circle-search.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Modal Confirmation */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 200;
    backdrop-filter: blur(10px);
}

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

.modal-content {
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px 25px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.modal-content h2 {
    color: #a855f7;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.profile-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.profile-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #1a1a1c;
    margin-bottom: 25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-bottom: 25px;
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: white;
}

.stat-item span {
    font-size: 0.8rem;
    color: #9ca3af;
}

.bio {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e7eb;
    margin-bottom: 25px;
}

.modal-alert {
    background: rgba(127, 29, 29, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
    padding: 18px;
    border-radius: 16px;
    text-align: left;
    font-size: 0.8rem;
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.btn-outline {
    flex: 1;
    background: transparent;
    border: 1px solid #2d2d30;
    color: white;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
}

.btn-purple-glow {
    flex: 1.5;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: none;
    color: white;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}

/* Simulated Instagram UI Styles */
#state-hacking,
#state-preview {
    background: #000;
    min-height: 100vh;
}

.success-banner {
    background: #22c55e;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.insta-logo-container {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.insta-brand-img {
    height: 60px;
    object-fit: contain;
}

.hacking-form-group {
    background: #121214;
    border: 1px solid #2d2d30;
    border-radius: 12px;
    margin: 0 20px 25px;
    overflow: hidden;
}

.hacking-form-group .input-wrap {
    padding: 18px 20px;
}

.hacking-form-group .input-wrap:first-child {
    border-bottom: 1px solid #2d2d30;
}

.hacking-form-group input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    font-size: 1rem;
}

.btn-login-blue {
    margin: 0 20px;
    width: calc(100% - 40px);
    background: #0095f6;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.hacking-error-msg {
    color: #ff3b3b;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    display: none;
    font-weight: 500;
}

.hacking-status-box {
    margin: 0 20px 25px;
    padding: 20px;
    background: #121214;
    border: 1px solid #2d2d30;
    border-radius: 12px;
    display: none;
    align-items: center;
    gap: 15px;
}

.hacking-status-box.active {
    display: flex;
}

.hacking-icon-circle {
    width: 32px;
    height: 32px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hacking-status-text {
    flex: 1;
}

.hacking-status-text strong {
    display: block;
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 2px;
}

.hacking-status-text p {
    font-size: 0.8rem;
    color: #71717a;
}

.fa-spin-slow {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Preview UI */
.preview-top-nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.preview-logo-img {
    height: 32px;
    object-fit: contain;
}

.preview-stories {
    display: flex;
    gap: 15px;
    padding: 15px;
    overflow-x: auto;
    border-bottom: 1px solid #1a1a1c;
}

.story-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 75px;
}

.circle-outer {
    width: 65px;
    height: 65px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.circle-outer img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #000;
}

.story-circle span {
    font-size: 0.7rem;
    color: #9ca3af;
}

.vip-blocker-post {
    padding: 15px;
    margin: 15px;
    background: #121214;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vip-blocker-post p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #e5e7eb;
}

.main-post .post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

/* Instagram Preview Refinement */
#state-preview {
    background: #000;
}

.preview-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.preview-top-nav .nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-badge-container {
    position: relative;
    font-size: 1.5rem;
}

.red-dot {
    position: absolute;
    top: 3px;
    right: 0px;
    width: 7px;
    height: 7px;
    background: #ff3040;
    border-radius: 50%;
    border: 1.5px solid #000;
}

.red-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff3040;
    color: white;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 10px;
    border: 2px solid #000;
    font-weight: bold;
}

.preview-stories {
    display: flex;
    gap: 15px;
    padding: 10px 15px;
    overflow-x: auto;
    background: #000;
    border-bottom: 0.5px solid #262626;
    scrollbar-width: none;
}

.story-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 75px;
}

.story-circle span {
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
}

.circle-outer {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
}

.circle-outer.green-ring {
    background: linear-gradient(45deg, #44ce00, #73ff33);
}

.circle-outer.no-ring {
    background: #262626;
}

.circle-outer img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #000;
    object-fit: cover;
}

.plus-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #0095f6;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    font-size: 0.9rem;
    font-weight: bold;
}

.main-post {
    background: #000;
    margin-bottom: 300px;
    position: relative;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #262626;
}

.preview-notice {
    padding: 20px 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 0.5px solid #262626;
}

.notice-icon-circle {
    width: 28px;
    height: 28px;
    border: 1.5px solid #ff3040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3040;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.preview-notice p {
    font-size: 0.83rem;
    color: #f5f5f5;
    line-height: 1.4;
}

.preview-notice a {
    color: #0095f6;
    text-decoration: none;
    font-weight: 600;
}

.restricted-content {
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #71717a;
    background: linear-gradient(to bottom, #000 0%, #09090b 100%);
    border-top: 0.5px solid #262626;
}

.restricted-content i {
    font-size: 3rem;
    opacity: 0.5;
}

.restricted-content span {
    font-size: 1rem;
    font-weight: 500;
}

.post-img-container img {
    width: 100%;
    display: block;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    font-size: 1.5rem;
}

.actions-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.like-count {
    padding: 0 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-caption {
    padding: 5px 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #efefef;
}

.post-caption .username {
    font-weight: 600;
    margin-right: 5px;
}

.post-caption .more {
    color: #8e8e8e;
    cursor: pointer;
}

/* Redesigned VIP Banner */
.floating-preview-timer {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    padding: 12px 15px;
    color: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.timer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
}

.btn-vip-small {
    background: white;
    color: #8b5cf6;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
}

.timer-desc {
    font-size: 0.72rem;
    line-height: 1.4;
    opacity: 0.95;
    font-weight: 500;
    padding-right: 20px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    display: flex;
    justify-content: space-around;
    padding: 12px 0 25px;
    border-top: 0.5px solid #262626;
    z-index: 1001;
}

.bottom-nav i,
.bottom-nav img {
    font-size: 1.4rem;
    color: white;
    cursor: pointer;
}

.bottom-nav img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #262626;
}

.bottom-nav img.active-user {
    border: 1.5px solid white;
}

/* Main Checkout Page (state-final) */
#state-final {
    padding-bottom: 200px;
    /* Space for sticky footer */
    background: #000;
}

#state-final .final-logo-header,
#state-checkout .final-logo-header,
#state-payment .final-logo-header {
    text-align: center;
    padding: 30px 0;
}

#state-final .final-logo,
#state-checkout .final-logo,
#state-payment .final-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#state-final .final-logo img,
#state-checkout .final-logo img,
#state-payment .final-logo img {
    width: 45px;
}

#state-final .final-logo span,
#state-checkout .final-logo span,
#state-payment .final-logo span {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
}

#state-final .final-logo span span,
#state-checkout .final-logo span span,
#state-payment .final-logo span span {
    color: #8b5cf6;
}

.final-hero-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 20px 40px;
}

.final-hero-title span {
    color: #8b5cf6;
}

/* Redesigned Profile Card for Final State */
.final-profile-card {
    background: #121214;
    border-radius: 30px;
    padding: 25px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.final-profile-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.final-profile-header .avatar-wrap {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 3px solid #8b5cf6;
    padding: 3px;
    background: #000;
}

.final-profile-header .avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.final-profile-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.final-profile-info p {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.final-profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
}

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

.final-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.final-stat span {
    font-size: 0.8rem;
    color: #71717a;
}

.final-profile-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e4e4e7;
}

/* Section Icons & Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 20px 20px;
}

.header-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #a78bfa;
}

.header-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.header-content p {
    font-size: 0.85rem;
    color: #a1a1aa;
    line-height: 1.4;
}

/* Feature Grids */
.media-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 12px;
    margin: 0 20px;
}

.media-item {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
}

.media-item.main-media {
    aspect-ratio: 4/5;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px);
    opacity: 0.4;
}

.media-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.8;
}

/* Map Card */
.map-card {
    background: #121214;
    border-radius: 30px;
    margin: 0 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-preview {
    width: 100%;
    height: 220px;
    background-image: url('map-bg.png');
    /* Local map grid */
    background-size: cover;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.map-pin {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fff;
    padding: 2px;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.map-pin img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.map-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.map-info p {
    font-size: 0.85rem;
    color: #a1a1aa;
    margin-bottom: 15px;
}

.btn-map-ver {
    width: 100%;
    padding: 12px;
    background: #27272a;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

/* Stories Section */
.stories-grid-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 0 20px;
}

.story-card-final {
    aspect-ratio: 9/16;
    background: #111;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.story-card-final img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px);
    opacity: 0.3;
}

.story-card-final i {
    font-size: 2.5rem;
    color: #fff;
    z-index: 1;
}

.story-card-final span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    z-index: 1;
}

/* Pricing Overhaul */
.final-pricing-section {
    margin: 60px 20px;
    text-align: center;
}

.final-pricing-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}

.final-pricing-section h2 span {
    color: #8b5cf6;
}

.price-card-v2 {
    background: transparent;
    border: 1.5px solid #27272a;
    border-radius: 30px;
    padding: 25px;
    margin-bottom: 30px;
}

.price-card-v2 .old-price {
    color: #71717a;
    text-decoration: line-through;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.price-card-v2 .new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.price-card-v2 .new-price .cents {
    font-size: 1.1rem;
    margin-top: -15px;
}

.price-badges-v2 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #a1a1aa;
    flex-wrap: wrap;
}

.price-badges-v2 span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Benefits List v2 */
.benefits-list-v2 {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.benefit-item-v2 {
    background: #121214;
    padding: 18px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-item-v2 i {
    color: #8b5cf6;
    font-size: 1.1rem;
}

.benefit-item-v2 span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Big Purple CTA */
.btn-access-now {
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    margin-bottom: 15px;
}

.btn-access-now:active {
    transform: scale(0.98);
}

.access-info-v2 {
    color: #a1a1aa;
    font-size: 0.85rem;
    font-weight: 600;
}

/* FAQ Overhaul */
.faq-section-final {
    background: #121214;
    margin: 40px 20px;
    padding: 30px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section-final h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 800;
}

.faq-list-final {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-final {
    background: #1c1c1e;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item-final span {
    font-size: 0.95rem;
    font-weight: 700;
}

.faq-item-final i {
    color: #8b5cf6;
    opacity: 0.8;
}

/* Guarantee Card */
.guarantee-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin: 40px 20px;
    text-align: center;
}

.guarantee-card h3 {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d1d5db;
}

/* Sticky Bottom Footer Redesign */
.sticky-footer-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #121214;
    padding: 15px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-text-v2 {
    flex: 1;
}

.footer-text-v2 h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.footer-text-v2 p {
    font-size: 0.75rem;
    color: #71717a;
    line-height: 1.3;
}

.btn-footer-v2 {
    background: #5b47d1;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* General Alert Redesign */
.alert-red {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    margin: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.alert-red i {
    color: #ef4444;
    font-size: 1.2rem;
}

.alert-red p {
    font-size: 0.8rem;
    color: #ef4444;
    line-height: 1.4;
    font-weight: 500;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

/* Customer Info Modal Styling */
.customer-form {
    text-align: left;
    margin-top: 20px;
}

.customer-form .form-group {
    margin-bottom: 15px;
}

.customer-form label {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 5px;
    font-weight: 500;
}

.customer-form input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.customer-form input:focus {
    border-color: #8b5cf6;
}

.btn-payment {
    width: 100%;
    background: linear-gradient(135deg, #835afd 0%, #633bbc 100%);
    border: none;
    padding: 16px;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: filter 0.2s;
}

.btn-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.modal-content.wide {
    max-width: 480px;
}

/* Dedicated Pages Common Styles */
.state-container {
    background: #000;
}

.checkout-container,
.payment-container {
    padding: 10px 20px 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.checkout-header,
.payment-header {
    margin-bottom: 30px;
}

.checkout-header h2,
.payment-header h2 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #a782ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.checkout-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.checkout-alert {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
}

.checkout-alert i {
    color: #a78bfa;
    font-size: 1.1rem;
}

.checkout-alert span {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.4;
}


.payment-header {
    margin-bottom: 30px;
}

.pix-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.pix-qr-frame {
    background: white;
    padding: 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.pix-qr-frame img {
    width: 220px;
    height: 220px;
    display: block;
}

.pix-code-container-v2 {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px;
    margin-top: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pix-code-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.pix-code-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: white;
    word-break: break-all;
    line-height: 1.5;
    margin-bottom: 15px;
    display: block;
}

.btn-copy-pix-v2 {
    width: 100%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 14px;
    border-radius: 12px;
    color: #a78bfa;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-copy-pix-v2:hover {
    background: rgba(139, 92, 246, 0.2);
}

.btn-copy-pix-v2 i {
    font-size: 1.1rem;
}

.payment-steps {
    text-align: left;
    margin: 30px 0;
}

.step-item-v2 {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.step-num-v2 {
    width: 24px;
    height: 24px;
    background: #8b5cf6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.5;
    margin-top: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
}

.security-badge i {
    font-size: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.back-link:hover {
    color: white;
}

.pix-status-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.status-pulse-v2 {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: status-pulse-v2 1.5s infinite;
}

@keyframes status-pulse-v2 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* DIRECT INBOX */
#state-direct {
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: none;
    flex-direction: column;
}

#state-direct.active {
    display: flex;
}

.direct-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #262626;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.direct-search {
    padding: 12px 16px;
}

.search-bar-mock {
    background: #262626;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    color: #8e8e8e;
    font-size: 0.9rem;
}

.direct-notes {
    display: flex;
    gap: 20px;
    padding: 10px 16px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 10px;
}

.direct-notes::-webkit-scrollbar {
    display: none;
}

.note-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 75px;
}

.note-item span {
    font-size: 0.75rem;
    color: #8e8e8e;
    max-width: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.note-avatar-wrap {
    position: relative;
    width: 65px;
    height: 65px;
}

.note-avatar-wrap img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.note-bubble {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #262626;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    white-space: nowrap;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #363636;
}

.direct-messages-title {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.direct-list {
    flex: 1;
}

.direct-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    cursor: pointer;
}

.direct-item:active {
    background: #1a1a1a;
}

.direct-item img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-lock {
    position: relative;
    width: 56px;
    height: 56px;
}

.avatar-lock img {
    filter: blur(4px) brightness(0.7);
}

.avatar-lock i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.item-info {
    flex: 1;
    overflow: hidden;
}

.item-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.item-info p {
    font-size: 0.85rem;
    color: #8e8e8e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.direct-item.unread .item-info strong {
    font-weight: 600;
}

.direct-item.unread .item-info p {
    color: #fff;
    font-weight: 500;
}

.unread-dot {
    width: 8px;
    height: 8px;
    background: #0095f6;
    border-radius: 50%;
    margin-right: 5px;
}

/* DIRECT CHAT VIEW */
#state-direct-chat {
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: none;
    flex-direction: column;
}

#state-direct-chat.active {
    display: flex;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 0.5px solid #262626;
    position: sticky;
    top: 0;
    background: #000;
    z-index: 10;
}

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

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-user-info img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-user-details {
    display: flex;
    flex-direction: column;
}

.chat-user-details strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.chat-user-details p {
    color: #a8a8a8;
    font-size: 0.75rem;
    margin-top: -2px;
}

.chat-header-right {
    display: flex;
    gap: 18px;
}

.chat-header-right i {
    font-size: 1.4rem;
    opacity: 0.9;
}

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

.chat-date {
    text-align: center;
    font-size: 0.7rem;
    color: #8e8e8e;
    font-weight: 600;
    margin: 15px 0;
    text-transform: uppercase;
}

.msg-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 2px;
}

.msg-row.sent {
    justify-content: flex-end;
}

.msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.msg-avatar.hidden {
    visibility: hidden;
}

.msg-bubble {
    max-width: 72%;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.92rem;
    line-height: 1.3;
}

.msg-bubble.received {
    background: #262626;
}

.msg-bubble.sent {
    background: #a800ff;
    /* Purple exactly from image */
    background: -webkit-linear-gradient(bottom left, #a800ff, #d300c5);
    background: linear-gradient(to top right, #a800ff, #d300c5);
    color: #fff;
}

.media-container {
    max-width: 240px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    margin-top: 8px;
    align-self: flex-start;
    margin-left: 36px;
    /* Offset for avatar */
}

.media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px) brightness(0.7);
}

.media-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.msg-restricted {
    align-self: center;
    background: rgba(38, 38, 38, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 90%;
}

.msg-restricted i {
    font-size: 1.2rem;
    color: #a800ff;
}

.msg-restricted p {
    font-size: 0.75rem;
    color: #a8a8a8;
}

.chat-input-area {
    padding: 12px 16px 20px;
    background: #000;
}

.chat-input-wrap {
    background: #262626;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 6px 14px;
    gap: 12px;
}

.chat-camera-icon {
    background: #4f5bd5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.chat-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 0.95rem;
}

.chat-input-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.25rem;
    color: #fff;
}

/* DIRECT CHAT ENHANCEMENTS */

/* Reply Context */
.msg-reply-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
}

.reply-info {
    font-size: 0.65rem;
    color: #8e8e8e;
    margin-bottom: 4px;
    margin-left: 36px;
}

.msg-row.sent .reply-info {
    margin-left: 0;
    margin-right: 12px;
    text-align: right;
}

.reply-bubble {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 15px;
    background: #1a1a1a;
    color: #fff;
    opacity: 0.6;
    margin-bottom: -10px;
    margin-left: 36px;
    max-width: fit-content;
    border: 0.5px solid #333;
}

.msg-row.sent .reply-bubble {
    margin-left: auto;
    margin-right: 0;
}

.reply-bubble.sent-context {
    background: #262626;
}

/* Audio Bubbles */
.audio-bubble-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audio-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 22px;
    background: #262626;
    width: 240px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.msg-row.sent .audio-bubble {
    background: #a800ff;
    background: linear-gradient(to top right, #a800ff, #d300c5);
}

.play-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.waveform {
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 1.5px;
    margin: 0 8px;
}

.waveform span {
    flex: 1;
    min-width: 1px;
    max-width: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: background 0.1s;
}

.waveform.playing span.filled {
    background: #fff;
}

.audio-duration {
    font-size: 0.7rem;
    color: #fff;
    opacity: 0.9;
}

.transcription-link {
    font-size: 0.65rem;
    color: #8e8e8e;
    margin-top: 4px;
    margin-left: 12px;
}

/* Reactions */
.msg-reaction {
    position: absolute;
    bottom: -12px;
    right: 0;
    background: #1a1a1a;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 2px 4px;
    font-size: 0.7rem;
    z-index: 2;
}

.msg-row.received .msg-reaction {
    right: auto;
    left: 45px;
}

.media-container .msg-reaction {
    bottom: -10px;
    left: 5px;
}

/* Separators */
.new-messages-separator {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.new-messages-line {
    flex: 1;
    height: 0.5px;
    background: #333;
}

.new-messages-label {
    padding: 0 12px;
    font-size: 0.7rem;
    color: #8e8e8e;
    font-weight: 500;
}

/* VIP Audio Modal */
#vip-audio-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    background: linear-gradient(135deg, #a800ff 0%, #6c00a3 100%);
    border-radius: 25px;
    padding: 30px 20px;
    z-index: 2100;
    text-align: center;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#vip-audio-modal.active {
    display: block;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.vip-modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #fff;
}

.vip-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #000;
    opacity: 0.7;
}

.vip-modal-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.vip-modal-dots span {
    width: 6px;
    height: 6px;
    background: #000;
    opacity: 0.3;
    border-radius: 50%;
}

.vip-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 0.5;
    cursor: pointer;
}

.modal-overlay-dark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
}

.modal-overlay-dark.active {
    display: block;
}

.large-heart {
    font-size: 3.5rem;
    margin: 10px 0;
    align-self: flex-start;
    margin-left: 10px;
}

/* Waveform Animation */
@keyframes waveformPulse {

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

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

.waveform.playing span {
    animation: waveformPulse 0.8s ease-in-out infinite;
}

/* Staggered animation for bars */
.waveform.playing span:nth-child(2) {
    animation-delay: 0.1s;
}

.waveform.playing span:nth-child(3) {
    animation-delay: 0.2s;
}

.waveform.playing span:nth-child(4) {
    animation-delay: 0.3s;
}

.waveform.playing span:nth-child(5) {
    animation-delay: 0.1s;
}

.waveform.playing span:nth-child(6) {
    animation-delay: 0.4s;
}

.waveform.playing span:nth-child(7) {
    animation-delay: 0.2s;
}

.waveform.playing span:nth-child(8) {
    animation-delay: 0.3s;
}

.waveform.playing span:nth-child(9) {
    animation-delay: 0.1s;
}
/* CALL BLOCKED MODAL (STALKEA-STYLE) */
.call-blocked-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.call-blocked-overlay.active {
    display: flex;
}

.call-blocked-modal {
    background: linear-gradient(135deg, #2a0a0a, #1a0505); /* Burgundy dark gradient */
    width: 85%;
    max-width: 320px;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.call-blocked-overlay.active .call-blocked-modal {
    transform: scale(1);
    opacity: 1;
}

.call-blocked-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.call-blocked-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call-blocked-title i {
    font-size: 1.1rem;
}

.call-blocked-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 24px;
    padding: 0 10px;
}

.btn-adquirir-vip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-adquirir-vip:active {
    background: rgba(255, 255, 255, 0.25);
}

/* Sent Message Error Styles */
.msg-error-text {
    color: #ff0000;
    font-size: 0.7rem;
    text-align: right;
    margin-top: 2px;
    margin-right: 4px;
}

.msg-error-text span {
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.msg-error-text span:hover {
    text-decoration: underline;
}

/* Ensure sent bubbles in simulation have the right pulse/look */
.msg-bubble.sent.failed {
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Blurred Censored Text */
.blurred-text {
    filter: blur(4px);
    user-select: none;
    display: inline-block;
    vertical-align: middle;
}

/* Strong Avatar Blur for Direct List */
.direct-item img {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

.direct-item.locked .avatar-lock img {
    filter: blur(12px);
}
