* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body.dark {
    background: #0c0f1a;
    color: #fff;
}

body.light {
    background: #ffffff;
    color: #222;
}

header {
    width: 100%;
    padding: 15px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    width: 60px;
}

nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    transition: .3s;
}

nav a:hover {
    color: #ffcc66;
}

#modeToggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1526403226207-88ff9a4b3101?auto=format&fit=crop&w=1350') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    color: #ffcc66;
    font-size: 50px;
}

.btn {
    background: #ffcc66;
    color: #000;
    padding: 10px 26px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 80px 8%;
    text-align: center;
}

.services, .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-box, .zodiac-card, .blog-card {
    background: #121527;
    padding: 20px;
    border-radius: 10px;
    transition: .3s;
}

.service-box:hover, .zodiac-card:hover, .blog-card:hover {
    transform: translateY(-7px);
}

.blog-card img {
    width: 100%;
    border-radius: 8px;
}

.read-more {
    color: #ffcc66;
    text-decoration: none;
}

/* Horoscope Box */
.horoscope-box {
    margin-top: 20px;
    padding: 20px;
    background: #121527;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 10px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}
