:root {
    --apple-blue: #007AFF;
    --apple-blue-dark: #0A84FF;
    --apple-green: #34C759;
    --apple-red: #FF3B30;
    --apple-red-dark: #FF453A;
    --apple-gray: #8E8E93;
    --apple-gray2: #AEAEB2;
    --apple-gray3: #C7C7CC;
    --apple-gray4: #D1D1D6;
    --apple-gray5: #E5E5EA;
    --apple-gray6: #F2F2F7;

    --text-primary: #000000;
    --text-secondary: #3C3C43;
    --text-tertiary: rgba(60, 60, 67, 0.6);
    --text-quaternary: rgba(60, 60, 67, 0.3);

    --bg-primary: #FFFFFF;
    --bg-secondary: #F2F2F7;
    --bg-tertiary: #FFFFFF;

    --separator: rgba(60, 60, 67, 0.1);
    --separator-opaque: #C6C6C8;

    --radius-small: 6px;
    --radius-medium: 10px;
    --radius-large: 14px;
    --radius-xl: 18px;

    --spacing-0: 0;
    --spacing-2: 2px;
    --spacing-4: 4px;
    --spacing-8: 8px;
    --spacing-12: 12px;
    --spacing-16: 16px;
    --spacing-20: 20px;
    --spacing-24: 24px;
    --spacing-32: 32px;
    --spacing-40: 40px;
    --spacing-48: 48px;
    --spacing-64: 64px;

    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.05);

    --timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --apple-blue: #0A84FF;
        --apple-blue-dark: #409CFF;
        --apple-green: #30D158;
        --apple-red: #FF453A;
        --apple-red-dark: #FF6961;
        --apple-gray: #8E8E93;
        --apple-gray2: #636366;
        --apple-gray3: #48484A;
        --apple-gray4: #3A3A3C;
        --apple-gray5: #2C2C2E;
        --apple-gray6: #1C1C1E;

        --text-primary: #FFFFFF;
        --text-secondary: rgba(235, 235, 245, 0.9);
        --text-tertiary: rgba(235, 235, 245, 0.6);
        --text-quaternary: rgba(235, 235, 245, 0.3);

        --bg-primary: #000000;
        --bg-secondary: #1C1C1E;
        --bg-tertiary: #2C2C2E;

        --separator: rgba(84, 84, 88, 0.6);
        --separator-opaque: #38383A;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: env(safe-area-inset-bottom);
}

.app-container {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 var(--spacing-16);
}

.nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--separator);
}

@media (prefers-color-scheme: dark) {
    .nav-bar {
        background-color: rgba(0, 0, 0, 0.85);
    }
}

.nav-content {
    display: flex;
    align-items: center;
    height: 44px;
}

.nav-logo {
    font-size: 21px;
    font-weight: 600;
    color: var(--apple-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-right: var(--spacing-16);
}

.nav-search-container {
    flex: 1;
    max-width: 680px;
    position: relative;
}

.search-input {
    width: 100%;
    height: 36px;
    padding: 0 var(--spacing-32) 0 var(--spacing-32);
    border-radius: 8px;
    border: none;
    background-color: var(--bg-secondary);
    font-size: 17px;
    color: var(--text-primary);
    transition: all 0.2s var(--timing-function);
}

.search-input:focus {
    outline: none;
    background-color: var(--bg-secondary);
}

.search-icon {
    position: absolute;
    left: var(--spacing-8);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--apple-gray);
}

.main-content {
    padding: var(--spacing-24) 0 var(--spacing-64);
}

.today-section {
    margin-bottom: var(--spacing-48);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: var(--spacing-0);
    position: relative;
    padding-bottom: var(--spacing-16);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--apple-blue), #5ac8fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-subtitle {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-top: var(--spacing-4);
}

.section-header-content {
    text-align: right;
    max-width: 60%;
    margin: auto;
}

.app-count {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-top: var(--spacing-8);
}

