.lc-5ae57571-container {
    background-color: #0b0e17;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #FFFFFF;
}

.lc-5ae57571-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .lc-5ae57571-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Left Banner Styling */
.lc-5ae57571-banner {
    position: relative;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e1b4b 100%);
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.lc-5ae57571-banner-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lc-5ae57571-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lc-5ae57571-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0 0 24px 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lc-5ae57571-coins-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lc-5ae57571-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Right Ticker Panel Styling */
.lc-5ae57571-ticker-panel {
    display: flex;
    flex-direction: column;
}

.lc-5ae57571-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.lc-5ae57571-dot {
    width: 10px;
    height: 10px;
    background-color: #00E676;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #00E676;
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(0.9); opacity: 0.6; }
    to { transform: scale(1.1); opacity: 1; box-shadow: 0 0 14px #00E676; }
}

.lc-5ae57571-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.lc-5ae57571-ticker-wrapper {
    position: relative;
    max-height: 250px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.lc-5ae57571-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-5ae57571-item {
    background-color: #161f30;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideInItem 0.5s ease-out forwards;
}

@keyframes slideInItem {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lc-5ae57571-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #FFFFFF;
}

.lc-5ae57571-user-info {
    flex-grow: 1;
}

.lc-5ae57571-username {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lc-5ae57571-time {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 2px;
}

.lc-5ae57571-amount {
    color: #00E676;
    font-weight: 700;
    font-size: 1.05rem;
}

.lc-5ae57571-gateway {
    font-size: 0.8rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    color: #e2e8f0;
}
