.totp-container{padding:40px;min-height:100%;display:flex;align-items:flex-start;justify-content:center}.totp-card{width:100%;max-width:520px;border-radius:8px;box-shadow:0 1px 2px #00000008,0 1px 6px -1px #00000005,0 2px 4px #00000005;animation:cardSlideIn .4s ease-out}@keyframes cardSlideIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.header-section{text-align:center}.lock-icon-wrapper{display:inline-block;animation:iconBounce 1s ease-in-out}@keyframes iconBounce{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.lock-icon{font-size:48px;color:#1890ff;margin-bottom:16px;animation:iconPulse 2s ease-in-out infinite}@keyframes iconPulse{0%,to{transform:scale(1)}50%{transform:scale(1.1)}}.title{margin:0 0 8px;font-weight:600;animation:titleFadeIn .6s ease-out .2s both}@keyframes titleFadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.subtitle{font-size:14px;animation:subtitleFadeIn .6s ease-out .3s both}@keyframes subtitleFadeIn{0%{opacity:0}to{opacity:1}}.input-section{animation:inputSlideIn .5s ease-out .4s both}@keyframes inputSlideIn{0%{opacity:0;transform:translate(-20px)}to{opacity:1;transform:translate(0)}}.input-label{display:block;margin-bottom:8px;font-size:14px}.secret-input{border-radius:6px;font-size:15px;transition:all .2s cubic-bezier(.645,.045,.355,1)}.secret-input:focus{box-shadow:0 0 0 2px #1890ff1a}.code-display{background:#fff;border:1px solid #e8e8e8;border-radius:8px;padding:32px 24px;text-align:center;cursor:pointer;transition:all .2s cubic-bezier(.645,.045,.355,1);position:relative;animation:codeDisplaySlideIn .4s ease-out .3s both}@keyframes codeDisplaySlideIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.code-display:hover{border-color:#1890ff;box-shadow:0 2px 8px #1890ff26}.code-display:active{transform:scale(.99)}.code-display.copied{border-color:#52c41a;box-shadow:0 2px 8px #52c41a26}.code-label{font-size:13px;display:block;margin-bottom:16px;opacity:.6;transition:opacity .3s ease}.code-display:hover .code-label{opacity:1}.totp-code{font-size:64px;font-weight:700;letter-spacing:16px;color:#262626;margin-bottom:24px;font-family:SF Mono,Monaco,Courier New,monospace;-webkit-user-select:none;user-select:none;line-height:1;transition:all .3s ease}.code-digit{display:inline-block;animation:digitFadeIn .5s ease-out both}@keyframes digitFadeIn{0%{opacity:0;transform:translateY(10px) scale(.8)}to{opacity:1;transform:translateY(0) scale(1)}}.totp-code.changing .code-digit{animation:digitChange .5s ease-out both}@keyframes digitChange{0%{opacity:1;transform:translateY(0) scale(1)}50%{opacity:0;transform:translateY(-10px) scale(.8)}to{opacity:1;transform:translateY(0) scale(1)}}.progress-pulse{animation:progressPulse 1s ease-in-out infinite}@keyframes progressPulse{0%,to{opacity:1}50%{opacity:.7}}.info-section{color:#8c8c8c;font-size:13px;transition:all .3s ease}.info-item{display:inline-flex;align-items:center;gap:6px;transition:all .3s ease}.code-display:hover .info-item{color:#262626}.clock-icon-urgent{color:#ff4d4f;animation:clockBlink .5s ease-in-out infinite}@keyframes clockBlink{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.2)}}.time-urgent{color:#ff4d4f;font-weight:600;animation:textShake .5s ease-in-out infinite}@keyframes textShake{0%,to{transform:translate(0)}25%{transform:translate(-2px)}75%{transform:translate(2px)}}.check-icon{color:#52c41a;animation:checkScale .3s ease-out}@keyframes checkScale{0%{transform:scale(0)}50%{transform:scale(1.2)}to{transform:scale(1)}}.secret-card{background:#fff;border:1px solid #e8e8e8;border-radius:8px;padding:16px;cursor:pointer;transition:all .2s cubic-bezier(.645,.045,.355,1);position:relative;overflow:hidden;display:flex;align-items:center;gap:12px;animation:secretCardFadeIn .3s ease-out both}@keyframes secretCardFadeIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.secret-card:hover{border-color:#1890ff;box-shadow:0 2px 8px #1890ff1f}.secret-card:active{transform:scale(.98)}.secret-card.selected{border-color:#1890ff;background:#f0f7ff;box-shadow:0 2px 8px #1890ff26}.secret-card-icon{flex-shrink:0;width:40px;height:40px;border-radius:8px;background:#1890ff;display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;transition:all .2s ease}.secret-card:hover .secret-card-icon{transform:scale(1.05)}.secret-card.selected .secret-card-icon{background:#52c41a}.secret-card-content{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px;position:relative;z-index:1}.secret-card-name{font-size:15px;color:#262626;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transition:color .3s ease}.secret-card:hover .secret-card-name{color:#1890ff}.secret-card.selected .secret-card-name{color:#262626;font-weight:500}.secret-card-note{font-size:12px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:1.4}.secret-card-badge{flex-shrink:0;width:20px;height:20px;border-radius:50%;background:#52c41a;color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;animation:badgePopIn .2s ease-out;position:relative;z-index:1}@keyframes badgePopIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}.empty-state{text-align:center;padding:40px 20px;color:#bfbfbf;animation:emptyStateFadeIn .5s ease-out .3s both}@keyframes emptyStateFadeIn{0%{opacity:0}to{opacity:1}}.history-section{animation:historySlideIn .5s ease-out .6s both}@keyframes historySlideIn{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}.history-list{max-height:300px;overflow-y:auto;border:1px solid #e8e8e8;border-radius:6px;background:#fafafa}.history-list::-webkit-scrollbar{width:6px}.history-list::-webkit-scrollbar-track{background:transparent}.history-list::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.history-list::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.history-item{padding:12px 16px!important;cursor:pointer;transition:all .2s ease;background:#fff;border-bottom:1px solid #e8e8e8}.history-item:hover{background:#f0f7ff}.history-item:active{transform:scale(.98)}.history-item:last-child{border-bottom:none}@media (max-width: 768px){.totp-code{font-size:48px;letter-spacing:12px}.lock-icon{font-size:40px}.history-list{max-height:250px}.secret-card{padding:14px}.secret-card-icon{width:44px;height:44px;font-size:22px}.secret-card-name{font-size:14px}.secret-card-note{font-size:11px}}@media (max-width: 480px){.totp-code{font-size:36px;letter-spacing:8px}.code-display{padding:24px 16px}.history-list{max-height:200px}.secret-card{padding:12px;gap:10px}.secret-card-icon{width:40px;height:40px;font-size:20px}.secret-card-name{font-size:13px}.secret-card-note{font-size:11px}.secret-card-badge{width:20px;height:20px;font-size:12px}}.facebook-uid-checker-container{padding:40px;min-height:100%;display:flex;justify-content:center;align-items:flex-start}.uid-checker-content{max-width:1200px;width:100%}.header-section{text-align:center;margin-bottom:16px}.facebook-icon-wrapper{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:#1890ff;margin-bottom:16px;box-shadow:0 2px 8px #1890ff33}.facebook-icon{font-size:28px;color:#fff}.title{margin:8px 0 4px!important;color:#262626;font-weight:600}.subtitle{display:block;font-size:14px;color:#8c8c8c}.input-section{margin:16px 0}.uid-input{font-family:Consolas,Monaco,Courier New,monospace;font-size:14px;border-radius:6px;border:1px solid #d9d9d9;transition:all .2s cubic-bezier(.645,.045,.355,1)}.uid-input:hover{border-color:#1890ff}.uid-input:focus{border-color:#1890ff;box-shadow:0 0 0 2px #1890ff1a}.results-table{border-radius:6px;overflow:hidden}.results-table .ant-table{font-size:14px}.results-table .ant-table-thead>tr>th{background:#fafafa;font-weight:600;color:#262626}.results-table .ant-table-tbody>tr:hover>td{background:#f5f5f5}@media (max-width: 768px){.facebook-uid-checker-container{padding:16px}.uid-checker-card{padding:20px}.facebook-icon-wrapper{width:48px;height:48px}.facebook-icon{font-size:24px}.title{font-size:20px!important}}.fb-live-checker-container{padding:24px;max-width:1200px;margin:0 auto}.fb-live-checker-container .ant-card-head-title{font-size:18px;font-weight:700}.input-area{margin-bottom:24px}.action-area{text-align:center;margin-bottom:24px}.results-area{margin-bottom:24px}.result-box{height:100%;display:flex;flex-direction:column}.result-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}.result-title{font-weight:700;font-size:16px}.live-title{color:#00b96b}.die-title{color:#ff4d4f}.count-badge{padding:2px 8px;border-radius:10px;font-size:12px;color:#fff;font-weight:700}.live-badge{background-color:#00b96b}.die-badge{background-color:#ff4d4f}.result-textarea{flex:1;resize:none;font-family:monospace;border-radius:4px;padding:8px;min-height:200px}.live-textarea{border:1px solid #00b96b!important;background-color:#f6ffed!important;color:#00b96b}.die-textarea{border:1px solid #ff4d4f!important;background-color:#fff1f0!important;color:#ff4d4f}.copy-btn{margin-top:8px}.live-copy-btn{background-color:#00b96b;border-color:#00b96b}.live-copy-btn:hover{background-color:#009456!important;border-color:#009456!important}.die-copy-btn{background-color:#ff4d4f;border-color:#ff4d4f}.die-copy-btn:hover{background-color:#d9363e!important;border-color:#d9363e!important}.instructions-card{background-color:#f0f5ff;border:1px solid #adc6ff}.instructions-title{color:#1890ff;font-weight:700;margin-bottom:8px;display:block}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;background:#f0f2f5}#root{width:100%;min-height:100vh}.logo-container{height:64px;display:flex;align-items:center;justify-content:center;background:#fff;border-bottom:1px solid #f0f0f0}.logo-text{font-size:18px;font-weight:700;color:#1890ff;background:linear-gradient(45deg,#1890ff,#69c0ff);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;letter-spacing:1px}.ant-layout-sider-children::-webkit-scrollbar{width:6px}.ant-layout-sider-children::-webkit-scrollbar-thumb{background-color:#0003;border-radius:3px}.ant-layout-sider-children::-webkit-scrollbar-track{background-color:transparent}.ant-layout-content{min-height:initial}@media (max-width: 768px){.ant-layout-sider{display:none}.ant-layout{margin-left:0!important}}
