:root {
    --primary: #ff6b6b;
    --secondary: #4ecdc4;
    --dark: #2c3e50;
}

body {
    font-family: 'Segoe UI', 'Hind Siliguri', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.bg-gradient-light {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.card {
    border-radius: 20px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-danger {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(238,90,36,0.3);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
}

.ad-space img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}
.ad-space {
    overflow-x: hidden;
}