/* ================== Astrology Modal Styles - New Version ================== */

/* Modal Basic Styles */
.astrology-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: flex-end;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

.astrology-modal.show {
    display: flex;
}

.astrology-modal.show .astrology-modal-content {
    transform: translateX(-50%) translateY(0);
}

.astrology-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px 25px 0 0;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.4);
    animation: astrologySlideUpFromBottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 15%;
    transform: translateX(-50%) translateY(100%);
}

/* AI Analysis Page - Independent Height Control */
/* Page 1 - Personal Information (Name, Birthday, Gender) */
.astrology-modal-content.ai-step-1 {
    top: 18%;
}

/* Page 2 - Birthplace Information */
.astrology-modal-content.ai-step-2 {
    top: 44%;
}

/* Page 3 - Personalization Settings (Time Range, Focus Areas) */
.astrology-modal-content.ai-step-3 {
    top: 18%;
}

/* Page 4 - Analysis Results Page */
.astrology-modal-content.ai-step-4 {
    top: 8%;
}

/* Loading State Page */
.astrology-modal-content.ai-step-loading {
    top: 25%;
}

/* Responsive Design - Mobile Unified Height */
@media (max-width: 768px) {
    .astrology-modal-content.ai-step-1 {
        top: 18%;
    }
    
    .astrology-modal-content.ai-step-2 {
        top: 44%;
    }
    
    .astrology-modal-content.ai-step-3 {
        top: 18%;
    }
    
    .astrology-modal-content.ai-step-4 {
        top: 8%;
    }
    
    .astrology-modal-content.ai-step-loading {
        top: 25%;
    }
}

/* Modal Header */
.astrology-modal-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    padding: 20px 25px 15px 25px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Title Bar Content Layout */
.header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-main {
    text-align: left;
    padding-left: 5px;
    width: 85%;
}

.header-main h2 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.header-main p {
    padding-left: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* Close Button */
.close-modal {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Modal Body */
.astrology-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
}

/* Scrollbar Styles */
.astrology-modal-body::-webkit-scrollbar {
    width: 6px;
}

.astrology-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.astrology-modal-body::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.6);
    border-radius: 3px;
}

.astrology-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.8);
}

/* ================== Form Styles ================== */

/* Basic Information Form Container */
.basic-info-form {
    text-align: left;
    padding: 0 10px;
    max-width: 100%;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

/* Form Label */
.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* Input and Dropdown Basic Styles */
.form-group input,
.form-group select {
    width: 100%;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    height: 56px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Input Focus State */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Input Placeholder */
.form-group input::placeholder {
    color: #a0aec0;
    font-size: 16px;
}

/* Dropdown Special Styles */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 50px;
    cursor: pointer;
}

.form-group select:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

/* Hint Text */
.form-group small {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-top: 6px;
    font-style: italic;
}

/* ================== Button Styles ================== */

/* Button Container */
.test-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 10px;
    flex-wrap: nowrap;
    width: 100%;
}

/* Ensure All Button Containers Use the Same Layout */
.results-actions,
.test-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 10px;
    flex-wrap: nowrap;
    width: 100%;
}

/* Button Basic Styles */
.btn-primary,
.btn-secondary {
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 100px;
    max-width: 200px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* Primary Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Secondary Button Styles */
.btn-secondary {
    background: #ffffff;
    color: #718096;
    border: 2px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f8f9ff;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    background: #f0f4ff;
}

/* Button Disabled State */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover,
.btn-secondary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ================== Date Time Picker Styles ================== */

.date-time-picker {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: flex-start;
    margin: 0 0 16px 0;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 200px;
}

.picker-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    position: relative;
    height: 100%;
}

.picker-label {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
    white-space: nowrap;
}

.picker-wheel {
    height: 160px;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: absolute;
    left: 0;
    right: 0;
    background: #aaaaaa12;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: smooth;
    margin-top: 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
    scroll-behavior: auto;
    overscroll-behavior: auto;
}

.picker-wheel:active {
    cursor: grabbing;
}

.picker-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    margin: 0.1rem 0;
    background: transparent;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    user-select: none;
    transition: all 0.2s ease;
}

.picker-item:hover {
    background: #f5f5f5;
    color: #333;
}

