.bitcoin-widget {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.main-price-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stats-section {
    min-width: 0;
}

.bitcoin-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
}

.bitcoin-row:last-child {
    border-bottom: none;
}

.main-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f7931a;
}

.price-value {
    font-weight: 500;
}

.section-divider {
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    color: #666;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        margin-bottom: 1.5rem;
    }
}
.clearfix::after{content:"";display:table;clear:both}
