
        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
        }
        
        .logo-text span {
            color: #ffeaa7;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        
        nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .horoscope-with-ads {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .horoscope-content-container {
            flex: 1;
        }
        
        .ad-banner {
            width: 160px;
            min-width: 160px;
            height: 600px;
            background-color: #f0f0f0;
            border: 1px dashed #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #555;
        }
        
        /* Responsive: ocultar banners en móviles */
        @media (max-width: 1024px) {
            .ad-banner {
                display: none;
            }
            
            .horoscope-with-ads {
                flex-direction: column;
            }
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero-content h1 span {
            color: #ff6b6b;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Breadcrumbs */
        .breadcrumbs {
            padding: 15px 0;
            font-size: 0.9rem;
        }
        
        .breadcrumbs a {
            color: #6c757d;
            text-decoration: none;
        }
        
        .breadcrumbs span {
            color: #ff6b6b;
        }
        
        /* Horoscope Section */
        .daily-horoscope {
            padding: 60px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .update-badge {
            position: absolute;
            top: -10px;
            right: 10px;
            background: #ff6b6b;
            color: white;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 12px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .horoscope-container {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 30px;
            position: relative;
        }
        
        .update-time {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 0.8rem;
            color: #6c757d;
        }
        
        .horoscope-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .horoscope-date {
            font-weight: 600;
            color: #ff6b6b;
        }
        
        .horoscope-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .horoscope-content p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .horoscope-content strong {
            color: #ff6b6b;
        }
        
        /* aries Characteristics */
        .aries-characteristics {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .characteristics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .characteristic-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .characteristic-card:hover {
            transform: translateY(-5px);
        }
        
        .characteristic-card h3 {
            font-family: 'Montserrat', sans-serif;
            color: #ff6b6b;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .characteristic-card h3 i {
            margin-right: 10px;
        }
        
        /* Compatibility Section */
        .compatibility-section {
            padding: 60px 0;
            background: white;
        }
        
        .compatibility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .compatibility-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .compatibility-card h4 {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 10px;
        }
        
        .compatibility-rating {
            color: #ff6b6b;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        
        /* Footer */
        footer {
            background: #343a40;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 100px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #ff6b6b;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #495057;
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #ff6b6b;
            transform: translateY(-3px);
        }
        
                
        /* 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-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-size: 20px;
            font-weight:700;
            color: #ff8b54;
        }
        
        
        .sign-date {
            font-size: 11px;
            color: #e97744b8;

        }
                
        .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);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 5px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav li {
                margin: 10px 0;
            }

            .update-badge {
                position: relative;
                top: 0;
                right: 0;
                display: inline-block;
                margin-bottom: 10px;
            }
        }
        
        /* aries specific styles */
        .aries-theme {
            color: #ff6b6b;
        }
        
        .aries-bg {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
            color: white;
        }
        
        .aries-header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
            padding: 40px 0;
            text-align: center;
            color: white;
        }
        
        .aries-header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .aries-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,107,107,0.3);
            border-radius: 50%;
            border-top-color: #ff6b6b;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
