/* ====================== COUNTER SECTION ====================== */
.counter-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 380px;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 30px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.counter-item .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #007bff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.counter-item .counter-content {
    flex: 1;
}

.counter-item .counter-content h3 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.counter-item .counter-content p {
    margin: 8px 0 0;
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Counter Animation */
.counter {
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.latest-exchanges-section .accordion-button {
    padding: 18px 25px;
    font-weight: 500;
}

.latest-exchanges-section .accordion-body {
    background: rgba(255,255,255,0.03);
    padding: 25px;
}

.latest-exchanges-section .badge {
    font-size: 0.85rem;
}

/* Hover effect */
.latest-exchanges-section .accordion-item {
    transition: all 0.3s ease;
}

.latest-exchanges-section .accordion-item:hover {
    transform: translateX(8px);
}

/* Optional: Make numbers bigger on large screens */
@media (min-width: 1400px) {
    .counter-item .counter-content h3 {
        font-size: 3.2rem;
    }
}