
        :root {
            --primary-color: #6b5ce7;
            --secondary-color: #fd79a8;
            --accent-color: #1ddb12;
            --dark-color: #2d3436;
            --light-color: #f7f7f7;
            --text-color: #333333;
            --background-color: #ffffff;
            --border-radius: 12px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--background-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-color);
        }
        
        .logo-text span {
            color: var(--primary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav a:hover {
            color: var(--primary-color);
            background-color: rgba(107, 92, 231, 0.1);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero-content h1 span {
            color: #ffeb3b;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(29, 219, 18, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(29, 219, 18, 0.4);
        }
        
        /* Breadcrumbs */
        .breadcrumbs {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumbs a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumbs span {
            margin: 0 5px;
        }
        
        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Zodiac Cards */
        .zodiac-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .zodiac-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .zodiac-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .zodiac-card img {
            width: 100%;
            height: 150px;
            object-fit: contain;
            transition: var(--transition);
        }
        
        .zodiac-card:hover img {
            transform: scale(1.05);
        }
        
        .zodiac-card-content {
            padding: 0px 10px 7px 10px;
        }
        
        .zodiac-card-content h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .date {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .zodiac-card-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            gap: 5px;
            transition: var(--transition);
            font-size: 12px;
        }
        
        .read-more:hover {
            gap: 10px;
            color: var(--secondary-color);
        }
        
        /* Daily Horoscope */
        .daily-horoscope {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .horoscope-container {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .horoscope-header {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }
        
        .horoscope-date {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .sign-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .sign-btn {
            cursor: pointer;
            font-size: 0.1px;
        }
        
        .sign-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .sign-btn.active {
            background-color: white;
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .horoscope-content {
            padding: 30px;
            display: none;
        }
        
        .horoscope-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .horoscope-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .horoscope-content p {
            margin-bottom: 15px;
        }
        
        .horoscope-content strong {
            color: var(--dark-color);
        }

/* ESTILOS PARA LA CALCULADORA DE SIGNO ZODIACAL */
.sign-calculator {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 700px; 
}

.sign-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(25deg);
    z-index: 1;
}

.calculator-container {
    position: relative;
    z-index: 2;
}

.calculator-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px; /* Ancho reducido */
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 16px;
}

.form-group input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    background: white;
}

.calculate-btn {
    background: #ff7e5f;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calculate-btn:hover {
    background: #ff6b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.result-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    color: #333;
    text-align: center;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.result-container.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.zodiac-sign {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2575fc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zodiac-icon {
    font-size: 40px;
}

.zodiac-dates {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.zodiac-info {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2575fc;
}

.zodiac-traits {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trait {
    background: #f2f7ff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e1e8ff;
}

.zodiac-description {
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff7e5f;
}

.reset-btn {
    background: #6a11cb;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reset-btn:hover {
    background: #580db3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ESTILOS PARA LA SECCIÓN DE SIGNOS ZODIACALES */
.zodiac-explanation {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.zodiac-explanation h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.zodiac-explanation h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border-radius: 2px;
}

.zodiac-explanation > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.zodiac-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.zodiac-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
    background-clip: padding-box;
}

.zodiac-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zodiac-item.aries { border-top-color: #FF6B6B; }
.zodiac-item.taurus { border-top-color: #4ECDC4; }
.zodiac-item.gemini { border-top-color: #FFE66D; }
.zodiac-item.cancer { border-top-color: #1A535C; }
.zodiac-item.leo { border-top-color: #FF9F1C; }
.zodiac-item.virgo { border-top-color: #5C5D8D; }
.zodiac-item.libra { border-top-color: #9C89B8; }
.zodiac-item.scorpio { border-top-color: #E71D36; }
.zodiac-item.sagittarius { border-top-color: #2A9D8F; }
.zodiac-item.capricorn { border-top-color: #264653; }
.zodiac-item.aquarius { border-top-color: #3D85C6; }
.zodiac-item.pisces { border-top-color: #6867AC; }

.zodiac-item h3 {
    color: #2575fc;
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zodiac-item p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

.zodiac-item strong {
    color: #2c3e50;
}

/* ESTILOS PARA LA SECCIÓN DE CONTENIDO SEO */
.seo-content {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.seo-content h2 {
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
    font-weight: 700;
}

.seo-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.seo-content h3 {
    color: #2575fc;
    font-size: 28px;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 4px solid #2575fc;
}

.seo-content h4 {
    color: #3498db;
    font-size: 22px;
    margin: 30px 0 15px;
    padding-left: 10px;
    border-left: 3px solid #3498db;
}

.seo-content p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
    font-size: 18px;
    text-align: justify;
}

.seo-content ul {
    margin: 25px 0;
    padding-left: 30px;
    background: #f8f9fa;
    padding: 25px 25px 25px 50px;
    border-radius: 8px;
    border-left: 4px solid #6a11cb;
}

.seo-content li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    position: relative;
    font-size: 17px;
}

.seo-content li::before {
    content: "★";
    color: #6a11cb;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    font-size: 14px;
}

/* ESTILOS PARA LA SECCIÓN DE PREGUNTAS FRECUENTES */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.faq-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border-radius: 2px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #2575fc;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2575fc;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item h3::before {
    content: "?";
    background: #2575fc;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-item p {
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sign-calculator {
        padding: 20px;
        margin: 30px 15px;
        max-width: calc(100% - 30px);
    }
    
    .calculator-title {
        font-size: 24px;
    }
    
    .calculator-form {
        max-width: 100%;
    }
    
    .zodiac-sign {
        font-size: 28px;
    }
    
    .zodiac-traits {
        gap: 10px;
    }
    
    .trait {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .zodiac-list {
        grid-template-columns: 1fr;
    }
    
    .zodiac-explanation h2,
    .seo-content h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .seo-content h3 {
        font-size: 24px;
    }
    
    .seo-content h4 {
        font-size: 20px;
    }
    
    .seo-content ul {
        padding: 20px 20px 20px 40px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .zodiac-item {
        padding: 20px;
    }
    
    .zodiac-item h3 {
        font-size: 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
    
    .faq-item h3::before {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
    
    .seo-content p {
        font-size: 16px;
    }
    
    .seo-content li {
        font-size: 16px;
    }
}
        
        /* Blog Section */
        .blog-section {
            padding: 80px 0;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-card:hover img {
            transform: scale(1.05);
        }
        
        .blog-card-content {
            padding: 25px;
        }
        
        .meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        
        .blog-card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .blog-card-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Newsletter */
        .newsletter {
            padding: 80px 0;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            text-align: center;
        }
        
        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background-color: #17b10e;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-column p {
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-column ul li i {
            margin-right: 10px;
            color: var(--primary-color);
            width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Improved Sign Selection */
        .sign-selector-improved {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        
        @media (max-width: 992px) {
            .sign-selector-improved {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .sign-selector-improved {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .sign-selector-improved {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .sign-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 10px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
        }
        
        .sign-option:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .sign-option.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .sign-option.active .sign-icon {
            border-color: white;
            background-color: white;
            color: var(--primary-color);
        }
        
        .sign-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            border: 2px solid var(--primary-color);
            transition: var(--transition);
            font-size: 1.5rem;
            background-color: #f8f9fa;
        }
        
        .sign-name {
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .sign-date {
            font-size: 0.75rem;
            opacity: 0.8;
            margin-top: 3px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.3rem;
            }
            
            .zodiac-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 12px 15px;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                gap: 15px;
                display: none;
            }
            
            nav ul.show {
                display: flex;
                text-align:center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .horoscope-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .sign-selector {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.2rem;
            }
            
            .hero-content h1 {
                font-size: 1.7rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .zodiac-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .horoscope-content {
                padding: 20px;
            }
        }
        
        /* Loading indicator */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(107, 92, 231, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }