@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.gradient-text {
    background: linear-gradient(90deg, #f59e0b, #ec4899, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.planet-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.planet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.zodiac-sign {
    transition: all 0.3s ease;
}

.zodiac-sign:hover {
    transform: scale(1.05);
}

.horoscope-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.horoscope-input:focus {
    outline: none;
    border-color: #ec4899;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #f59e0b, #ec4899);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.astro-bg {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.glow {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

/* Search functionality styles */
mark {
    background-color: #fef08a !important;
    color: #1f2937 !important;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

.search-result-highlight {
    background-color: rgba(59, 130, 246, 0.2) !important;
    transition: background-color 0.3s ease;
}

/* Search input focus styles */
#searchInput:focus,
#mobileSearchInput:focus {
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    border-color: #9333ea;
}

/* Clear button hover effect */
#clearSearch:hover,
#mobileClearSearch:hover {
    color: #ef4444 !important;
}