/* ================ 星空运势模块样式 - 增强版本 ================ */

/* ================ 运势模块整体样式 ================ */
.horoscope-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    background: rgba(30, 40, 60, 0.12);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 1;
}

.horoscope-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: var(--glass-highlight);
}

.horoscope-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(106, 155, 216, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255, 157, 107, 0.05) 0%, transparent 60%);
    border-radius: var(--card-radius);
    z-index: -1;
}

/* ================ 运势卡片主容器 ================ */
.horoscope-card {
    background: rgba(30, 40, 60, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: calc(var(--card-radius) - 5px);
    border: 1px solid rgba(154, 198, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.horoscope-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

.horoscope-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                inset 0 -1px 0 rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(154, 198, 255, 0.2);
}

.horoscope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(154, 198, 255, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(255, 157, 107, 0.04) 0%, transparent 40%);
    border-radius: calc(var(--card-radius) - 5px);
    z-index: -1;
}

/* ================ 头部布局 ================ */
.horoscope-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px 30px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.zodiac-section-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    flex: 1;
    min-width: 300px;
}

.zodiac-icon-large {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(154, 198, 255, 0.4));
    animation: starFloatRotate 6s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

@keyframes starFloatRotate {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.9; }
    25% { transform: translateY(-8px) rotate(90deg) scale(1.1); opacity: 1; }
    50% { transform: translateY(0) rotate(180deg) scale(1); opacity: 0.9; }
    75% { transform: translateY(-8px) rotate(270deg) scale(1.1); opacity: 1; }
}

.zodiac-icon-large:hover {
    filter: drop-shadow(0 0 15px rgba(154, 198, 255, 0.7));
    animation: starFloatRotate 3s ease-in-out infinite;
    transform: scale(1.15);
}

.zodiac-main-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.zodiac-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(154, 198, 255, 0.3);
    line-height: 1;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
}

.zodiac-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.element-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: rgba(154, 198, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(154, 198, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.element-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 157, 107, 0.4));
    transition: all 0.3s ease;
}

.element-info:hover .element-icon {
    filter: drop-shadow(0 0 8px rgba(255, 157, 107, 0.6));
    transform: scale(1.1);
}

.element-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.zodiac-energy-modifier {
    padding: 2px 8px;
    background: rgba(255, 157, 107, 0.15);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    border: 1px solid rgba(255, 157, 107, 0.3);
    min-width: 30px;
    text-align: center;
}

/* ================ 右侧：运势标题区域 ================ */
.horoscope-title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 0 0 auto;
    min-width: 250px;
}

.horoscope-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #9ac6ff 0%, #ffffff 30%, #ff9d6b 70%, #9ac6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px rgba(154, 198, 255, 0.5), 0 0 35px rgba(255, 157, 107, 0.3);
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 25px rgba(154, 198, 255, 0.5), 0 0 35px rgba(255, 157, 107, 0.3); }
    100% { text-shadow: 0 0 30px rgba(154, 198, 255, 0.7), 0 0 45px rgba(255, 157, 107, 0.5); }
}

.theme-day-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(154, 198, 255, 0.15), rgba(255, 157, 107, 0.15));
    padding: 6px 14px;
    border-radius: 16px;
    border: 1px solid rgba(154, 198, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.theme-day-display:hover {
    background: linear-gradient(135deg, rgba(154, 198, 255, 0.25), rgba(255, 157, 107, 0.25));
    border-color: rgba(154, 198, 255, 0.5);
    transform: translateY(-2px);
}

.theme-emoji {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(154, 198, 255, 0.5));
}

