#hc-tarot-love-calc {
    max-width: 740px;
    margin: 24px auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
}

#hc-tarot-love-calc .hc-header {
    text-align: center;
    margin-bottom: 22px;
}

#hc-tarot-love-calc .hc-header h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

#hc-tarot-love-calc .hc-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.hc-dual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

#hc-ask-tarot-karti-result {
    display: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed #cbd5e1;
}

#hc-ask-tarot-karti-result.visible {
    display: block;
    animation: hcFadeIn 0.3s ease-out;
}

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

.hc-tarot-hero-card {
    background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%);
    border: 2px solid #fbcfe8;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
}

.hc-tarot-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #db2777;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 8px;
}

.hc-tarot-title {
    font-size: 22px;
    font-weight: 800;
    color: #9d174d;
    margin-bottom: 6px;
}

.hc-tarot-sub {
    margin: 0;
    font-size: 13px;
    color: #be185d;
    font-weight: 600;
}

.hc-tarot-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
}

.hc-tarot-sec-title {
    margin: 0 0 14px 0;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.hc-tarot-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hc-tarot-card-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.hc-tarot-card-tag {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hc-tarot-card-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.hc-tarot-card-astro {
    font-size: 12px;
    font-weight: 700;
    color: #db2777;
    margin-bottom: 8px;
}

.hc-tarot-card-p {
    margin: 0;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.hc-tarot-composite {
    grid-column: span 2;
    background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
    border: 2px solid #fecdd3;
}

.hc-tarot-composite .hc-tarot-card-tag {
    color: #e11d48;
}

.hc-tarot-composite .hc-tarot-card-name {
    color: #9f1239;
    font-size: 18px;
}

.hc-result-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #334155;
}

.hc-result-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 650px) {
    .hc-dual-row {
        grid-template-columns: 1fr;
    }
    .hc-tarot-cards-grid {
        grid-template-columns: 1fr;
    }
    .hc-tarot-composite {
        grid-column: span 1;
    }
}
