body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    background-color: #F5F7FA; /* हल्का ग्रे, clickastro.com जैसा */
    color: #333333;
    margin: 0;
}

.breadcrumb {
    background-color: transparent;
    padding: 10px 0;
}

.breadcrumb-item a {
    color: #4b9cd3; /* हल्का नीला */
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #f4c430; /* सुनहरा */
}

.breadcrumb-item.active {
    color: #A0AEC0; /* हल्का ग्रे */
}

.header {
    background: linear-gradient(135deg, #1a2a44 0%, #0a1422 100%); /* डार्क ग्रेडिएंट */
    border-bottom: 3px solid #f4c430; /* सुनहरा */
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"%3E%3Ccircle cx="2" cy="2" r="1" fill="%23f4c430" fill-opacity="0.3"/%3E%3C/svg%3E');
    opacity: 0.2;
    animation: starTwinkle 3s infinite;
}

.header-text {
    display: flex;
    align-items: center;
}

.header-logo {
    color: #f4c430; /* सुनहरा */
    font-size: 2rem;
    margin-right: 10px;
}

.header-text h1 {
    font-size: 1.8em; /* मोबाइल पर संतुलित */
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(244, 196, 48, 0.7); /* सुनहरा ग्लो */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23f4c430' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* सुनहरा हैमबर्गर */
}

.navbar-nav .nav-link {
    color: #FFFFFF !important;
    font-size: 1.1em;
    margin-left: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f4c430;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #f4c430 !important;
}

.main-section {
    background: linear-gradient(135deg, #1a2a44 0%, #0a1422 100%);
    padding: 30px 15px;
    border-radius: 15px;
}

h2 {
    color: #f4c430;
    font-size: 1.8em;
    font-weight: 700;
}

.card {
    background: linear-gradient(135deg, #FFFFFF 0%, #E6F0FA 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 15px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #f4c430, #4b9cd3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(244, 196, 48, 0.5);
    border-color: #f4c430;
}

.zodiac-icon {
    color: #f4c430;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.card h3 {
    color: #1a2a44;
    font-size: 1.3em;
    margin: 5px 0;
}

.card p {
    color: #A0AEC0;
    font-size: 0.85em;
    margin: 0;
}

.footer {
    background-color: #1a2a44;
    border-top: 3px solid #f4c430;
}

.footer a {
    color: #f4c430;
}

.footer a:hover {
    color: #FFFFFF;
}

.social-links i {
    font-size: 1.2em;
    color: #f4c430;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* मोबाइल ऑप्टिमाइज़ेशन */
@media (max-width: 576px) {
    .header-text h1 {
        font-size: 1.4em;
    }
    .header-logo {
        font-size: 1.5rem;
    }
    .card {
        padding: 10px;
        min-height: 140px;
    }
    .zodiac-icon {
        font-size: 2rem;
    }
    .card h3 {
        font-size: 1.1em;
    }
    .card p {
        font-size: 0.8em;
    }
}