.notice-section { margin-bottom: var(--spacing-32); }
.notice-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-large);
    padding: var(--spacing-16);
    margin-bottom: var(--spacing-16);
}
.notice-card.primary { background-color: rgba(0, 122, 255, 0.08); }
.notice-card.warning { background-color: rgba(255, 59, 48, 0.08); }

.notice-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--apple-blue);
    margin-bottom: var(--spacing-8);
}
.notice-card.warning .notice-title { color: var(--apple-red); }

.notice-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.category-section { margin-bottom: var(--spacing-24); position: relative; }
.category-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--spacing-4) 0;
    margin: 0 -16px;
    padding: 0 16px;
}
.category-scroll::-webkit-scrollbar { display: none; }

.category-tabs { display: inline-flex; gap: var(--spacing-8); }
.category-tab {
    padding: var(--spacing-8) var(--spacing-16);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s var(--timing-function);
    background-color: var(--bg-secondary);
}
.category-tab.active {
    background-color: var(--apple-blue);
    color: white;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-16);
}

.app-card {
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-large);
    overflow: hidden;
    transition: all 0.3s var(--timing-function);
    box-shadow: var(--shadow-small);
    border: 1px solid var(--separator);
}
.app-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.app-header {
    display: flex;
    align-items: center;
    padding: var(--spacing-16);
    border-bottom: 1px solid var(--separator);
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-medium);
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-right: var(--spacing-16);
}

.app-title-area { flex: 1; min-width: 0; }

.app-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: var(--spacing-4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

.app-meta,
.app-meta2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    font-size: 13px;
    color: var(--text-tertiary);
}
.app-meta { flex-wrap: wrap; }
.app-meta2 {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.get-button {
    min-width: 70px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    color: var(--apple-blue);
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--timing-function);
    margin-left: var(--spacing-16);
}
.get-button:hover { background-color: rgba(0, 122, 255, 0.1); }

.app-body { padding: var(--spacing-16); }
.app-description {
    font-size: 15px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

.loading-indicator {
    text-align: center;
    padding: var(--spacing-32) 0;
    color: var(--text-tertiary);
    font-size: 17px;
    display: none;
}

.no-results {
    text-align: center;
    padding: var(--spacing-48) var(--spacing-24);
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-large);
    border: 1px solid var(--separator);
}
.no-results-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: var(--spacing-8);
    color: var(--text-primary);
}
.no-results-text { font-size: 17px; color: var(--text-tertiary); }

.grid-full-width { grid-column: 1 / -1; width: 100%; }

.no-more-apps { margin: var(--spacing-32) 0; text-align: center; }
.no-more-apps .no-results {
    background-color: transparent;
    border: none;
    padding: var(--spacing-16);
}
.no-more-apps .no-results-text {
    color: var(--text-tertiary);
    font-size: 15px;
    position: relative;
    display: inline-block;
    padding: 0 var(--spacing-16);
}
.no-more-apps .no-results-text::before,
.no-more-apps .no-results-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--separator);
}
.no-more-apps .no-results-text::before { left: -40px; }
.no-more-apps .no-results-text::after { right: -40px; }

.footer {
    padding: var(--spacing-32) 0;
    border-top: 1px solid var(--separator);
    text-align: center;
    color: var(--text-tertiary);
    font-size: 12px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-16);
    margin-bottom: var(--spacing-16);
}
.footer-link { color: var(--apple-blue); text-decoration: none; }
.footer-link:hover { text-decoration: underline; }
.copyright { color: var(--text-quaternary); }

