/* Premium aesthetic for LoveGuard */
.lg-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

.lg-header {
    text-align: center;
    margin-bottom: 30px;
}

.lg-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.lg-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.lg-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.lg-btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.lg-btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

.lg-question-container {
    margin-top: 10px;
    animation: lg-fade-in 0.3s ease-out forwards;
}

.lg-question-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.lg-likert {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.lg-likert button {
    flex: 1;
    padding: 15px 0;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 16px;
    color: #495057;
}

.lg-likert button:hover {
    background: #e2e6ea;
    border-color: #dae0e5;
}

.lg-email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    animation: lg-fade-in 0.3s ease-out forwards;
}

.lg-email-form input {
    padding: 14px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.lg-email-form input:focus {
    outline: none;
    border-color: #1a1a1a;
}

#lg-loader {
    text-align: center;
    padding: 40px 20px;
}

.lg-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1a1a1a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: lg-spin 1s linear infinite;
    margin: 0 auto 15px;
}

.lg-success-message {
    text-align: center;
    animation: lg-fade-in 0.4s ease-out forwards;
}

@keyframes lg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lg-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
