/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

/* 伪装模式样式 */
.disguise-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.disguise-header {
    background: #007AFF;
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.disguise-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.disguise-logo h1 {
    font-size: 18px;
    font-weight: 600;
}

.disguise-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-item:hover {
    background: rgba(255,255,255,0.1);
}

.nav-item.active {
    background: rgba(255,255,255,0.2);
}

.disguise-content {
    flex: 1;
    display: flex;
    background: white;
}

.disguise-sidebar {
    width: 200px;
    background: #f1f3f4;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}

.folder-item {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.folder-item:hover {
    background: #e8eaed;
}

.disguise-content {
    flex: 1;
    padding: 30px;
    background: white;
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.note-header h2 {
    color: #333;
    font-size: 24px;
}

.note-date {
    color: #666;
    font-size: 14px;
}

.note-body {
    line-height: 1.6;
    color: #444;
}

.note-body h3 {
    margin: 25px 0 15px 0;
    color: #007AFF;
    font-size: 18px;
}

.note-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.note-body li {
    margin-bottom: 8px;
}

.note-body p {
    margin-bottom: 15px;
    text-align: justify;
}

/* 主应用样式 */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-left h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.header-right {
    display: flex;
    gap: 15px;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* 主内容区域 */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* 收益面板 */
.earnings-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.earnings-main {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.earnings-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.earnings-amount {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.earnings-amount[data-blur="true"] {
    filter: blur(8px);
    cursor: pointer;
}

.earnings-amount[data-blur="true"]:hover {
    filter: blur(0);
}

.earnings-amount.blur-mode {
    color: #333 !important;
    background: none !important;
    -webkit-text-fill-color: #333 !important;
}

.earnings-amount.blur-mode::before {
    content: '■■■■.■■';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
}

.earnings-amount.blur-mode:hover::before {
    display: none;
}

/* 粒子效果容器 */
.earnings-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 2s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

.coin-particle {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    position: absolute;
    animation: coinDrop 1.5s ease-out forwards;
}

@keyframes coinDrop {
    0% {
        opacity: 1;
        transform: translateY(-50px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100px) rotate(360deg);
    }
}

/* 统计信息 */
.earnings-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.stat-value[data-blur="true"] {
    filter: blur(4px);
    cursor: pointer;
}

.stat-value[data-blur="true"]:hover {
    filter: blur(0);
}

.status-off {
    color: #999;
}

.status-working {
    color: #4CAF50;
}

.status-paused {
    color: #FF9800;
}

/* 控制按钮 */
.control-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary, .btn-danger, .btn-calendar {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #FF9800, #f57c00);
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.btn-danger {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* 侧边面板 */
.side-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.consumption-panel, .dream-fund, .achievements {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.consumption-panel h3, .dream-fund h3, .achievements h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* 消费场景 */
.affordable-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.item-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.item-name {
    flex: 1;
    font-weight: 500;
}

.item-count {
    font-weight: 600;
    color: #667eea;
}

/* 梦想基金 */
.dream-item {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.dream-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dream-name {
    font-weight: 600;
    color: #333;
}

.dream-target {
    font-weight: 600;
    color: #667eea;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.dream-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

/* 成就系统 */
.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.achievement.locked {
    background: rgba(0, 0, 0, 0.05);
    opacity: 0.6;
}

.achievement.unlocked {
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 1;
    animation: achievementUnlock 0.5s ease-out;
}

@keyframes achievementUnlock {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.achievement-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.achievement-text {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.achievement-desc {
    font-size: 12px;
    color: #666;
    position: absolute;
    bottom: 2px;
    left: 44px;
}

/* 图表区域 */
.charts-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.chart-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.chart-tab {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.chart-tab.active {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.chart-tab:hover:not(.active) {
    background: rgba(102, 126, 234, 0.2);
}

/* 模态框样式 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.btn-close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px 30px;
}

.modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.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);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* 物品管理样式 */
.form-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.form-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.items-management {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.item-editor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.item-editor input {
    flex: 1;
    min-width: 0;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.item-editor input[type="number"] {
    max-width: 80px;
}

.item-editor .emoji-input {
    max-width: 50px;
    text-align: center;
}

.item-editor .btn-remove {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.item-editor .btn-remove:hover {
    background: #ff3838;
}

/* 梦想基金管理样式 */
.dream-management {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
}

.dream-management .form-group {
    margin-bottom: 15px;
}

.dream-management .form-group:last-child {
    margin-bottom: 0;
}

.dream-management input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.dream-management input:focus {
    outline: none;
    border-color: #667eea;
}

/* 数字滚动动画样式 */
.stat-value.rolling {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.rolling-number {
    display: inline-block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes numberRoll {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.rolling-digit {
    display: inline-block;
    animation: numberRoll 0.6s ease-out;
}

.rolling-digit.delay-1 {
    animation-delay: 0.1s;
}

.rolling-digit.delay-2 {
    animation-delay: 0.2s;
}

.rolling-digit.delay-3 {
    animation-delay: 0.3s;
}

.rolling-digit.delay-4 {
    animation-delay: 0.4s;
}

.rolling-digit.delay-5 {
    animation-delay: 0.5s;
}

/* 日历按钮样式 */
.btn-calendar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* 日历弹窗样式 */
.calendar-modal-content {
    max-width: 800px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.calendar-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.calendar-nav-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #495057;
    transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.calendar-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.calendar-stat-item {
    text-align: center;
}

.calendar-stat-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.calendar-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #495057;
}

.calendar-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 10px;
}

.weekday {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day {
    aspect-ratio: 1;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 60px;
}

.calendar-day:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.calendar-day.other-month {
    color: #adb5bd;
    background: #f8f9fa;
}

.calendar-day.today {
    background: #007bff;
    color: white;
    font-weight: 700;
}

.calendar-day.today:hover {
    background: #0056b3;
}

.day-number {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.day-earnings {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
}

/* 收益等级颜色 */
.calendar-day.no-work {
    background: #f8f9fa;
}

.calendar-day.low-earnings {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.calendar-day.medium-earnings {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.calendar-day.high-earnings {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #495057;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.legend-color.no-work {
    background: #f8f9fa;
}

.legend-color.low-earnings {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.legend-color.medium-earnings {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.legend-color.high-earnings {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* 通知样式 */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateX(400px);
    transition: all 0.5s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.notification-icon {
    font-size: 32px;
    animation: bounce 1s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* 日报样式 */
.report-celebration {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
}

.celebration-icon {
    font-size: 48px;
    margin-bottom: 10px;
    animation: bounce 1s ease-out;
}

.celebration-text {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.report-label {
    font-weight: 500;
    color: #666;
}

.report-value {
    font-weight: 600;
    color: #333;
}

.report-message {
    text-align: center;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    color: #4CAF50;
    font-weight: 500;
}

/* 彩带动画 */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd700;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* 免责声明模态框 */
.disclaimer-modal {
    z-index: 10000;
    opacity: 1;
    visibility: visible;
}

.disclaimer-modal .modal-content {
    transform: translateY(0);
}

/* 伪装界面返回按钮 */
.disguise-return-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.disguise-return-btn:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .side-panel {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 15px;
    }
    
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-left h1 {
        font-size: 24px;
    }
    
    .earnings-amount {
        font-size: 48px;
    }
    
    .earnings-stats {
        grid-template-columns: 1fr;
    }
    
    .control-buttons {
        flex-direction: column;
    }
    
    .report-stats {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .disguise-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .disguise-nav {
        gap: 15px;
    }
    
    .disguise-content {
        flex-direction: column;
    }
    
    .disguise-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

@media (max-width: 480px) {
    .earnings-amount {
        font-size: 36px;
    }
    
    .btn-primary, .btn-secondary, .btn-danger, .btn-calendar {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}