.fbr-broker-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.fbr-card {
    position: relative;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

.fbr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.fbr-ribbon {
    position: absolute;
    top: 15px;
    left: -40px;
    transform: rotate(-45deg);
    background: #f5a623;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 45px;
    z-index: 1;
}

.fbr-logo img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #f8f8f8;
    padding: 10px;
}

.fbr-content {
    padding: 15px;
}

.fbr-deposit {
    color: #333;
    font-weight: 500;
    margin: 10px 0;
}

.fbr-title {
    font-size: 18px;
    margin: 10px 0;
    color: #d8232a;
    font-weight: bold;
}

.fbr-title a {
    color: #d8232a;
    text-decoration: none;
}

.fbr-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00c853, #64dd17);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0;
    transition: 0.3s;
}

.fbr-btn:hover {
    background: linear-gradient(90deg, #00b341, #52c41a);
}

.fbr-badge {
    font-size: 14px;
    color: #007bff;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.fbr-stats {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    color: #555;
}

.fbr-stats i,
.fbr-icon {
    margin-right: 5px;
}


@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradient-x 4s ease infinite;
}


#fbr-toast {
    backdrop-filter: blur(4px);
}

#fbr-toast.show {
    opacity: 1 !important;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

