body {
    font-family: 'Inter', sans-serif;
    color: #121c2d;
}

.bg-fb-green {
    background-color: #008763;
}

.text-fb-green {
    color: #008763;
}

.bg-fb-yellow {
    background-color: #ffc425;
}

.fb-card-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.ticker-content {
    display: inline-block;
    animation: ticker 60s linear infinite;
    padding: 12px 0;
}

.ticker-item {
    display: inline-block;
    padding: 0 2.5rem;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.premium-glow {
    position: relative;
    animation: floating 3s ease-in-out infinite;
}

.premium-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffc425, #00609c, #008763, #ffc425);
    background-size: 400%;
    z-index: -1;
    filter: blur(10px);
    border-radius: 12px;
    animation: glowing-border 8s linear infinite;
    opacity: 0.5;
}

@keyframes glowing-border {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.pulse-effect {
    animation: pulse-animation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.05);
    }
}

@keyframes text-pulse {
    0%, 100% {
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
    50% {
        text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
        opacity: 0.8;
    }
}

.recommendation-flash {
    color: #111827;
    font-weight: 800;
    animation: text-pulse 2.5s infinite ease-in-out;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 25px;
    border-radius: 12px;
    max-width: 850px;
    width: 92%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #121c2d;
    font-weight: bold;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #ef4444;
}

.btn-details {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 11px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rank-badge {
    background-color: #111827;
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 30;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.star-rating {
    color: #008763;
    font-size: 20px;
    display: flex;
    gap: 2px;
}

.payment-row-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-row-bottom img {
    height: 11px;
    width: auto;
    object-fit: contain;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.lang-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 100;
    border: 1px solid #eee;
    margin-top: 0px;
    max-height: 250px;
    overflow-y: auto;
}

.lang-content::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            height: 25px;
            background: transparent;
        }

        .lang-content a {
    color: #374151;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #f3f4f6;
}

.lang-dropdown:hover .lang-content {
    display: block;
}
