/* ================= RATING SECTION CSS ================= */
.glass-rating-card {
    background: rgba(20, 35, 28, 0.6) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-rating-card:hover {
    border-color: rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(16, 185, 129, 0.05) !important;
}

/* Button & Animations */
.btn-premium-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}
.transition-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4) !important;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.animate-pulse {
    animation: simplePulse 2s infinite;
}
@keyframes simplePulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* Responsive Border for left column */
@media (min-width: 992px) {
    .border-lg-end { border-right: 1px solid rgba(16, 185, 129, 0.25) !important; }
}