@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap'); body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    background-color: #f3f4f6 !important;
}

.coin-symbol {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('https://meorbx-ten.vercel.app/images/liorbx_2019_Logo_gold.svg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
    vertical-align: middle;
}

.glowing-element {
    position: relative;
    overflow: hidden;
}

.glowing-element::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: glow-move 3.5s infinite;
}

@keyframes glow-move {
    0% {
        transform: translate(-100%, -100%) rotate(30deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(30deg);
    }
}

.heartbeat {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,0,0,0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,0,0,0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}

.hop {
    animation: hop 1s infinite;
}

@keyframes hop {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.coin-highlight {
    box-shadow: 0 0 15px 5px rgba(0,176,111,0.4);
}

.vibrate {
    animation: vibrate 0.5s;
}

@keyframes vibrate {
    0%, 100% {
        transform: translateX(0);
    }

    20%, 60% {
        transform: translateX(-5px);
    }

    40%, 80% {
        transform: translateX(5px);
    }
}

.levitate {
    animation: levitate 3s ease-in-out infinite;
}

@keyframes levitate {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.loader-circle {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: rotate-loader 700ms linear infinite;
    vertical-align: middle;
}

@keyframes rotate-loader {
    to {
        transform: rotate(360deg);
    }
}

.success-found-card {
    display: none;
    margin: 20px 0 0 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.success-found-card.visible {
    display: block;
    animation: successEntrance 0.6s cubic-bezier(0.175,0.885,0.32,1.275) forwards;
}

@keyframes successEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.85);
    }

    60% {
        transform: translateY(-8px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-inner {
    background: linear-gradient(135deg, #022c1a 0%, #064e2e 50%, #022c1a 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(16,185,129,0.35), 0 0 60px rgba(16,185,129,0.15);
}

.success-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(90deg,#10b981,#34d399,#6ee7b7,#34d399,#10b981);
    background-size: 300% 100%;
    animation: borderFlow 2.5s linear infinite;
    z-index: -1;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.success-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.08) 50%,transparent 60%);
    animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom:
}

.success-icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(16,185,129,0.2);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
}

.success-icon-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.3);
    animation: ringExpand 2s ease-out infinite;
}

.success-icon-circle::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(16,185,129,0.15);
    animation: ringExpand 2s ease-out 0.3s infinite;
}

@keyframes iconPulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 8px rgba(16,185,129,0.2);
        transform: scale(1.05);
    }
}

@keyframes ringExpand {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.success-icon-circle i {
    font-size: 28px;
    color: #10b981;
    filter: drop-shadow(0 0 8px rgba(16,185,129,0.8));
    animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.success-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #10b981;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%,100% {
        text-shadow: 0 0 10px rgba(16,185,129,0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(16,185,129,0.9), 0 0 50px rgba(16,185,129,0.4);
    }
}

.success-subtitle {
    text-align: center;
    font-size: 13px;
    color: rgba(16,185,129,0.75);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.success-username-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
}

.success-username-box i {
    color: #10b981;
    font-size: 14px;
}

.success-username-text {
    font-size: 14px;
    font-weight: 700;
    color: #d1fae5;
    letter-spacing: 0.5px;
}

.success-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.success-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: dotBounce 1.2s ease-in-out infinite;
}

.success-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.success-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%,80%,100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0;
}

.particle:nth-child(1) {
    left: 10%;
    animation: floatUp 3s 0.2s infinite;
}

.particle:nth-child(2) {
    left: 25%;
    animation: floatUp 3.5s 0.8s infinite;
}

.particle:nth-child(3) {
    left: 45%;
    animation: floatUp 2.8s 0.4s infinite;
}

.particle:nth-child(4) {
    left: 65%;
    animation: floatUp 3.2s 1s infinite;
}

.particle:nth-child(5) {
    left: 80%;
    animation: floatUp 3s 0.6s infinite;
}

.particle:nth-child(6) {
    left: 90%;
    animation: floatUp 2.5s 1.2s infinite;
}

@keyframes floatUp {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: scale(0.5);
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        bottom: 105%;
        opacity: 0;
        transform: scale(1.5);
    }
}

.alert-box {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ef4444;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    display: none;
}

.payment-choice {
    position: relative;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.payment-choice:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.payment-choice.picked {
    border-color: #1291eb;
    background: rgba(18,145,235,0.1);
    transform: translateY(-5px);
}

.payment-symbol-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-symbol-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.payment-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 6px;
}