.theme-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.theme-description {
    font-size: 0.75rem;
    color: rgba(154, 198, 255, 0.7);
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================ 运势内容区域 ================ */
.horoscope-content {
    margin: 0 30px 25px 30px;
    position: relative;
    padding: 30px;
    background: rgba(30, 40, 60, 0.12);
    border-radius: 16px;
    border: 1px solid rgba(154, 198, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.25);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.horoscope-message-text {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Arial Rounded MT Bold', 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: white;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 25%,
        rgba(154, 198, 255, 0.7) 50%,
        rgba(255, 157, 107, 0.7) 75%,
        rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 6s ease infinite;
    letter-spacing: 0.3px;
    width: 100%;
}

.horoscope-message-text::before,
.horoscope-message-text::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.7;
    position: absolute;
    top: 10px;
    text-shadow: 0 0 10px rgba(255, 157, 107, 0.5);
    filter: drop-shadow(0 0 5px rgba(255, 157, 107, 0.4));
}

.horoscope-message-text::before {
    left: 10px;
}

.horoscope-message-text::after {
    right: 10px;
    top: auto;
    bottom: 10px;
}

@keyframes gradientShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.special-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 157, 107, 0.15));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: specialNotePulse 2s ease-in-out infinite alternate;
}

@keyframes specialNotePulse {
    0% { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 10px rgba(255, 215, 0, 0.1); }
    100% { border-color: rgba(255, 215, 0, 0.5); box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
}

.special-note-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.special-note-text {
    font-size: 0.9rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* ================ 运势详情区域 ================ */
.horoscope-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 0 25px 0;
    padding: 0 30px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(154, 198, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.detail-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(154, 198, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(154, 198, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(154, 198, 255, 0.08);
    padding: 8px 16px;
    border-radius: 12px;
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

.detail-icon {
    font-size: 0.9rem;
    opacity: 0.9;
}

.detail-value-container {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Arial Rounded MT Bold', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(154, 198, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 130px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    height: 48px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(154, 198, 255, 0.1), rgba(255, 157, 107, 0.1));
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.color-swatch {
    position: relative;
    overflow: hidden;
}

.color-swatch.dark-bg {
    color: #000000 !important;
}

.color-swatch.light-bg {
    color: #ffffff !important;
}

.lucky-number {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Arial Rounded MT Bold', 'Segoe UI', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(154, 198, 255, 0.1), rgba(255, 157, 107, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(154, 198, 255, 0.2);
    color: white;
    text-shadow: 0 0 20px rgba(154, 198, 255, 0.8), 0 0 40px rgba(154, 198, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lucky-number:hover {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 25px rgba(154, 198, 255, 1), 0 0 50px rgba(154, 198, 255, 0.6);
    box-shadow: 0 0 30px rgba(154, 198, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mood-tag {
    background: linear-gradient(135deg, rgba(154, 198, 255, 0.1), rgba(255, 157, 107, 0.1));
    border: 1px solid rgba(154, 198, 255, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.detail-item:hover .mood-tag {
    background: linear-gradient(135deg, rgba(154, 198, 255, 0.15), rgba(255, 157, 107, 0.15));
    border-color: rgba(154, 198, 255, 0.3);
    transform: translateY(-2px);
}

/* ================ 新增属性区域 ================ */
.horoscope-extra {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 30px 25px;
    padding: 20px;
    background: rgba(30, 40, 60, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(154, 198, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px;
    flex: 1;
    min-width: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.extra-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.extra-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(154, 198, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.extra-icon {
    font-size: 0.9rem;
}

.extra-value {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Arial Rounded MT Bold', 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(154, 198, 255, 0.05);
}

.suggestion-text {
    white-space: normal !important;
    line-height: 1.4 !important;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-indicator {
    animation: pulseGlow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.energy-trend {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 4px;
}

.trend-↑ {
    color: #2ecc71;
    animation: trendUp 1.5s ease-in-out infinite;
}

@keyframes trendUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.trend-→ {
    color: #3498db;
}

.trend-↓ {
    color: #e74c3c;
    animation: trendDown 1.5s ease-in-out infinite;
}

@keyframes trendDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.energy-index {
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* ================ 统计数据区域 ================ */
.horoscope-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 30px 20px;
    padding: 15px;
    background: rgba(30, 40, 60, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(154, 198, 255, 0.08);
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(154, 198, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.harmony-bar {
    position: relative;
    height: 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(154, 198, 255, 0.2);
}

.harmony-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease-out;
}

.harmony-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.waveform-display {
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: waveformFloat 3s ease-in-out infinite;
}

@keyframes waveformFloat {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.date-display {
    color: rgba(154, 198, 255, 0.9);
    font-size: 0.9rem;
    padding: 4px 8px;
    background: rgba(154, 198, 255, 0.1);
    border-radius: 8px;
}

/* ================ 页脚 ================ */
.horoscope-footer {
    padding: 15px 30px 20px;
    border-top: 1px solid rgba(154, 198, 255, 0.1);
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(154, 198, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ================ 加载与错误状态 ================ */
.horoscope-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 30px;
    background: rgba(30, 40, 60, 0.25);
    border-radius: calc(var(--card-radius) - 5px);
    border: var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(154, 198, 255, 0.15);
    border-top: 3px solid var(--primary-light);
    border-right: 3px solid var(--primary);
    border-left: 3px solid var(--accent-light);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin-bottom: 10px;
    box-shadow: 0 0 25px rgba(154, 198, 255, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-light);
    text-shadow: 0 0 12px rgba(154, 198, 255, 0.4);
    font-weight: 600;
    margin-bottom: 5px;
}

.loading-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    opacity: 0.7;
}

.horoscope-error {
    text-align: center;
    padding: 50px 30px;
    background: rgba(30, 40, 60, 0.3);
    border-radius: calc(var(--card-radius) - 5px);
    border: var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.retry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 20px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
}

.retry-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ================ 响应式设计 ================ */
@media (max-width: 1024px) {
    .horoscope-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .zodiac-section-left {
        min-width: 100%;
        justify-content: flex-start;
    }
    
    .horoscope-title-section {
        align-items: flex-start;
        text-align: left;
        min-width: 100%;
    }
    
    .theme-day-display {
        width: 100%;
        justify-content: flex-start;
    }
    
    .horoscope-details {
        flex-wrap: wrap;
    }
    
    .detail-item {
        flex: 0 0 calc(50% - 8px);
    }
    
    .horoscope-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 8px);
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .horoscope-header {
        padding: 20px 20px 0;
        margin-bottom: 20px;
    }
    
    .zodiac-section-left {
        min-width: 100%;
        gap: 12px;
    }
    
    .zodiac-icon-large {
        font-size: 2rem;
    }
    
    .zodiac-name {
        font-size: 1.5rem;
    }
    
    .zodiac-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .horoscope-main-title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .theme-description {
        display: none;
    }
    
    .horoscope-content {
        margin: 0 20px 20px;
        padding: 20px;
    }
    
    .horoscope-message-text {
        font-size: 1.15rem;
        padding: 15px;
    }
    
    .horoscope-details {
        padding: 0 20px;
    }
    
    .detail-item {
        flex: 0 0 calc(50% - 8px);
        min-width: 140px;
    }
    
    .detail-value-container {
        min-width: 110px;
        font-size: 1rem;
        padding: 10px 20px;
        height: 44px;
    }
    
    .lucky-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .horoscope-extra {
        flex-direction: column;
        gap: 12px;
    }
    
    .horoscope-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .horoscope-header {
        padding: 15px 15px 0;
    }
    
    .zodiac-section-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .zodiac-icon-large {
        font-size: 1.8rem;
    }
    
    .zodiac-name {
        font-size: 1.3rem;
    }
    
    .horoscope-main-title {
        font-size: 1.3rem;
    }
    
    .theme-day-display {
        padding: 4px 10px;
    }
    
    .horoscope-content {
        margin: 0 15px 15px;
        padding: 15px;
    }
    
    .horoscope-message-text {
        font-size: 1.05rem;
        padding: 10px;
    }
    
    .horoscope-details {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }
    
    .detail-item {
        flex: 1 0 100%;
        padding: 10px;
    }
    
    .lucky-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .energy-indicator {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
}