.crypto-slider-section {
    background: #000;
    padding: 60px 0;
}

.crypto-site-heading {
    margin-bottom: 20px;
}

.crypto-site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 48px;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 0;
}

.crypto-slider-wrapper {
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.crypto-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 0 8px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.crypto-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.crypto-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.crypto-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 38px;
    position: absolute;
}

.crypto-logo {
    width: 32px !important;
    height: 32px;
    border-radius: 50%;
    background: white;
    padding: 2px;
    object-fit: contain;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}

.crypto-name-container {
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.crypto-symbol {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crypto-price {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
}

.crypto-change {
    font-size: 9px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
}

.crypto-change.positive {
    color: #0ecb81;
    background: rgba(14, 203, 129, 0.15);
}

.crypto-change.negative {
    color: #f6465d;
    background: rgba(246, 70, 93, 0.15);
}

/* Add a subtle glow effect to the slider */
.crypto-slider-wrapper::before,
.crypto-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 2;
}

.crypto-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, transparent, transparent);
}

.crypto-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, transparent, transparent);
}

@media (max-width: 768px) {
    .crypto-slider-section {
        padding: 15px 0;
    }
    
    .crypto-site-title {
        font-size: 24px;
    }
    
    .crypto-card {
        padding: 12px;
        min-height: 140px;
        margin: 0 5px;
    }
    
    .crypto-logo {
        width: 28px;
        height: 28px;
    }
    
    .crypto-name {
        font-size: 13px;
        max-width: 100px;
    }
    
    .crypto-symbol {
        font-size: 10px;
    }
    
    .crypto-price {
        font-size: 16px;
    }
    
    .crypto-change {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .crypto-site-title {
        font-size: 20px;
    }
    
    .crypto-card {
        min-height: 90px;
    }
    
    .crypto-name {
        font-size: 12px;
        max-width: 80px;
    }
    
    .crypto-price {
        font-size: 15px;
    }

    .cus-sm-pt-30 {
        padding-top: 30px;
    }

   }