/* Reusable Interest Card Component - Clean Black & White Design */
.interest-card {
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000 !important;
    transition: all 0.3s ease;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.interest-card * {
    position: relative;
    z-index: 2;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at top left, 
        rgba(0, 0, 0, 0.03) 0%, 
        rgba(0, 0, 0, 0.01) 25%, 
        rgba(0, 0, 0, 0.005) 50%, 
        transparent 85%
    );
    border-radius: 50% 20% 40% 30%;
}

.interest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.01) 0%, 
        transparent 100%
    );
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.interest-card:hover {
    transform: translateY(-2px) scale(1.02);
    border-bottom: none !important;
    background: #f8f9fa !important;
    border-color: #333333 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (min-width: 480px) {
    .interest-card {
        font-size: 1rem;
        padding: 18px 10px;
    }
}

@media (min-width: 600px) {
    .interest-card {
        font-size: 1.1rem;
        padding: 22px 14px;
    }
}

@media (min-width: 768px) {
    .interest-card {
        padding: 26px 18px;
        font-size: 1.2rem;
    }
} 