* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #E89F8D 0%, #E8B4A5 50%, #F4D4C4 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.container { width: 100%; max-width: 480px; }
.calculator-card { background: rgba(245, 222, 209, 0.95); border-radius: 32px; padding: 40px 32px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
.header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.icon { font-size: 32px; }
h1 { font-size: 36px; font-weight: 800; color: #2c2c2c; }
.subtitle { font-size: 18px; color: #4a4a4a; margin-bottom: 24px; font-weight: 500; }
.toggle-container { display: flex; gap: 12px; margin-bottom: 24px; }
.toggle-btn { flex: 1; padding: 14px 24px; border: none; border-radius: 24px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.5); color: #4a4a4a; }
.toggle-btn.active { background: #E89F8D; color: #2c2c2c; }
.toggle-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.input-container { position: relative; background: rgba(255, 255, 255, 0.9); border-radius: 20px; padding: 20px 24px; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
.dollar-sign { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 28px; font-weight: 700; color: #E89F8D; }
.amount-input { width: 100%; border: none; background: transparent; font-size: 32px; font-weight: 700; color: #2c2c2c; padding-left: 36px; outline: none; }
.amount-input::placeholder { color: #999; }
.holiday-container { margin-bottom: 20px; padding: 16px 20px; background: rgba(255, 255, 255, 0.5); border-radius: 16px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 16px; font-weight: 600; color: #2c2c2c; }
.checkbox-label input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; accent-color: #E89F8D; }
.tax-container { margin-bottom: 24px; padding: 16px 20px; background: rgba(255, 255, 255, 0.5); border-radius: 16px; }
.tax-container label { display: block; font-size: 14px; font-weight: 600; color: #4a4a4a; margin-bottom: 8px; }
.tax-container input { width: 100%; padding: 10px 12px; border: 2px solid rgba(232, 159, 141, 0.3); border-radius: 10px; font-size: 16px; font-weight: 600; background: white; color: #2c2c2c; }
.calculate-btn { width: 100%; padding: 18px 32px; background: #2c2c2c; color: white; border: none; border-radius: 24px; font-size: 18px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; margin-bottom: 24px; }
.calculate-btn:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.results { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.divider { height: 2px; background: linear-gradient(to right, transparent, #E89F8D, transparent); margin: 24px 0; }
.reveal-title { font-size: 20px; font-weight: 700; color: #4a4a4a; margin-bottom: 12px; }
.daily-pay { font-size: 28px; font-weight: 800; color: #2c2c2c; margin-bottom: 8px; }
.holiday-badge { display: inline-block; background: linear-gradient(135deg, #FFD700, #FFA500); color: white; padding: 4px 12px; border-radius: 12px; font-size: 14px; margin-left: 8px; }
.after-tax { font-size: 16px; color: #666; margin-bottom: 20px; }
.spoil-index { background: rgba(255, 255, 255, 0.6); border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.spoil-index h4 { font-size: 18px; font-weight: 700; color: #2c2c2c; margin-bottom: 12px; }
.spoil-index p { font-size: 15px; color: #4a4a4a; margin-bottom: 8px; }
.spoil-index strong { color: #E89F8D; font-weight: 800; }
.hype-button { width: 100%; padding: 14px 24px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; border-radius: 20px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.hype-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4); }
