@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";:root{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;line-height:1.5;font-weight:400;color-scheme:light;color:#333;background-color:#f5f5f5}body{margin:0;min-height:100vh}*{margin:0;padding:0;box-sizing:border-box}:root{--primary: #171717;--secondary: #404040;--cta: #D4AF37;--cta-hover: #B8962E;--bg: #FFFFFF;--bg-secondary: #F9FAFB;--text: #171717;--text-muted: #6B7280;--border: #E5E7EB;--card-bg: #FFFFFF;--shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);--shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);--radius: 12px;--radius-sm: 8px;--transition: all .2s ease}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:var(--bg-secondary);color:var(--text);line-height:1.6;min-height:100vh}.app{min-height:100vh;display:flex;flex-direction:column}.header{background:var(--bg);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background:#ffffffe6}.header-content{max-width:800px;margin:0 auto;padding:1rem 1.5rem;display:flex;justify-content:space-between;align-items:center}.logo{display:flex;align-items:center;gap:.5rem;font-weight:600;font-size:1.25rem;color:var(--primary)}.logo-icon{width:24px;height:24px;color:var(--cta)}.pod-badge{font-size:.75rem;padding:.25rem .75rem;background:var(--bg-secondary);border:1px solid var(--border);border-radius:9999px;color:var(--text-muted);font-family:monospace}.main{flex:1;max-width:800px;margin:0 auto;padding:2rem 1.5rem;width:100%}.hero{text-align:center;margin-bottom:2rem}.hero h1{font-size:2rem;font-weight:700;color:var(--primary);margin-bottom:.5rem;letter-spacing:-.025em}.subtitle{color:var(--text-muted);font-size:1.1rem}.greeting-form{display:flex;gap:.75rem;margin-bottom:1.5rem}.greeting-input{flex:1;padding:.875rem 1rem;border:2px solid var(--border);border-radius:var(--radius);font-size:1rem;font-family:inherit;transition:var(--transition);background:var(--bg)}.greeting-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px #1717171a}.greeting-input:disabled{background:var(--bg-secondary);cursor:not-allowed}.submit-btn{display:flex;align-items:center;gap:.5rem;padding:.875rem 1.5rem;background:var(--cta);color:#fff;border:none;border-radius:var(--radius);font-size:1rem;font-weight:600;font-family:inherit;cursor:pointer;transition:var(--transition)}.submit-btn:hover:not(:disabled){background:var(--cta-hover);transform:translateY(-1px);box-shadow:var(--shadow-hover)}.submit-btn:disabled{background:#d1d5db;cursor:not-allowed;transform:none}.btn-icon{width:18px;height:18px}.loading-spinner{width:18px;height:18px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.error-toast{padding:.75rem 1rem;background:#fef2f2;border:1px solid #FECACA;border-radius:var(--radius-sm);color:#dc2626;font-size:.875rem;margin-bottom:1.5rem}.greetings-section{margin-top:2rem}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.section-header h2{display:flex;align-items:center;gap:.5rem;font-size:1.25rem;font-weight:600;color:var(--primary)}.section-icon{width:20px;height:20px;color:var(--text-muted)}.refresh-btn{display:flex;align-items:center;gap:.375rem;padding:.5rem 1rem;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.875rem;font-weight:500;color:var(--text-muted);cursor:pointer;transition:var(--transition);font-family:inherit}.refresh-btn:hover:not(:disabled){border-color:var(--secondary);color:var(--primary)}.refresh-btn:disabled{opacity:.6;cursor:not-allowed}.refresh-icon{width:16px;height:16px}.refresh-icon.spinning{animation:spin 1s linear infinite}.loading-grid{display:flex;flex-direction:column;gap:1rem}.skeleton-card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem}.skeleton-line{background:linear-gradient(90deg,#f3f4f6 25%,#e5e7eb,#f3f4f6 75%);background-size:200% 100%;animation:shimmer 1.5s infinite;border-radius:4px}.skeleton-text{height:1rem;width:70%;margin-bottom:.75rem}.skeleton-meta{height:.75rem;width:40%}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.empty-state{text-align:center;padding:3rem 1rem;background:var(--card-bg);border:1px dashed var(--border);border-radius:var(--radius)}.empty-icon{width:48px;height:48px;color:var(--text-muted);margin-bottom:1rem}.empty-state p{color:var(--text-muted);font-size:1rem}.greetings-list{display:flex;flex-direction:column;gap:1rem}.greeting-card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;transition:var(--transition);animation:fadeInUp .3s ease forwards;opacity:0}.greeting-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px);border-color:var(--cta)}@keyframes fadeInUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.card-content{display:flex;flex-direction:column;gap:.75rem}.greeting-text{font-size:1.05rem;color:var(--text);line-height:1.6}.card-meta{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}.ip-badge,.time-badge{display:flex;align-items:center;gap:.375rem;font-size:.8rem;color:var(--text-muted)}.meta-icon{width:14px;height:14px}.delete-btn{display:flex;align-items:center;justify-content:center;width:28px;height:28px;margin-left:auto;padding:0;background:transparent;border:none;border-radius:var(--radius-sm);cursor:pointer;transition:var(--transition)}.delete-btn:hover:not(:disabled){background:#fee2e2}.delete-btn:disabled{opacity:.5;cursor:not-allowed}.delete-icon{width:16px;height:16px;color:#9ca3af;transition:color .2s}.delete-btn:hover:not(:disabled) .delete-icon{color:#ef4444}.loading-spinner.small{width:14px;height:14px;border-width:2px}.footer{text-align:center;padding:1.5rem;border-top:1px solid var(--border);background:var(--bg)}.footer p{font-size:.875rem;color:var(--text-muted)}@media(max-width:640px){.hero h1{font-size:1.5rem}.greeting-form{flex-direction:column}.submit-btn{justify-content:center;width:100%}.section-header{flex-direction:column;gap:1rem;align-items:stretch}.refresh-btn{justify-content:center}}@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