.stats-container {
    margin: var(--spacing-8) 0;
    position: relative;
    overflow: hidden;
}
.stats-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.stat-card {
    flex: 1;
    position: relative;
    padding: var(--spacing-8) var(--spacing-4);
    text-align: center;
    transition: all 0.3s var(--timing-function);
    border-radius: var(--radius-large);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--apple-blue);
    border-radius: 3px;
    transition: width 0.3s var(--timing-function);
}
.stat-card:hover::after { width: 60px; }

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    position: relative;
    display: inline-block;
}
.stat-value::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 122, 255, 0.1);
    z-index: -1;
}
.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.quick-actions {
    margin: var(--spacing-8) 0;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-12) var(--spacing-8);
    box-shadow: var(--shadow-small);
}
.quick-actions-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-8);
    color: var(--text-primary);
    display: flex;
    align-items: center;
}
.quick-actions-title::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--apple-blue);
    border-radius: 50%;
    margin-right: var(--spacing-8);
}
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: var(--spacing-8);
}
.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s var(--timing-function);
    padding: var(--spacing-4) var(--spacing-2);
    border-radius: var(--radius-large);
}
.action-button:hover {
    transform: translateY(-4px);
    background-color: rgba(0, 122, 255, 0.05);
}
.action-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--timing-function);
    border: none;
    position: relative;
}
.action-button:hover .action-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.action-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.action-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    transition: color 0.2s var(--timing-function);
}
.action-button:hover .action-label { color: var(--apple-blue); }

@media (max-width: 834px) {
    .nav-content {
        height: auto;
        padding: var(--spacing-8) 0;
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-8);
    }
    .nav-logo {
        text-align: center;
        margin-right: 0;
        margin-bottom: var(--spacing-8);
    }
    .apps-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 24px; }
    .section-header-content { max-width: 100%; text-align: center; }
    .stats-grid { flex-wrap: wrap; }
    .stat-card {
        flex: 0 0 calc(50% - var(--spacing-8));
        margin-bottom: var(--spacing-16);
    }
    .actions-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .quick-actions { padding: var(--spacing-16); }
}

@media (max-width: 428px) {
    .app-container { padding: 0 var(--spacing-12); }
    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 16px; }
    .app-header { padding: var(--spacing-12); }
    .app-icon { width: 56px; height: 56px; }
    .app-body { padding: var(--spacing-12); }
    .get-button {
        min-width: 64px;
        height: 28px;
        font-size: 13px;
    }
    .stat-card {
        flex: 0 0 calc(50% - var(--spacing-4));
        margin-bottom: var(--spacing-12);
        min-width: 0;
    }
    .stat-value { font-size: 18px; }
    .stat-label { font-size: 10px; }
    .actions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--spacing-4) !important;
    }
    .action-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
    }
    .action-label { font-size: 10px !important; }
    .quick-actions-title { font-size: 15px; }
}

@media (max-width: 360px) {
    .stats-grid { gap: var(--spacing-2); }
    .stat-card { padding: var(--spacing-4) var(--spacing-2); }
    .actions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--spacing-2) !important;
    }
    .action-icon-wrapper {
        width: 32px !important;
        height: 32px !important;
    }
    .action-label { font-size: 9px !important; }
}

.hr_gradient2 {
    width: 100%;
    margin: 0 auto;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--text-primary) 50%, transparent);
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: 10px;
}

body, div, p, span, h1, h2, h3, h4, h5, h6, a, img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}
body {
    -webkit-touch-callout: none !important;
}

.section-subtitle {
  color: #E6F7FF !important;
}

.stat-card .stat-value {
  color: #E6F7FF !important;
}
.stat-card .stat-label {
  color: rgba(230, 247, 255, 0.88) !important;
}

.app-meta,
.app-meta2 {
  color: rgba(230, 247, 255, 0.86) !important;
}
.app-description {
  color: rgba(230, 247, 255, 0.92) !important;
}

body, html, .app-name, .section-title, .action-label {
  color: #E6F7FF;
}
.actions-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .quick-actions { padding: var(--spacing-16); }
}

@media (max-width: 428px) {
    .app-container { padding: 0 var(--spacing-12); }
    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 16px; }
    .app-header { padding: var(--spacing-12); }
    .app-icon { width: 56px; height: 56px; }
    .app-body { padding: var(--spacing-12); }
    .get-button {
        min-width: 64px;
        height: 28px;
        font-size: 13px;
    }
    .stat-card {
        flex: 0 0 calc(50% - var(--spacing-4));
        margin-bottom: var(--spacing-12);
        min-width: 0;
    }
    .stat-value { font-size: 18px; }
    .stat-label { font-size: 10px; }
    .actions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--spacing-4) !important;
    }
    .action-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
    }
    .action-label { font-size: 10px !important; }
    .quick-actions-title { font-size: 15px; }
}

