﻿/* === THE REVEAL BUTTON === */
.reveal-btn {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    /* Subtle gradient wash on hover — "something is happening" */
    .reveal-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(16,185,129,0.03) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .reveal-btn:hover {
        border-color: #10b981;
        box-shadow: 0 8px 24px rgba(16,185,129,0.08), 0 2px 8px rgba(0,0,0,0.04);
        transform: translateY(-1px);
    }

        .reveal-btn:hover::before {
            opacity: 1;
        }

    .reveal-btn:active {
        transform: translateY(0) scale(0.995);
    }

/* === LEFT CLUSTER: Live Signal === */
.signal-cluster {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.live-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Your existing ping, repurposed */
.ping-mini {
    --uib-size: 8px;
    --uib-speed: 1.5s;
    --uib-color: #10b981;
    position: relative;
    height: var(--uib-size);
    width: var(--uib-size);
}

    .ping-mini::before,
    .ping-mini::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background-color: var(--uib-color);
        animation: pulse7132 var(--uib-speed) linear infinite;
    }

    .ping-mini::after {
        animation-delay: calc(var(--uib-speed) / -2);
    }

.live-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.market-hint {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

/* === CENTER: The Hook (Price) === */
.price-hero {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .price-hero .value {
        font-family: 'SF Pro Display', -apple-system, sans-serif;
        font-size: 1.5rem;
        font-weight: 900;
        color: #064e3b;
        letter-spacing: -0.03em;
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

        /* The "glow underline" — subconscious value anchor */
        .price-hero .value::after {
            content: '';
            display: block;
            height: 3px;
            width: 40px;
            margin: 4px auto 0;
            background: linear-gradient(90deg, #10b981, #34d399);
            border-radius: 2px;
            opacity: 0.6;
        }

    .price-hero .currency {
        font-size: 0.75rem;
        font-weight: 600;
        color: #6b7280;
        margin-left: 3px;
        vertical-align: super;
    }

/* === RIGHT: The Unlock Nudge === */
.unlock-nudge {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.unlock-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(75,108,183,0.25);
    transition: transform 0.2s ease;
}

.reveal-btn:hover .unlock-icon {
    transform: scale(1.1) rotate(-5deg);
}

.unlock-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.unlock-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.unlock-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4b6cb7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.unlock-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: #94a3b8;
}

/* === MOBILE COLLAPSE === */
@media (max-width: 400px) {
    .unlock-text {
        display: none;
    }

    .reveal-btn {
        padding: 12px;
    }
}


/*upcoming button */

#btn-message {
    --text-color: #000;
    --bg-color-sup: #d2d2d2;
    --bg-color: #f4f4f4;
    --bg-hover-color: #ffffff;
    --online-status: #00da00;
    --font-size: 16px;
    --btn-transition: all 0.2s ease-out;
}

.button-message {
    display: flex;
    justify-content: center;
    align-items: center;
    font: 400 var(--font-size) Helvetica Neue, sans-serif;
    box-shadow: 0 0 2.17382px rgba(0,0,0,.049),0 1.75px 6.01034px rgba(0,0,0,.07),0 3.63px 14.4706px rgba(0,0,0,.091),0 22px 48px rgba(0,0,0,.14);
    background-color: var(--bg-color);
    border-radius: 68px;
    cursor: pointer;
    padding: 6px 10px 6px 6px;
    width: fit-content;
    height: 40px;
    border: 0;
    overflow: hidden;
    position: relative;
    transition: var(--btn-transition);
}

    .button-message:hover {
        height: 56px;
        padding: 8px 20px 8px 8px;
        background-color: var(--bg-hover-color);
        transition: var(--btn-transition);
    }

    .button-message:active {
        transform: scale(0.99);
    }

.content-avatar {
    width: 30px;
    height: 30px;
    margin: 0;
    transition: var(--btn-transition);
    position: relative;
}

.button-message:hover .content-avatar {
    width: 40px;
    height: 40px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-color-sup);
}

.user-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-user {
    position: absolute;
    width: 6px;
    height: 6px;
    right: 1px;
    bottom: 1px;
    border-radius: 50%;
    outline: solid 2px var(--bg-color);
    background-color: var(--online-status);
    transition: var(--btn-transition);
    animation: active-status 2s ease-in-out infinite;
}

.button-message:hover .status-user {
    width: 10px;
    height: 10px;
    right: 1px;
    bottom: 1px;
    outline: solid 3px var(--bg-hover-color);
}

.notice-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 8px;
    text-align: initial;
    color: var(--text-color);
}

.username {
    letter-spacing: -6px;
    height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--btn-transition);
}

.user-id {
    font-size: 12px;
    letter-spacing: -6px;
    height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--btn-transition);
}

.lable-message {
    display: flex;
    align-items: center;
    opacity: 1;
    transform: scaleY(1);
    transition: var(--btn-transition);
}

.button-message:hover .username {
    height: auto;
    letter-spacing: normal;
    opacity: 1;
    transform: translateY(0);
    transition: var(--btn-transition);
}

.button-message:hover .user-id {
    height: auto;
    letter-spacing: normal;
    opacity: 1;
    transform: translateY(0);
    transition: var(--btn-transition);
}

.button-message:hover .lable-message {
    height: 0;
    transform: scaleY(0);
    transition: var(--btn-transition);
}

.lable-message, .username {
    font-weight: 600;
}

.number-message {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    --text-color: #2C3947;
    margin-left: 8px;
    font-size: 12px;
    width: 70px;
    height: 16px;
    background-color: #E8EDF2;
    border-radius: 20px;
}

/*==============================================*/
@keyframes active-status {
    0% {
        background-color: var(--online-status);
    }

    33.33% {
        background-color: #93e200;
    }

    66.33% {
        background-color: #93e200;
    }

    100% {
        background-color: var(--online-status);
    }
}


/******* button-endsoon *****************/
.luxury-button {
    position: relative;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

    .luxury-button:hover {
        border-color: #f39c12;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transform: scale(1.05);
    }

.button-text {
    position: relative;
    z-index: 2;
}

.hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient( to right, #f39c12, #e74c3c ); /* Gradient for hover effect */
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.luxury-button:hover .hover-bg {
    transform: scale(1);
}