.picker-item.selected {
    background: #007aff;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* ================== Animation Definitions ================== */

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes astrologySlideUpFromBottom {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================== Responsive Design ================== */

@media (max-width: 768px) {
    .basic-info-form {
        padding: 0 5px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        height: 50px;
        font-size: 15px;
        padding: 0 16px;
    }
    
   
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 15px;
        height: 50px;
        min-width: 90px;
        max-width: 180px;
    }
    
    .test-actions,
    .results-actions {
        gap: 12px;
        margin-top: 30px;
        padding: 0 5px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    .basic-info-form {
        padding: 0;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group select {
        height: 48px;
        font-size: 14px;
        padding: 0 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 14px;
        height: 48px;
        min-width: 80px;
        max-width: none;
    }
    
    .test-actions,
    .results-actions {
        gap: 10px;
        margin-top: 25px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .btn-primary,
    .btn-secondary {
        flex: 1;
        min-width: 80px;
        max-width: none;
    }
}

/* ================== Other Page Styles ================== */

/* Step Content Styles */
.step-content h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

.step-content p {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

/* ================== Page 2 - Fortune Analysis Page Styles ================== */

/* Unknown Feature Display */
.unknown-characteristics {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.characteristic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.characteristic-item:last-child {
    margin-bottom: 0;
}

.characteristic-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.characteristic-text {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.characteristic-description {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
    font-style: italic;
}

/* Fortune Preview Styles */
.fortune-preview {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e1e5e9;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fortune-preview h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fortune-preview p {
    color: #718096;
    padding-left: 25px;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
}

.fortune-options {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.fortune-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: 1px solid #e1e5e9;
}

.fortune-option:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.fortune-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #667eea;
}

.fortune-option-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fortune-option-text {
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

/* ================== Page 3 - Recommendation Results Page Styles ================== */

/* Personalized Suggestions and Final Explanation Styles */
.personalized-advice, 
.final-notes {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e1e5e9;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.personalized-advice h4, 
.final-notes h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.personalized-advice p, 
.final-notes p {
    color: #718096;
    padding-left: 25px;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    text-align: left;
}

/* Crystal Recommendation Styles */
.crystal-recommendations-preview {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e1e5e9;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.crystal-recommendations-preview h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.crystal-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
    width: 100%;
}

.crystal-grid-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    gap: 16px;
}

.crystal-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.crystal-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    flex-shrink: 0;
}

.crystal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.crystal-info {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crystal-name {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
}

.crystal-description {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ================== Page 4 - Results Page Styles ================== */

/* Results Page Styles */
.results-container {
    padding: 0;
}

.results-header {
    text-align: center;
    margin-bottom: 24px;
}

.results-header h2 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.results-header p {
    color: #718096;
    font-size: 16px;
}

/* User Summary */
.user-summary {
    display: flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 24px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.user-avatar {
    font-size: 2.5rem;
    margin-right: 16px;
}

.user-info h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.user-info p {
    color: #718096;
    font-size: 14px;
    margin: 0;
}

/* Fortune Summary */
.fortune-summary {
    margin-bottom: 24px;
}

.fortune-summary h3 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fortune-scores {
    display: grid;
    gap: 12px;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-label {
    min-width: 60px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

.score-bar {
    flex: 1;
    height: 16px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s ease;
}

.love-score { background: #e91e63; }
.career-score { background: #2196f3; }
.wealth-score { background: #ff9800; }
.health-score { background: #4caf50; }

.score-value {
    min-width: 30px;
    text-align: right;
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
}

/* Personal Profile Summary */
.profile-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-summary h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-summary p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
}

.zodiac-modules {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.zodiac-module {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
    flex: 1;
    max-width: 120px;
}

.zodiac-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.zodiac-module.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.zodiac-module.active .module-icon,
.zodiac-module.active .module-name {
    color: #ffffff;
}

.module-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #667eea;
    transition: all 0.3s ease;
}

.module-name {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.module-description {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.module-description p {
    margin: 0;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

/* Zodiac Sign Information Styles */
.zodiac-info {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.chinese-zodiac-info {
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.zodiac-info:hover,
.chinese-zodiac-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zodiac-info h4,
.chinese-zodiac-info h4 {
    color: #2c3e50;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.zodiac-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.zodiac-symbol {
    font-size: 2rem;
    color: #667eea;
}

.zodiac-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: capitalize;
}

.zodiac-description {
    font-size: 12px;
    color: #718096;
    line-height: 1.4;
    text-align: center;
}

.chinese-zodiac-info .zodiac-display {
    flex-shrink: 0;
    text-align: center;
}

.chinese-zodiac-info .zodiac-description {
    flex: 1;
    text-align: left;
}

.chinese-zodiac-info .zodiac-description p {
    margin: 0;
    line-height: 1.4;
    font-size: 12px;
}

/* ================== Analysis Type Option Styles ================== */

.analysis-type-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.analysis-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.analysis-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.analysis-option:hover .option-content {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.analysis-option input[type="radio"]:checked + .option-content {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.option-icon {
    font-size: 2em;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.option-text {
    flex: 1;
}

.option-title {
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.option-desc {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