@media (max-width: 360px) {
    .stats-grid { gap: var(--spacing-2); }
    .stat-card { padding: var(--spacing-4) var(--spacing-2); }
    .actions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--spacing-2) !important;
    }
    .action-icon-wrapper {
        width: 32px !important;
        height: 32px !important;
    }
    .action-label { font-size: 9px !important; }
}

.hr_gradient2 {
    width: 100%;
    margin: 0 auto;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--text-primary) 50%, transparent);
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: 10px;
}

body, div, p, span, h1, h2, h3, h4, h5, h6, a, img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}
body {
    -webkit-touch-callout: none !important;
}

:root {
  --neon-1: #00eaff;
  --neon-2: #7a5cff;
  --neon-3: #00ffa3;
  --glass-bg: rgba(10, 14, 22, 0.5);
  --glass-stroke: rgba(255, 255, 255, 0.08);
  --glow-weak: 0 0 12px rgba(0, 234, 255, 0.35);
  --glow-strong: 0 0 40px rgba(122, 92, 255, 0.35);
  --text-strong: #e6f7ff;
  --text-dim: #b4c4d4;
}

body {
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(122,92,255,0.18), transparent 55%),
    radial-gradient(1400px 900px at 110% 10%, rgba(0,234,255,0.12), transparent 60%),
    linear-gradient(120deg, #0a0f1a 0%, #0b1120 50%, #0a0f1a 100%);
  color: var(--text-strong);
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 234, 255, 0.10), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(122, 92, 255, 0.10), transparent 32%),
    radial-gradient(circle at 60% 60%, rgba(0, 255, 163, 0.08), transparent 35%);
  filter: blur(40px);
  animation: bgFloat 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop stop-color='%23ffffff' stop-opacity='0.06'/%3E%3Cstop stop-color='%23ffffff' stop-opacity='0.02'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='140' height='140' fill='url(%23g)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.nav-bar {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.65), rgba(11, 17, 32, 0.35));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-stroke);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), var(--glow-weak);
  z-index: 20;
}
.nav-logo {
  background: linear-gradient(90deg, var(--neon-1), var(--neon-2), var(--neon-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(0, 234, 255, 0.25);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-search-container .search-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-stroke);
  color: var(--text-strong);
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}
.nav-search-container .search-input:focus {
  border-color: rgba(0, 234, 255, 0.45);
  box-shadow:
    0 0 0 3px rgba(0, 234, 255, 0.1),
    0 0 24px rgba(0, 234, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-inline: 6px;
  background: linear-gradient(90deg, #eafaff 0%, #bcd7ff 50%, #eafaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 30px rgba(0, 234, 255, 0.15);
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-1), var(--neon-2), transparent);
  filter: blur(0.5px);
  animation: scan 3.6s ease-in-out infinite;
}

.today-section,
.category-section,
.notice-section,
.stats-container,
.quick-actions {
  background: var(--glass-bg);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), var(--glow-weak);
}

