.btn-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: none; border-radius: 6px; background: rgba(255, 255, 255, 0.05); color: var(--text-secondary, #888); cursor: pointer; transition: all 0.2s ease-in-out; }
.btn-icon:hover { background: var(--gikunju-blue); color: #ffffff; transform: translateY(-1px); }
.btn-icon:active { transform: translateY(0); }
.task-item { border-radius: 8px; margin-bottom: 12px; }

:root {
    --bg-color: #eef2f7;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --gikunju-blue: #0084ff;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --warning-orange: #f59e0b;
    --border-color: #e2e8f0;
    --accent-purple: #8b5cf6;
    --input-bg: #ffffff;
    --task-hover-bg: #f0f7ff;
    --overdue-bg: #fff5f5;
    --completed-bg: #f8fafc;
    --modal-overlay: rgba(15, 23, 42, 0.5);
    --bday-bg: #f1f5f9;
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --input-bg: #0f172a;
    --task-hover-bg: #0f172a;
    --overdue-bg: rgba(239, 68, 68, 0.1);
    --completed-bg: #0f172a;
    --modal-overlay: rgba(0, 0, 0, 0.7);
    --bday-bg: #334155;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-primary); padding: 16px 10px; display: flex; justify-content: center; align-items: flex-start; min-height: 100vh; transition: background-color 0.3s ease, color 0.3s ease; overflow-x: hidden; }
.app-wrapper { width: 100%; max-width: 540px; display: flex; flex-direction: column; gap: 16px; }

/* Navigation */
.top-nav { display: flex; background: var(--card-bg); border-radius: 16px; padding: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid var(--border-color); gap: 4px; position: sticky; top: 10px; z-index: 100; }
.nav-btn { flex: 1; padding: 12px 2px; text-align: center; background: transparent; border: none; border-radius: 10px; font-size: 11px; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: all 0.2s ease; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.nav-btn i { font-size: 16px; }
.nav-btn.active { background: var(--gikunju-blue); color: white; box-shadow: 0 4px 10px rgba(0, 132, 255, 0.2); }

/* Horizontal Scrolling Engine */
.pages-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; width: 100%; gap: 20px; padding-bottom: 20px; -ms-overflow-style: none; scrollbar-width: none; }
.pages-slider::-webkit-scrollbar { display: none; }
.page { min-width: 100%; flex-shrink: 0; scroll-snap-align: start; display: flex; flex-direction: column; gap: 16px; }

/* Global Cards */
.card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 10px; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.02); }
.header-layout { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.header-info { flex: 1; }
.header-info h1 { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.date-sub { font-family: 'Share Tech Mono', monospace; font-size: 20px; color: var(--gikunju-blue); margin-bottom: 16px; font-weight: 600; text-transform: uppercase; }

/* Animations */
.fa-flip { animation: fa-flip 2s; }
.fa-shake { animation: fa-shake 2s; }
.fa-bounce { animation: fa-bounce 2s; }
#tool-spin { animation: fa-spin 15s linear infinite; }
#egg-bounce { animation: fa-bounce 5s linear infinite; }
#robot-flip { animation: fa-flip 5s linear infinite; }

/* Home Elements */
.life-path-box { background: var(--task-hover-bg); border: 1px solid rgba(0, 132, 255, 0.2); padding: 16px; border-radius: 12px; text-align: center; margin-top: 10px; }
.life-path-title { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--text-secondary); margin-bottom: 4px; }
.life-path-date { font-family: 'Share Tech Mono', monospace; font-size: 24px; color: var(--gikunju-blue); font-weight: 700; }
.clock-wrapper { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.analogue-clock { width: 80px; height: 80px; border: 4px solid var(--text-primary); border-radius: 50%; position: relative; background: var(--card-bg); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.analogue-clock .hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; background: var(--text-primary); border-radius: 4px; }
.analogue-clock .hour { width: 3px; height: 22px; }
.analogue-clock .minute { width: 2px; height: 30px; background: var(--text-secondary); }
.analogue-clock .second { width: 1px; height: 32px; background: var(--danger-red); }
.analogue-clock .center-dot { width: 6px; height: 6px; background: var(--danger-red); border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.digital-led { font-family: 'Share Tech Mono', monospace; color: #ff3333; background-color: #0d0d0d; font-size: 18px; padding: 5px 10px; border-radius: 6px; border: 2px solid #222; text-shadow: 0 0 6px #ff3333, 0 0 12px #ff3333; box-shadow: inset 0 0 8px rgba(255, 51, 51, 0.2); letter-spacing: 0.5px; display: inline-flex; align-items: center; white-space: nowrap; }
#digital-led-clock { font-size: 18px; }
.chronometer-box { margin-top: 4px; display: flex; }
#live-age-box { font-size: 13.5px; padding: 5px 8px; }
.digital-led span { font-size: 10px; color: rgba(255, 51, 51, 0.55); text-shadow: none; margin-left: 1px; margin-right: 3px; font-weight: bold; }
.digital-led span.ms { font-size: 11px; color: #ff3333; text-shadow: 0 0 5px #ff3333; margin-left: 1px; margin-right: 0; }
.bday-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--bday-bg); padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; margin-top: 12px; color: var(--text-primary); }

/* Inputs and Forms */
.section-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 12px; font-weight: 700; }
.checklist-group-title { font-size: 11px; text-transform: uppercase; color: var(--text-secondary); font-weight: 700; margin: 14px 0 8px 0; display: flex; align-items: center; gap: 6px; }
.btn { padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.input-group { display: flex; gap: 8px; margin-bottom: 12px; }
.input-field { flex: 1; padding: 10px 14px; border: 1px solid var(--border-color); border-radius: 10px; font-family: inherit; font-size: 14px; background: var(--input-bg); color: var(--text-primary); width: 100%; }
.goal-inline-input { background: transparent; border: none; color: var(--text-primary); font-family: inherit; font-size: 14px; font-weight: 500; outline: none; width: 100%; margin-top: 4px; padding: 2px 0; border-bottom: 1px dashed var(--border-color); }
.goal-inline-input:focus { border-bottom-color: var(--gikunju-blue); }
.btn-add { background: var(--gikunju-blue); color: white; width: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.time-select-row { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.time-input { flex: 0 1 auto; width: 105px; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--input-bg); color: var(--text-primary); font-family: inherit; }
.date-input { flex: 1; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--input-bg); color: var(--text-primary); font-family: inherit; }

/* Tasks Lists */
.task-list { display: flex; flex-direction: column; gap: 10px; }
.task-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; border: 1px solid var(--border-color); border-radius: 7px; background: var(--card-bg); transition: all 0.2s; position: relative; overflow: hidden; }
.task-item.draggable { cursor: grab; touch-action: none; }
.task-item.draggable:active { cursor: grabbing; }
.task-item.dragging { position: fixed; z-index: 9999; opacity: 0.95; box-shadow: 0 15px 30px rgba(0, 132, 255, 0.15); margin: 0; transition: none !important; pointer-events: none; }
.task-placeholder { border: 2px dashed var(--gikunju-blue); border-radius: 12px; background: rgba(0, 132, 255, 0.04); margin: 0; transition: all 0.2s ease-out; }
.task-item.active-task { border-color: var(--gikunju-blue); background: var(--task-hover-bg); }
.task-item.overdue-task { border-color: var(--danger-red); background: var(--overdue-bg); }
.task-item.completed-task { opacity: 0.65; background: var(--completed-bg); }
.task-item.completed-task .task-main h4, .task-item.completed-task .goal-inline-input { text-decoration: line-through; color: var(--text-secondary); opacity: 0.7;}

/* Fluid Progress Tracking */
.task-progress { position: absolute; top: 0; left: 0; bottom: 0; width: 0%; background: linear-gradient(90deg, rgba(0, 132, 255, 0.05) 0%, rgba(0, 132, 255, 0.14) 100%); z-index: 1; transition: width 0.5s ease; pointer-events: none; }
.task-progress::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,85 350,35 600,60 C850,85 1050,35 1200,60 L1200,120 L0,120 Z' fill='%230084ff' fill-opacity='0.16'/%3E%3C/svg%3E"); background-size: 300px 100%; animation: fluidCurrentFlowFirst 3.5s linear infinite; }
.task-progress::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C200,25 400,75 700,50 C1000,25 1100,75 1200,50 L1200,120 L0,120 Z' fill='%230084ff' fill-opacity='0.10'/%3E%3C/svg%3E"); background-size: 400px 100%; animation: fluidCurrentFlowSecond 2.2s linear infinite; }
.task-item.overdue-task .task-progress { background: linear-gradient(90deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.14) 100%); }
.task-item.overdue-task .task-progress::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,85 350,35 600,60 C850,85 1050,35 1200,60 L1200,120 L0,120 Z' fill='%23ef4444' fill-opacity='0.16'/%3E%3C/svg%3E"); }
.task-item.overdue-task .task-progress::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C200,25 400,75 700,50 C1000,25 1100,75 1200,50 L1200,120 L0,120 Z' fill='%23ef4444' fill-opacity='0.10'/%3E%3C/svg%3E"); background-size: 400px 100%; animation: fluidCurrentFlowSecond 2.2s linear infinite; }
@keyframes fluidCurrentFlowFirst { 0% { background-position-x: 0px; } 100% { background-position-x: 300px; } }
@keyframes fluidCurrentFlowSecond { 0% { background-position-x: 0px; } 100% { background-position-x: -400px; } }

/* Task Information */
.task-main { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-right: 9px; }
.task-main h4 { font-size: 10px; font-weight: 600; margin-bottom: 2px; position: relative; z-index: 3; }
.task-meta { font-size: 9px; color: var(--text-secondary); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; position: relative; z-index: 3; }
.stationary-empty-space-timer { font-family: 'Share Tech Mono', monospace; font-size: 11px; font-weight: 700; color: var(--gikunju-blue); background: var(--card-bg); padding: 3px 6px; border-radius: 6px; border: 1px solid rgba(0, 132, 255, 0.2); white-space: nowrap; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); margin-right: 12px; position: relative; z-index: 5; align-self: center; }
.overdue-task .stationary-empty-space-timer { color: var(--danger-red); border-color: rgba(239, 68, 68, 0.2); background: var(--card-bg); }
.badge { font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
.badge-completed { background: rgba(16, 185, 129, 0.2); color: var(--success-green); }
.badge-active { background: rgba(0, 132, 255, 0.15); color: var(--gikunju-blue); }
.badge-overdue { background: rgba(239, 68, 68, 0.15); color: var(--danger-red); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: var(--warning-orange); }
.streak-tag { font-size: 11px; font-weight: 600; color: var(--warning-orange); display: inline-flex; align-items: center; gap: 2px; }
.countdown-live-render { font-family: 'Share Tech Mono', monospace; font-size: 13px; color: var(--accent-purple); font-weight: 700; background: rgba(139, 92, 246, 0.1); padding: 2px 6px; border-radius: 4px; }

/* Switches & Buttons */
.controls-right { display: flex; align-items: center; gap: 12px; position: relative; z-index: 5; flex-shrink: 0;}
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #cbd5e1; transition: .3s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%; }
input:checked + .slider { background-color: var(--success-green); }
input:checked + .slider:before { transform: translateX(20px); }
.btn-action { background: none; border: none; color: var(--text-secondary); cursor: pointer; padding: 4px; font-size: 14px; }
.btn-delete:hover { color: var(--danger-red); }
.btn-edit:hover { color: var(--gikunju-blue); }

/* Earnings & Calendar */
.earnings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.stat-box { background: var(--bday-bg); border: 1px solid var(--border-color); padding: 14px; border-radius: 12px; text-align: center; }
.stat-box.highlight { background: rgba(16, 185, 129, 0.1); border-color: var(--success-green); }
.stat-label { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; }
.stat-value { font-family: 'Share Tech Mono', monospace; font-size: 18px; color: var(--text-primary); font-weight: 700; }
.stat-box.highlight .stat-value { color: var(--success-green); font-size: 22px;}
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.calendar-header h3 { font-size: 16px; font-weight: 700; }
.cal-nav-btn { background: var(--bday-bg); border: none; padding: 8px 12px; border-radius: 8px; color: var(--text-primary); cursor: pointer; font-weight: bold; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 16px; }
.cal-day-name { text-align: center; font-size: 10px; font-weight: 700; color: var(--text-secondary); padding-bottom: 4px; text-transform: uppercase; }
.cal-day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 4px 2px; background: var(--input-bg); border: 1px solid var(--border-color); border-radius: 8px; font-size: 11px; cursor: pointer; position: relative; transition: all 0.2s; box-sizing: border-box; }
.cal-day:hover { background: var(--task-hover-bg); border-color: var(--gikunju-blue); }
.cal-day.empty { background: transparent; border-color: transparent; cursor: default; }
.cal-day.active { border-color: var(--gikunju-blue); box-shadow: 0 0 0 2px rgba(0,132,255,0.2); background: var(--task-hover-bg); }
.cal-day.today { font-weight: 800; color: var(--gikunju-blue); }
.cal-day-num { font-weight: 700; }
.cal-events-zone { display: flex; flex-direction: column; gap: 1px; width: 100%; align-items: center; overflow: hidden; }
.micro-tag { font-size: 7px; font-weight: 800; padding: 1px 2px; border-radius: 3px; max-width: 95%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; line-height: 1; text-transform: uppercase; }
.tag-holiday { background: rgba(239, 68, 68, 0.15); color: var(--danger-red); }
.tag-birthday { background: rgba(139, 92, 246, 0.18); color: var(--accent-purple); font-weight: 900; }
.tag-lifepath { background: rgba(16, 185, 129, 0.15); color: var(--success-green); }
.cal-net { font-size: 9px; font-weight: 700; margin-top: 1px; line-height: 1; }
.cal-net.pos { color: var(--success-green); }
.cal-net.neg { color: var(--danger-red); }
.cal-net.neu { color: var(--text-secondary); }

/* Calculator */
.calc-container { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.calc-screen { width: 100%; background-color: #8b9c83; color: #20281b; font-family: 'Share Tech Mono', monospace; padding: 16px 20px; border-radius: 8px; text-align: right; box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5), inset 0 -2px 4px rgba(255, 255, 255, 0.2); border: 2px solid #1a1a1a; min-height: 80px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.calc-screen::after { content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%); transform: skewX(-25deg); animation: glass-shine 6s infinite; pointer-events: none; }
@keyframes glass-shine { 0% { left: -150%; } 20% { left: 150%; } 100% { left: 150%; } }
.calc-history { font-size: 14px; color: rgba(32, 40, 27, 0.7); min-height: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.calc-output { font-size: 28px; color: #20281b; text-shadow: 0 0 2px rgba(32, 40, 27, 0.2); word-wrap: break-word; word-break: break-all; }
.blinking-cursor { display: inline-block; width: 12px; height: 4px; background-color: #20281b; margin-left: 5px; vertical-align: bottom; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.calc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.calc-btn { background: linear-gradient(180deg, #4a4a4a 0%, #2b2b2b 100%); color: #ffffff; border: none; border-radius: 6px; font-weight: bold; font-size: 15px; padding: 15px 0; cursor: pointer; transition: all 0.1s ease; box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.2), 0 5px 5px rgba(0, 0, 0, 0.4); text-align: center; }
.calc-btn:active { transform: translateY(3px); background: linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 100%); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 2px 2px rgba(0, 0, 0, 0.4); }
.calc-btn.op { background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%); color: #fff; }
.calc-btn.op:active { background: linear-gradient(180deg, #1e40af 0%, #172554 100%); }
.calc-btn.fn { background: linear-gradient(180deg, #4c1d95 0%, #5b21b6 100%); color: #fff; font-size: 13px; }
.calc-btn.fn:active { background: linear-gradient(180deg, #5b21b6 0%, #2e1065 100%); }
.calc-btn.eq { background: linear-gradient(180deg, #059669 0%, #047857 100%); color: #fff; grid-column: span 2; }
.calc-btn.eq:active { background: linear-gradient(180deg, #047857 0%, #064e3b 100%); }
.calc-btn.clear { background: linear-gradient(180deg, #b91c1c 0%, #991b1b 100%); color: #fff; }
.calc-btn.clear:active { background: linear-gradient(180deg, #991b1b 0%, #7f1d1d 100%); }

/* Chart & Debts */
.chart-container { position: relative; height: 220px; width: 100%; margin-top: 10px; }
.live-debt-ticker { font-family: 'Share Tech Mono', monospace; font-size: 16px; color: var(--gikunju-blue); margin-top: 4px; font-weight: 700; }
.live-debt-ticker.danger { color: var(--danger-red); }

/* Conditional Lists */
.cond-list-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; margin-bottom: 12px; transition: all 0.2s; }
.cond-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cond-title-text { font-size: 14px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.5px; }
.cond-item-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px dashed var(--border-color); }
.cond-item-row:last-child { border-bottom: none; }
.cond-item-left { display: flex; align-items: center; gap: 8px; flex: 1; }
.cond-checkbox { width: 16px; height: 16px; accent-color: var(--success-green); cursor: pointer; flex-shrink: 0; }
.badge-greenlight { background: rgba(16, 185, 129, 0.15); color: var(--success-green); box-shadow: 0 0 8px rgba(16, 185, 129, 0.4); animation: greenPulse 2s infinite; }
@keyframes greenPulse { 0% { box-shadow: 0 0 4px rgba(16, 185, 129, 0.2); } 50% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); } 100% { box-shadow: 0 0 4px rgba(16, 185, 129, 0.2); } }

/* Empty states & Modals */
.empty-state { text-align: center; padding: 30px 10px; color: var(--text-secondary); font-size: 14px; width: 100%; }
.empty-state i { font-size: 32px; color: var(--border-color); margin-bottom: 12px; display: block; }
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--modal-overlay); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 10000; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.2s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-card { background: var(--card-bg); border-radius: 20px; padding: 24px; width: 90%; max-width: 320px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); transform: translateY(20px); transition: transform 0.2s ease; text-align: center; }
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-icon { color: var(--danger-red); font-size: 32px; margin-bottom: 12px; }
.modal-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.modal-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 10px; justify-content: center; }
.btn-modal { flex: 1; padding: 10px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-cancel { background: var(--bday-bg); color: var(--text-primary); }
.btn-confirm-delete { background: var(--danger-red); color: white; }

/* Footers and Utilities */
.footer-utility { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 5px; }
.btn-sub { background: var(--bday-bg); color: var(--text-primary); padding: 6px 12px; font-size: 11px; border-radius: 6px; }
.btn-danger-zone { background: transparent; border: 1px solid var(--border-color); color: var(--text-secondary); font-size: 11px; padding: 6px 12px; border-radius: 6px; width: fit-content; margin: 0 auto; }
.btn-danger-zone:hover { background: var(--danger-red); color: white; border-color: var(--danger-red); }

.footerr { font-size: 9px; font-family: 'Share Tech Mono', monospace; margin: 10px; padding: 12px; border-radius: 16px; gap: 4px; position: sticky; top: 10px; z-index: 100; background: var(--card-bg); border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; justify-content: center; align-items: center; }
#copyright { text-align: center; font-weight: bold; background: linear-gradient(90deg, var(--text-secondary) 0%, var(--text-primary) 50%, var(--text-secondary) 100%); background-size: 200% auto; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textShine 3s linear infinite; }
@keyframes textShine { 0% { background-position: 200% center; } 100% { background-position: 0% center; } }
