.karakia-card { background: var(--ink); color: var(--cream); border-radius: 12px; padding: 16px; margin-bottom: 1rem; position: relative; overflow: hidden; } .karakia-label { font-size: 10px; letter-spacing: 0.12em; opacity: 0.5; margin-bottom: 8px; text-transform: uppercase; } .karakia-text { font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 6px; } .karakia-meaning { font-size: 11px; opacity: 0.55; line-height: 1.5; } .karakia-next { position: absolute; top: 12px; right: 12px; background: transparent; border: 0.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); font-size: 11px; border-radius: 6px; padding: 3px 8px; cursor: pointer; font-family: inherit; } .karakia-next:hover { opacity: 1; background: rgba(255,255,255,0.08); } /* Pomodoro */ .pomo-card { background: var(--card); border-radius: 12px; border: 0.5px solid var(--border); padding: 16px; margin-bottom: 1rem; } .pomo-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; } .pomo-title { font-size: 13px; font-weight: 500; } .pomo-mode-btns { display: flex; gap: 4px; } .pomo-mode { font-size: 11px; padding: 3px 8px; border-radius: 6px; border: 0.5px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; font-family: inherit; transition: all 0.15s; } .pomo-mode.active { background: var(--ink); color: var(--cream); border-color: transparent; } .pomo-ring-wrap { display: flex; justify-content: center; margin-bottom: 14px; } .pomo-ring { transform: rotate(-90deg); } .pomo-ring-bg { fill: none; stroke: var(--surface); stroke-width: 6; } .pomo-ring-fill { fill: none; stroke: var(--dawn); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 1s linear; } .pomo-time { font-size: 32px; font-weight: 500; text-align: center; margin-bottom: 4px; letter-spacing: 0.04em; } .pomo-phase { font-size: 11px; color: var(--text-muted); text-align: center; margin-bottom: 14px; letter-spacing: 0.06em; } .pomo-controls { display: flex; gap: 8px; justify-content: center; } .pomo-btn { padding: 9px 20px; border-radius: 8px; border: 0.5px solid var(--border); background: var(--surface); color: var(--text-main); font-size: 13px; font-family: inherit; cursor: pointer; transition: all 0.15s; min-width: 80px; } .pomo-btn.go { background: var(--ink); color: var(--cream); border-color: transparent; } .pomo-btn:hover { opacity: 0.85; } .pomo-sessions { display: flex; gap: 6px; justify-content: center; margin-top: 12px; } .pomo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.3s; } .pomo-dot.done { background: var(--dawn); } /* AI reflection */ .ai-btn { width: 100%; padding: 11px; border-radius: 10px; border: 0.5px solid var(--dawn); background: transparent; color: var(--dawn); font-size: 13px; font-family: inherit; cursor: pointer; transition: all 0.15s; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; } .ai-btn:hover { background: rgba(201,169,110,0.1); } .ai-btn.loading { opacity: 0.6; pointer-events: none; } .ai-reflection { background: var(--ink); color: var(--cream); border-radius: 12px; padding: 16px; margin-bottom: 1rem; } .ai-reflection-label { font-size: 10px; letter-spacing: 0.12em; opacity: 0.5; margin-bottom: 8px; text-transform: uppercase; } .ai-reflection-text { font-size: 13px; line-height: 1.7; opacity: 0.9; } .ai-spinner { width: 14px; height: 14px; border: 2px solid rgba(201,169,110,0.3); border-top-color: var(--dawn); border-radius: 50%; animation: spin 0.8s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } }