body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #1e0b36; /* Deep Purple Background */
    color: #ffffff;
}

.glass-effect {
    background: rgba(45, 15, 82, 0.8); /* Purple Glass */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Purple to Emerald Gradient for main buttons */
.primary-gradient {
    background: linear-gradient(135deg, #7e22ce 0%, #10b981 100%);
}

/* Yellow Glow */
.yellow-glow {
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

/* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.marquee-content {
    padding-right: 50px;
    color: white;
    font-weight: 800;
}

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

/* Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: #facc15 !important; /* Yellow Arrows */
}

.swiper-pagination {
    position: unset;
    margin-top: 10px;
}

.swiper-pagination-bullet-active {
    background: #facc15 !important;
}

/* Card Hover */
.card-hover:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

/* Modal */
.modal-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}