
.binance-card{
    background: linear-gradient(135deg, #1e1b4b 0%, #111827 100%);
    border: 1px solid #f3ba2f;
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 1000px;
    margin: 10px auto;
    color: #f9fafb;
    box-shadow: 0 4px 15px rgba(243,186,47,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Left side */
.binance-card-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.binance-card-header{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #f3ba2f;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.binance-card-logo{
    width: 18px;
    height: 18px;
}

.binance-card-text{
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

/* Right side */
.binance-card-right{
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 360px;
    justify-content: flex-end;
}

/* Copy box */
.binance-copy-box{
    display: flex;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    overflow: hidden;
    width: 220px;
    height: 38px;
    align-items: center;
    cursor: pointer;
}

.binance-code{
    background: transparent;
    color: #ffffff;
    padding: 0 12px;
    font-size: 14px;
    font-family: monospace;
    font-weight: 700;
    width: 140px;
    text-align: center;
    user-select: all;
}

.binance-copy-label{
    background: #374151;
    color: #ffffff;
    width: 80px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    flex-shrink: 0;
}

/* Button */
.binance-btn{
    background: #f3ba2f;
    color: #111827;
    text-decoration: none;
    text-align: center;
    line-height: 38px;
    height: 38px;
    width: 120px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    transition: 0.15s ease;
}

.binance-btn:hover{
    transform: translateY(-1px);
    background: #eec143;
}



.lottery-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%); /* Deep rich lottery dark theme */
    border: 1px solid #4c1d95;
    border-radius: 12px;
    padding: 16px;
    margin: 20px auto;
    margin-bottom: 15px;
    color: #ffffff;
    max-width: 1000px;
}

.lottery-card-left {
    flex: 1;
    padding-right: 12px;
}

.lottery-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fbbf24; /* Golden yellow accents */
}

.lottery-card-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.lottery-card-text {
    margin: 0;
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.4;
}

.lottery-pool {
    color: #4ade80; /* Green for the prize amount */
}

.lottery-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 120px;
}

.lottery-info-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed #fbbf24;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s;
}

.lottery-info-box:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lottery-price {
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #fbbf24;
}

.lottery-info-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lottery-btn {
    background: #7c3aed;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s;
}

.lottery-btn:hover {
    background: #6d28d9;
    color: white;
    text-decoration: none;
}


/* Responsive */
@media (max-width: 768px){
    .binance-card{
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }

    .binance-card-right{
        min-width: 100%;
        justify-content: space-between;
    }

    .binance-copy-box{
        flex: 2;
        width: auto;
    }

    .binance-code{
        width: 100%;
    }

    .binance-btn{
        flex: 1;
        width: auto;
    }
}