/* Apple ID 共享系统 - 主页样式 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
    color: #1d1d1f;
}

body:not(.modal-open) {
    background: #ffffff;
}

/* 禁止背景滚动 */
body.modal-open {
    overflow: hidden;
    height: 100vh;
}

.stats-bar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
    animation: fadeInDown 0.6s ease-out;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-bar.scrolled {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007aff 0%, #00c7ff 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 122, 255, 0.1);
}

.stat-label {
    font-size: 16px;
    color: #86868b;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -1.5px;
    line-height: 1;
    background: linear-gradient(135deg, #1d1d1f 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.warning {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.danger {
    background: linear-gradient(135deg, #ff3b30 0%, #ff1500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.account-card {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.5s ease-out both;
}

.account-card:nth-child(1) { animation-delay: 0.7s; }
.account-card:nth-child(2) { animation-delay: 0.8s; }
.account-card:nth-child(3) { animation-delay: 0.9s; }
.account-card:nth-child(4) { animation-delay: 1s; }
.account-card:nth-child(5) { animation-delay: 1.1s; }
.account-card:nth-child(6) { animation-delay: 1.2s; }

.account-card:hover {
    background: #ebebed;
    transform: translateY(-2px);
}

.status-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.status-badge.available {
    background: rgba(52, 199, 89, 0.15);
    color: #34c759;
}

.status-badge.busy {
    background: rgba(255, 149, 0, 0.15);
    color: #ff9500;
}

.status-badge.maintenance {
    background: rgba(255, 59, 48, 0.15);
    color: #ff3b30;
}

.account-header {
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.country-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
}

.account-detail {
    margin-bottom: 16px;
}

.account-detail:last-child {
    margin-bottom: 0;
}

.account-label {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.account-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.account-value:hover {
    background: #fafafa;
}

.account-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.copy-btn {
    background: #007aff;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 12px;
    flex-shrink: 0;
    letter-spacing: -0.2px;
}

.copy-btn:hover {
    background: #0051d5;
    transform: translateY(-1px);
}

.copy-btn:active {
    transform: scale(0.96);
}

.copy-btn.copied {
    background: #34c759;
}

.footer {
    text-align: center;
    padding: 48px 24px 32px;
    color: #86868b;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: -0.1px;
}

.footer p {
    margin: 0;
}

.footer p + p {
    margin-top: 8px;
    font-size: 12px;
}

.toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(29, 29, 31, 0.92);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(20px);
    letter-spacing: -0.2px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 模态框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.modal-header {
    text-align: center;
    margin-bottom: 18px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 4px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.copy-success {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.25);
}

.copy-success::before {
    content: '✓';
    margin-right: 6px;
    font-size: 16px;
    font-weight: bold;
}

.modal-body {
    margin-bottom: 20px;
}

.notice-box {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
}

.notice-title {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.3px;
}

.notice-item {
    background: white;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    line-height: 1.6;
    border: none;
    position: relative;
    padding-left: 42px;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-number {
    position: absolute;
    left: 12px;
    top: 14px;
    width: 24px;
    height: 24px;
    background: #1d1d1f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.notice-text {
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.6;
    letter-spacing: -0.1px;
}

.notice-text strong {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
}

.notice-highlight {
    background: #1d1d1f;
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.modal-footer {
    text-align: center;
}

.modal-close-btn {
    background: #d1d1d6;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    letter-spacing: -0.3px;
}

.modal-close-btn.active {
    background: #007aff;
    cursor: pointer;
}

.modal-close-btn.active:hover {
    background: #0051d5;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}

.modal-close-btn.active:active {
    transform: scale(0.98);
}

.countdown {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 激活页面样式 - Apple Design System */
.activation-container {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activation-header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out;
}

.activation-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.activation-desc {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.activation-form {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    display: block;
    letter-spacing: -0.3px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: #f5f5f7;
    border-radius: 12px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #1d1d1f;
}

.form-input::placeholder {
    color: #86868b;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-input.error {
    background: #fff5f5;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.error-message {
    color: #ff3b30;
    font-size: 15px;
    margin-top: 12px;
    display: none;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.error-message.show {
    display: block;
    animation: shake 0.4s ease-in-out;
}

.activate-btn {
    width: 100%;
    padding: 18px;
    background: #007aff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.3px;
    margin-top: 8px;
}

.activate-btn:hover {
    background: #0051d5;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.25);
}

.activate-btn:active {
    transform: scale(0.98);
}

.activate-btn:disabled {
    background: #d1d1d6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-4px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(4px);
    }
}

/* 剩余次数警告提示 */
.usage-warning-wrapper {
    max-width: 1000px;
    margin: 20px auto 32px;
    padding: 0 24px;
}

.usage-warning {
    background: rgba(255, 149, 0, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    color: #1d1d1f;
    text-align: center;
}

.usage-warning-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.usage-warning-count {
    color: #ff9500;
    font-weight: 700;
}

/* 账号更新时间 */
.account-update-time {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.account-update-text {
    font-size: 11px;
    color: #86868b;
    text-align: center;
}

/* 空状态提示 */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #86868b;
}

.empty-state-title {
    font-size: 18px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.empty-state-desc {
    font-size: 14px;
    margin: 0;
}

/* 页脚样式优化 */
.footer-update-info {
    margin-top: 4px;
    font-size: 11px;
    color: #a1a1a6;
}

/* 修复iOS输入框缩放问题 */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}

/* 修复移动端点击高亮 */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button,
a {
    -webkit-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: auto;
    user-select: auto;
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .stats-container {
        gap: 12px;
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        padding: 12px 20px;
        min-width: 0;
        flex: 1;
    }

    .stat-label {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .stat-value {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .container {
        padding: 20px 16px 48px;
    }

    .account-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .account-card {
        padding: 20px;
    }

    .status-badge {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 3px 10px;
    }

    .country-info h3 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .account-header {
        margin-bottom: 20px;
    }

    .account-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .account-value {
        padding: 12px 14px;
        font-size: 15px;
    }

    .account-text {
        font-size: 15px;
    }

    .copy-btn {
        padding: 6px 12px;
        font-size: 13px;
        margin-left: 8px;
        min-width: 50px;
    }

    .footer {
        padding: 36px 20px 20px;
        font-size: 13px;
    }

    .footer p + p {
        font-size: 12px;
    }

    .modal-content {
        padding: 24px 18px;
        width: 92%;
        border-radius: 14px;
        max-height: 85vh;
    }

    .modal-header {
        margin-bottom: 14px;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .modal-subtitle {
        font-size: 13px;
    }

    .copy-success {
        font-size: 13px;
        padding: 8px 12px;
        margin-bottom: 10px;
    }

    .copy-success::before {
        font-size: 15px;
        margin-right: 4px;
    }

    .modal-body {
        margin-bottom: 14px;
    }

    .notice-box {
        padding: 14px;
    }

    .notice-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .notice-item {
        padding: 12px;
        padding-left: 40px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .notice-number {
        left: 10px;
        top: 12px;
        width: 22px;
        height: 22px;
        font-size: 13px;
    }

    .notice-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .notice-text strong {
        font-size: 14px;
    }

    .notice-highlight {
        font-size: 13px;
        padding: 2px 6px;
    }

    .modal-close-btn {
        padding: 14px 20px;
        font-size: 16px;
    }

    .countdown {
        right: 12px;
        font-size: 13px;
        padding: 2px 6px;
    }

    .toast {
        top: 16px;
        font-size: 15px;
        padding: 10px 20px;
    }

    .activation-container {
        padding: 0 24px;
        min-height: 100vh;
        justify-content: center;
    }

    .activation-header {
        margin-bottom: 36px;
    }

    .activation-title {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .activation-desc {
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form-input {
        font-size: 17px;
        padding: 15px 16px;
        border-radius: 10px;
    }

    .error-message {
        font-size: 15px;
        margin-top: 10px;
    }

    .activate-btn {
        font-size: 17px;
        padding: 15px;
        border-radius: 10px;
    }

    .usage-warning-wrapper {
        margin: 16px auto 24px;
        padding: 0 16px;
    }

    .usage-warning {
        padding: 12px 16px;
        border-radius: 10px;
    }

    .usage-warning-text {
        font-size: 14px;
    }

    .account-update-time {
        margin-top: 10px;
        padding-top: 10px;
    }

    .account-update-text {
        font-size: 11px;
    }

    .empty-state {
        padding: 48px 20px;
    }

    .empty-state-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .empty-state-desc {
        font-size: 14px;
    }

    .footer-update-info {
        font-size: 11px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 480px) {
    .stat-item {
        padding: 10px 16px;
    }

    .stat-label {
        font-size: 15px;
    }

    .stat-value {
        font-size: 28px;
    }

    .account-card {
        padding: 18px;
    }

    .status-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .country-info h3 {
        font-size: 19px;
    }

    .account-detail {
        margin-bottom: 14px;
    }

    .activation-container {
        padding: 0 20px;
    }

    .activation-header {
        margin-bottom: 32px;
    }

    .activation-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .activation-desc {
        font-size: 15px;
    }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 375px) {
    body {
        font-size: 15px;
    }

    .stats-container {
        gap: 8px;
    }

    .stat-item {
        padding: 8px 12px;
        border-radius: 12px;
    }

    .stat-label {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .stat-value {
        font-size: 26px;
    }

    .container {
        padding: 16px 12px 40px;
    }

    .account-card {
        padding: 16px;
    }

    .account-header {
        margin-bottom: 16px;
    }

    .country-info h3 {
        font-size: 18px;
    }

    .account-label {
        font-size: 12px;
    }

    .account-value {
        padding: 10px 12px;
        font-size: 14px;
    }

    .copy-btn {
        padding: 5px 10px;
        font-size: 12px;
        min-width: 45px;
    }

    .modal-content {
        padding: 20px 14px;
        width: 94%;
        max-height: 82vh;
    }

    .modal-title {
        font-size: 19px;
    }

    .modal-subtitle {
        font-size: 12px;
    }

    .notice-box {
        padding: 12px;
    }

    .notice-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .notice-item {
        padding: 10px;
        padding-left: 36px;
        margin-bottom: 8px;
    }

    .notice-number {
        left: 8px;
        top: 10px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .notice-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .notice-text strong {
        font-size: 13px;
    }

    .notice-highlight {
        font-size: 12px;
        padding: 1px 5px;
    }

    .modal-close-btn {
        padding: 12px 18px;
        font-size: 15px;
    }

    .footer {
        padding: 32px 16px 16px;
    }

    .activation-container {
        padding: 0 16px;
    }

    .activation-header {
        margin-bottom: 28px;
    }

    .activation-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .activation-desc {
        font-size: 15px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-input {
        font-size: 16px;
        padding: 14px 15px;
    }

    .error-message {
        font-size: 14px;
    }

    .activate-btn {
        font-size: 16px;
        padding: 14px;
    }

    .usage-warning-wrapper {
        margin: 12px auto 20px;
        padding: 0 12px;
    }

    .usage-warning {
        padding: 10px 14px;
    }

    .usage-warning-text {
        font-size: 13px;
    }

    .account-update-time {
        margin-top: 8px;
        padding-top: 8px;
    }

    .account-update-text {
        font-size: 10px;
    }

    .empty-state {
        padding: 40px 16px;
    }

    .empty-state-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .empty-state-desc {
        font-size: 13px;
    }

    .footer-update-info {
        font-size: 10px;
    }
}
