/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Poppins:wght@300;400;600&family=Lato:wght@400;700&display=swap');

.ls-container {
    font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
    max-width: 980px;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 22px 14px 44px !important;
    color: #333 !important;
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 80%) !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(232, 224, 213, 0.9) !important;
    text-align: center !important;
}

.ls-header h1 {
    color: #800000;
    font-family: 'Cinzel', serif;
    font-size: 30px;
    margin: 0;
    letter-spacing: 2px;
}

.ls-divider {
    color: #d4af37;
    font-size: 24px;
    margin: 10px 0 40px 0;
}

.ls-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-top: 6px solid #800000;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 45px 35px;
}

.ls-inner-title h3 {
    color: #800000;
    font-family: 'Cinzel', serif;
    margin: 0;
    font-size: 20px;
}

.ls-inner-title p {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.ls-form-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ls-input-wrapper {
    text-align: left;
}

.ls-input-wrapper label {
    font-size: 12px;
    font-weight: 800;
    color: #800000;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

#numerology_name {
    width: 100%;
    padding: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    background: #fdfdfd;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

#numerology_name:focus {
    border-color: #d4af37;
}

#numerology_btn {
    background: linear-gradient(180deg, #d4af37 0%, #b8952e 100%);
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#numerology_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Result Section Styling */
.ls-result-box {
    margin-top: 40px;
    text-align: left;
    padding: 25px;
    background: #fffef9;
    border-radius: 10px;
    border: 1px solid #f0e6cc;
    animation: fadeIn 0.6s ease;
}

.ls-result-box h3 {
    margin-top: 0;
    color: #800000;
    font-family: 'Cinzel', serif;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.ls-res-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.ls-res-grid p {
    margin: 5px 0;
    font-size: 15px;
}

.ls-res-grid strong {
    color: #800000;
}

.ls-rating-badge {
    background: #800000;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.ls-prediction-text {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #d4af37;
    line-height: 1.6;
    color: #444;
}

/* Action Buttons Styling (Naye Buttons) */
.action-section {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.action-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.ls-action-btn {
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.btn-demo {
    background: #800000;
    color: #fff !important;
}

.btn-demo:hover {
    background: #a00000;
}

.btn-check-another {
    background: #d4af37;
    color: #333 !important;
}

.btn-check-another:hover {
    background: #c19b2e;
}

.ls-loading {
    padding: 30px;
    color: #800000;
    font-weight: bold;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 600px) {
    .ls-header h1 { font-size: 22px; }
    .ls-card { padding: 25px 20px; }
    .ls-res-grid { grid-template-columns: 1fr; }
    .ls-action-btn { width: 100%; min-width: 100%; }
}