body {
    font-family: 'Vazirmatn', sans-serif;
}

h1, h2 {
    font-weight: bold;
}

.section-title {
    margin: 2.5rem 0;
}

.custom-card {
    background-color: rgba(52, 58, 64, 0.6);
    color: var(--bs-body-color);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: scale(1.02);
}

.custom-card img {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 6px;
    left: 6px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
}

.change-up {
    color: #28c76f;
}

.change-down {
    color: #ea5455;
}

/*#goldSection> div:nth-child(3) {*/
/*    display: none;*/
/*}*/

.flash-update {
    animation: flash-bg 4s ease;
}

@keyframes flash-bg {
    0% {
        background-color: rgba(152, 158, 164, 0.6);
    }
    100% {
        background-color: rgba(52, 58, 64, 0.6);
    }
}

@media screen and (max-width: 768px) {
    .custom-card img {
        width: 32px;
        height: 32px;
        top: 10px;
        left: 10px;
    }

    .card-title {
        font-size: 0.875rem;
    }

    .price {
        font-size: 0.938rem;
    }
}