.payment-info {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.payment-action {
    font-size: 0.85rem;
    background: #10b981;
    color: white;
    padding: 6px 18px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.stock-wrapper {
    margin-top: 10px;
}

.stock-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.stock-label {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stock-label i {
    font-size: 9px;
}

.stock-count {
    font-size: 10px;
    font-weight: 800;
    color: #ef4444;
}

.stock-bar-track {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.stock-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.stock-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    animation: stockShimmer 2s ease-in-out infinite;
}

@keyframes stockShimmer {
    0% {
        left: -60%;
    }

    100% {
        left: 130%;
    }
}

.stock-bar-fill.high {
    background: linear-gradient(90deg,#ef4444,#f97316);
}

.stock-bar-fill.medium {
    background: linear-gradient(90deg,#f59e0b,#eab308);
}

.stock-bar-fill.low {
    background: linear-gradient(90deg,#10b981,#34d399);
}

.stock-urgent-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 5px;
}

.stock-urgent-dot {
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    animation: urgentBlink 1s infinite;
}

@keyframes urgentBlink {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.gem-choice {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.3);
    animation: emerge 0.5s ease-out forwards;
}

.gem-choice:nth-child(1) {
    animation-delay: 0.1s;
}

.gem-choice:nth-child(2) {
    animation-delay: 0.2s;
}

.gem-choice:nth-child(3) {
    animation-delay: 0.3s;
}

.gem-choice:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes emerge {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.gem-choice:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gem-choice.picked {
    border-color: #1291eb;
    background: rgba(18,145,235,0.1);
    transform: translateY(-3px) scale(0.95);
}

.gem-symbol {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
}

.gem-quantity {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 8px;
}

.message-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.alert-message {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    animation: slideRight 0.5s ease-out, slideAway 0.5s ease-in 4.5s;
    border-left: 4px solid #10b981;
}

@keyframes slideRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideAway {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.message-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #10b981;
}

.message-body {
    flex: 1;
}

.message-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 4px;
}

.message-text {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.message-symbol {
    color: #10b981;
    font-size: 18px;
}

.metrics-wrapper {
    background: linear-gradient(145deg,rgba(255,255,255,0.95) 0%,rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,rgba(16,185,129,0.1) 0%,transparent 70%);
    animation: spin-gradient 15s linear infinite;
}

@keyframes spin-gradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.metrics-heading {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

.metrics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.metric-box {
    background: linear-gradient(135deg,rgba(16,185,129,0.1) 0%,rgba(18,145,235,0.1) 100%);
    border: 2px solid rgba(16,185,129,0.3);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16,185,129,0.3);
    border-color: #10b981;
}

.metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
    transition: left 0.5s;
}

.metric-box:hover::before {
    left: 100%;
}

.metric-symbol {
    font-size: 22px;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.metric-value {
    font-size: 18px;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.metric-name {
    font-size: 9px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-animate {
    animation: metric-animate 2s infinite;
}

@keyframes metric-animate {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.broadcast-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(239,68,68,0.15);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 6px;
}

.broadcast-marker {
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    animation: broadcast-flash 1.5s infinite;
}

@keyframes broadcast-flash {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.reward-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg,rgba(16,185,129,0.1) 0%,rgba(16,185,129,0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(16,185,129,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.reward-symbol {
    width: 50px;
    height: 50px;
    animation: reward-beat 1.5s infinite;
}

@keyframes reward-beat {
    0%,100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(16,185,129,0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(16,185,129,0.8));
    }
}

.reward-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #10b981;
    text-shadow: 0 2px 10px rgba(16,185,129,0.3);
    animation: number-shine 2s infinite;
}

@keyframes number-shine {
    0%,100% {
        text-shadow: 0 2px 10px rgba(16,185,129,0.3);
    }

    50% {
        text-shadow: 0 2px 20px rgba(16,185,129,0.6);
    }
}

.reward-type {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .message-wrapper {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .reward-number {
        font-size: 2rem;
    }

    .reward-symbol {
        width: 40px;
        height: 40px;
    }
}

.pricing-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 10px;
    background: linear-gradient(135deg,rgba(16,185,129,0.08) 0%,rgba(234,179,8,0.08) 100%);
    border-radius: 8px;
    border: 1px dashed rgba(16,185,129,0.3);
}

.original-price {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
    letter-spacing: 0.3px;
}

.free-tag {
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(135deg,#10b981,#f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    position: relative;
    animation: freeGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(16,185,129,0.4));
}

@keyframes freeGlow {
    0%,100% {
        filter: drop-shadow(0 0 4px rgba(16,185,129,0.3));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(245,158,11,0.6));
    }
}

.option-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
    z-index: 10;
}

.badge-popular {
    background: linear-gradient(135deg,#10b981,#059669);
    color: white;
    box-shadow: 0 3px 10px rgba(16,185,129,0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-hot {
    background: linear-gradient(135deg,#f97316,#ef4444);
    color: white;
    box-shadow: 0 3px 10px rgba(239,68,68,0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-value {
    background: linear-gradient(135deg,#f59e0b,#d97706);
    color: white;
    box-shadow: 0 3px 10px rgba(245,158,11,0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-limited {
    background: linear-gradient(135deg,#8b5cf6,#6d28d9);
    color: white;
    box-shadow: 0 3px 10px rgba(139,92,246,0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,100% {
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }

    50% {
        box-shadow: 0 3px 18px rgba(0,0,0,0.5);
    }
}

.coin-selector {
    position: relative;
}

.security-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.sec-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease;
    cursor: default;
}

.sec-pill:first-child {
    background: linear-gradient(135deg,#dcfce7,#d1fae5);
    border: 1.5px solid #10b981;
    color: #065f46;
    box-shadow: 0 2px 8px rgba(16,185,129,0.2);
    animation: pillGlow1 3s ease-in-out infinite;
}

.sec-pill:last-child {
    background: linear-gradient(135deg,#dbeafe,#eff6ff);
    border: 1.5px solid #3b82f6;
    color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(59,130,246,0.2);
    animation: pillGlow2 3s ease-in-out infinite;
}

.sec-pill:hover {
    transform: translateY(-2px);
}

.sec-pill-icon {
    font-size: 14px;
    line-height: 1;
}

.sec-pill:first-child .sec-pill-icon {
    color: #10b981;
}

.sec-pill:last-child .sec-pill-icon {
    color: #3b82f6;
}

.sec-pill-text {
    line-height: 1;
}

@keyframes pillGlow1 {
    0%,100% {
        box-shadow: 0 2px 8px rgba(16,185,129,0.2);
    }

    50% {
        box-shadow: 0 2px 14px rgba(16,185,129,0.4);
    }
}

@keyframes pillGlow2 {
    0%,100% {
        box-shadow: 0 2px 8px rgba(59,130,246,0.2);
    }

    50% {
        box-shadow: 0 2px 14px rgba(59,130,246,0.4);
    }
}
