.clima-astral-v2 { 
            background: #0b0e14; 
            color: #fff; 
            padding: 20px; 
            border-radius: 15px; 
            font-family: "Segoe UI", Tahoma, sans-serif; 
            max-width: 100%;
            width: 100%;
            border: 1px solid #222; 
            box-sizing: border-box;
            position: relative;
        }
        
        .astro-title { 
            color: #e94560; 
            text-align: center; 
            font-size: clamp(1rem, 4vw, 1.2rem);
            text-transform: uppercase; 
            margin-bottom: 5px; 
        }
        
        .astro-date { 
            text-align: center; 
            font-size: clamp(0.7rem, 3vw, 0.8rem); 
            color: #666; 
            margin-bottom: 20px; 
        }
        
        .astro-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 20px; 
        }
        
        @media (max-width: 380px) {
            .astro-grid { 
                grid-template-columns: 1fr;
            }
        }
        
        .astro-card { 
            background: #161b22; 
            padding: clamp(8px, 2vw, 10px);
            border-radius: 8px; 
            border-left: 3px solid #e94560;
            position: relative;
            cursor: help;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .astro-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
        }
        
        .astro-card b { 
            display: block; 
            font-size: clamp(0.65rem, 2.5vw, 0.7rem); 
            color: #888;
            margin-bottom: 4px;
        }
        
        .astro-card span { 
            display: block;
            font-size: clamp(0.8rem, 3vw, 0.9rem); 
            word-break: break-word;
            font-weight: 700;
            color: #fff;
        }
        
        /* Tooltip mejorado */
        .astro-tooltip {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #2a2a3a;
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            font-size: 0.75rem;
            line-height: 1.4;
            white-space: normal;
            min-width: 200px;
            max-width: 250px;
            z-index: 1000;
            border: 1px solid #e94560;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            margin-bottom: 8px;
        }
        
        .astro-card:hover .astro-tooltip {
            visibility: visible;
            opacity: 1;
        }
        
        .astro-tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #e94560 transparent transparent transparent;
        }
        
        .clima-destacado { 
            background: #1a1a2e; 
            padding: clamp(12px, 3vw, 15px); 
            border-radius: 10px; 
            border: 1px dashed #444;
            color: #e8e8e8;
        }
        
        .clima-destacado h4 { 
            margin: 0 0 10px 0; 
            color: #ffd700; 
            font-size: clamp(0.8rem, 3.5vw, 0.9rem); 
            text-transform: uppercase; 
        }
        
        .tendencia-label { 
            color: #FFFF00; 
            font-weight: bold; 
        }
        
        /* Lista de aspectos con tooltips */
        .aspectos-list { 
            font-size: clamp(0.75rem, 3vw, 0.85rem); 
            list-style: none; 
            padding: 0;
            color: #e8e8e8;
        }
        
        .aspectos-list li {
            margin-bottom: 8px;
            word-break: break-word;
            cursor: help;
            position: relative;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s ease;
            color: #e8e8e8;
        }
        
        .aspectos-list li:hover {
            background: #2a2a3a;
        }
        
        .aspecto-simbolo {
            display: inline-block;
            width: 24px;
            font-size: 1.1rem;
        }
        
        .retro-tag { 
            color: #ff4d4d; 
            font-size: clamp(0.65rem, 2.5vw, 0.7rem); 
            font-weight: bold; 
            display: inline-block;
        }
        
        .eclipse-alert { 
            background: #440000; 
            color: #ff8888; 
            padding: 5px; 
            text-align: center; 
            border-radius: 5px; 
            font-size: clamp(0.7rem, 3vw, 0.8rem); 
            margin-top: 10px; 
            word-break: break-word;
        }

        /* Tooltip para aspectos */
        .aspecto-tooltip {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #2a2a3a;
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            font-size: 0.75rem;
            line-height: 1.4;
            min-width: 220px;
            max-width: 280px;
            z-index: 1000;
            border: 1px solid #00d2ff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            margin-bottom: 8px;
        }
        
        .aspectos-list li:hover .aspecto-tooltip {
            visibility: visible;
            opacity: 1;
        }
        
        .aspecto-tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #00d2ff transparent transparent transparent;
        }
        
        .aspecto-tooltip strong {
            color: #00d2ff;
            display: block;
            margin-bottom: 4px;
            font-size: 0.8rem;
        }
        
        .tooltip-consejo {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid #444;
            color: #ffd700;
            font-style: italic;
        }
        
        @media (min-width: 768px) and (max-width: 1024px) {
            .clima-astral-v2 {
                max-width: 90%;
                margin: 0 auto;
            }
        }
        
        @media (min-width: 1025px) {
            .clima-astral-v2 {
                max-width: 450px;
                margin: 0 auto;
            }
        }
        
        /* Indicador de aprendizaje */
        .aprende-badge {
            text-align: center;
            font-size: 0.65rem;
            color: #888;
            margin-top: 10px;
            padding: 5px;
            border-top: 1px solid #333;
        }
        
        .aprende-badge span {
            color: #00d2ff;
            cursor: help;
        }