/* Reset específico para la aplicación - solo elementos directos */
.tarot-app-container {
    margin: 0 !important;
    padding: 20px !important;
}

.tarot-welcome-content,
.tarot-selection-content,
.tarot-result-content,
.tarot-question-box,
.tarot-cards-grid,
.tarot-card,
.tarot-answer-box,
.tarot-interpretation-box {
    margin: 0 !important;
    padding: 0 !important;
}

/* Contenedor principal */
.tarot-app-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background-color: #171E36 !important;
    min-height: 600px !important;
    border-radius: 12px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #ffffff !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.tarot-app-container *,
.tarot-app-container *::before,
.tarot-app-container *::after {
    box-sizing: border-box !important;
}

/* Pantallas */
.tarot-screen {
    display: none !important;
    animation: tarotFadeIn 0.5s ease-in-out !important;
}

.tarot-screen.tarot-active {
    display: block !important;
}

@keyframes tarotFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pantalla de bienvenida */
.tarot-welcome-content {
    text-align: center !important;
    padding: 40px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.tarot-main-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.tarot-subtitle {
    font-size: 1.1rem !important;
    color: #cccccc !important;
    margin-bottom: 40px !important;
    line-height: 1.6 !important;
}

.tarot-question-box {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto 40px !important;
    position: relative !important;
}

.tarot-label {
    display: block !important;
    font-size: 1rem !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
    text-align: center !important;
}

.tarot-textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 2px solid #2a3654 !important;
    border-radius: 8px !important;
    background-color: #1a1f35 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    resize: vertical !important;
    font-family: inherit !important;
    transition: border-color 0.3s !important;
}

.tarot-textarea:focus {
    outline: none !important;
    border-color: #FFD700 !important;
}

.tarot-char-count {
    display: block !important;
    text-align: right !important;
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-top: 5px !important;
}

/* Botones */
.tarot-btn {
    padding: 18px 50px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: inherit !important;
    display: inline-block !important;
}

.tarot-btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #111111 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.tarot-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
}

.tarot-btn-primary:disabled {
    background: linear-gradient(135deg, #666 0%, #888 100%) !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

/* Pantalla de selección */
.tarot-selection-content {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.tarot-section-title {
    font-size: 2rem !important;
    color: #FFD700 !important;
    text-align: center !important;
    margin-bottom: 15px !important;
}

.tarot-instruction {
    text-align: center !important;
    font-size: 1.1rem !important;
    color: #cccccc !important;
    margin-bottom: 20px !important;
}

.tarot-selected-counter {
    text-align: center !important;
    font-size: 1.3rem !important;
    color: #FFD700 !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
}

/* Grid de cartas */
.tarot-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 50px !important;
    padding: 20px !important;
    width: 100% !important;
    max-width: 900px !important;
    justify-items: center !important;
}

.tarot-card {
    width: 100% !important;
    max-width: 130px !important;
    aspect-ratio: 2/3 !important;
    background: linear-gradient(135deg, #2a3654 0%, #1a1f35 100%) !important;
    border: 3px solid #2a3654 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tarot-card::before {
    content: '★' !important;
    font-size: 3rem !important;
    color: #FFD700 !important;
    opacity: 0.3 !important;
}

.tarot-card:hover:not(.tarot-card-selected):not(.tarot-card-disabled) {
    transform: translateY(-10px) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3) !important;
}

.tarot-card-selected {
    border-color: #FFD700 !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.tarot-card-selected::before {
    color: #111111 !important;
    opacity: 0.5 !important;
}

.tarot-card-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

/* Ocultar números de cartas */
.tarot-card-number {
    display: none !important;
}

/* Pantalla de resultado */
.tarot-result-content {
    padding: 30px 20px !important;
}

.tarot-question-display {
    background-color: #1a1f35 !important;
    padding: 20px !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
    border-left: 4px solid #FFD700 !important;
}

.tarot-your-question {
    font-size: 0.9rem !important;
    color: #888 !important;
    margin-bottom: 10px !important;
}

.tarot-question-text {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    font-style: italic !important;
}

/* Cartas seleccionadas en resultado */
.tarot-selected-cards {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
}

.tarot-revealed-card {
    width: 100px !important;
    text-align: center !important;
}

.tarot-revealed-card img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    border: 2px solid #FFD700 !important;
    margin-bottom: 10px !important;
}

.tarot-revealed-card-name {
    font-size: 0.85rem !important;
    color: #FFD700 !important;
}

/* Caja de respuesta */
.tarot-answer-box {
    background: linear-gradient(135deg, #2a3654 0%, #1a1f35 100%) !important;
    padding: 30px !important;
    border-radius: 12px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    border: 2px solid #FFD700 !important;
}

.tarot-answer-label {
    font-size: 1rem !important;
    color: #cccccc !important;
    margin-bottom: 15px !important;
}

.tarot-answer-result {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

/* Interpretación */
.tarot-interpretation-box {
    background-color: #1a1f35 !important;
    padding: 25px !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
}

.tarot-interpretation-title {
    font-size: 1.3rem !important;
    color: #FFD700 !important;
    margin-bottom: 15px !important;
}

.tarot-interpretation-text {
    font-size: 1rem !important;
    color: #cccccc !important;
    line-height: 1.6 !important;
}

/* Botones de acción */
.tarot-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .tarot-main-title {
        font-size: 2rem !important;
    }
    
    .tarot-section-title {
        font-size: 1.5rem !important;
    }
    
    .tarot-cards-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }
    
    .tarot-card {
        max-width: 100% !important;
    }
    
    .tarot-answer-result {
        font-size: 2.5rem !important;
    }
    
    .tarot-btn {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .tarot-app-container {
        padding: 15px !important;
    }
    
    .tarot-main-title {
        font-size: 1.5rem !important;
    }
    
    .tarot-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .tarot-card {
        max-width: 100% !important;
    }
    
    .tarot-revealed-card {
        width: 70px !important;
    }
    
    .tarot-action-buttons {
        flex-direction: column !important;
    }
    
    .tarot-btn {
        width: 100% !important;
    }
}
