/* Contenedor principal */
.horoscopo-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Selector de signos */
.horoscopo-selector {
    margin-bottom: 20px;
    text-align: center;
}

.horoscopo-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.horoscopo-select {
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    min-width: 200px;
    transition: border-color 0.3s;
}

.horoscopo-select:hover,
.horoscopo-select:focus {
    border-color: #667eea;
    outline: none;
}

/* Tarjeta del horóscopo */
.horoscopo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.horoscopo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Header */
.horoscopo-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.horoscopo-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.horoscopo-signo {
    font-size: 28px;
    margin: 0 0 5px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.horoscopo-fecha {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

/* Contenido */
.horoscopo-content {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.horoscopo-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* Footer */
.horoscopo-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.horoscopo-periodo {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    padding: 5px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
}

/* Error */
.horoscopo-error {
    background: #fee;
    color: #c33;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #c33;
}

/* Responsive */
@media (max-width: 480px) {
    .horoscopo-card {
        padding: 20px;
    }
    
    .horoscopo-icon {
        font-size: 36px;
    }
    
    .horoscopo-signo {
        font-size: 24px;
    }
    
    .horoscopo-content p {
        font-size: 15px;
    }
}

/* Variantes por período */
.horoscopo-daily .horoscopo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.horoscopo-weekly .horoscopo-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.horoscopo-monthly .horoscopo-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}