.app-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-stroke);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  overflow: hidden;
  transform-style: preserve-3d;
}
.app-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(0,234,255,0.0), rgba(0,234,255,0.25), rgba(122,92,255,0.25), rgba(0,255,163,0.2), rgba(0,234,255,0.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderShift 6s linear infinite;
  pointer-events: none;
}
.app-card:hover {
  transform: perspective(1100px) translateY(-6px) rotateX(2.2deg) rotateY(-1.4deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 40px rgba(122,92,255,0.18);
  border-color: rgba(0, 234, 255, 0.25);
}
.app-card .app-header .app-icon {
  border-radius: 16px;
  box-shadow:
    0 8px 22px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 24px rgba(0, 234, 255, 0.18);
  transition: transform 240ms ease, filter 240ms ease;
}
.app-card:hover .app-header .app-icon {
  transform: translateZ(16px) scale(1.04);
  filter: drop-shadow(0 0 24px rgba(0,234,255,0.25));
}

.app-name {
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.app-meta, .app-meta2 {
  color: var(--text-dim);
  opacity: 0.9;
}

.category-tabs {
  gap: 8px;
}
.category-tab {
  position: relative;
  border: 1px solid var(--glass-stroke);
  color: var(--text-strong);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.category-tab:hover {
  border-color: rgba(0,234,255,0.35);
  box-shadow: 0 0 22px rgba(0,234,255,0.18);
}
.category-tab.active {
  background: linear-gradient(135deg, rgba(0,234,255,0.20), rgba(122,92,255,0.18));
  border-color: rgba(0,234,255,0.45);
  box-shadow: 0 0 28px rgba(122,92,255,0.20);
}

.action-button {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}
.action-button:hover {
  transform: translateY(-4px);
  border-color: rgba(0,234,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 34px rgba(0,234,255,0.18);
}
.action-icon-wrapper {
  position: relative;
  border-radius: 12px;
}
.action-icon-wrapper::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  background: radial-gradient(24px 24px at 50% 50%, rgba(0,234,255,0.18), transparent 55%);
  filter: blur(8px);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.action-button:hover .action-icon-wrapper::after {
  opacity: 1;
}

.quick-actions-title {
  color: #E6F7FF !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.quick-actions {
  background: rgba(16, 24, 40, 0.48) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.02) !important;
}

.get-button {
  min-width: 84px;
  height: 32px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 234, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 234, 255, 0.18), rgba(0, 234, 255, 0.08)) padding-box,
              linear-gradient(180deg, rgba(0, 234, 255, 0.45), rgba(122, 92, 255, 0.45)) border-box;
  color: #E6F7FF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 234, 255, 0.2), inset 0 0 12px rgba(0, 234, 255, 0.15);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.get-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 234, 255, 0.28), inset 0 0 18px rgba(122, 92, 255, 0.18);
  border-color: rgba(122, 92, 255, 0.55);
}
.get-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 234, 255, 0.24), inset 0 0 14px rgba(122, 92, 255, 0.22);
}

.get-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 9999;
}
.get-modal {
  width: min(90vw, 360px);
  border-radius: 16px;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(10,14,22,0.85), rgba(12,16,26,0.82));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.02);
  position: relative;
}
.get-modal-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #E6F7FF;
  text-align: center;
}
.get-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.get-modal-btn {
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #E6F7FF;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(0, 234, 255, 0.1), rgba(0, 234, 255, 0.06));
  box-shadow: 0 6px 20px rgba(0, 234, 255, 0.18);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.get-modal-btn.primary {
  border-color: rgba(122,92,255,0.45);
  background: linear-gradient(180deg, rgba(122,92,255,0.2), rgba(122,92,255,0.08));
  box-shadow: 0 8px 24px rgba(122, 92, 255, 0.22);
}
.get-modal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 234, 255, 0.24);
}
.get-modal-btn.primary:hover {
  box-shadow: 0 12px 30px rgba(122, 92, 255, 0.28);
}
.get-modal-tip {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(230, 247, 255, 0.75);
}
.get-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #E6F7FF;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.get-modal-close:hover { background: rgba(255,255,255,0.08); }

.notice-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}

.footer {
  color: var(--text-dim);
  border-top: 1px solid var(--glass-stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  box-shadow: inset 0 12px 40px rgba(255,255,255,0.02);
}

* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.apps-grid {
  will-change: transform, filter;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@keyframes bgFloat {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.03); }
}
@keyframes borderShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes scan {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}

.get-modal-backdrop {
  display: none !important;
}
.get-modal-backdrop[hidden] {
  display: none !important;
}
.get-modal-backdrop:not([hidden]) {
  display: grid !important;
}