:root {

  --primary-color: hsl(201, 73%, 58%);
  --secondary-color: hsl(305, 58%, 58%);
  --bg-color: hsl(201, 7%, 96%);
  --text-color: hsl(201, 10%, 9%);
  --text-muted: hsl(201, 5%, 45%);
  --border-color: rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --nav-height: 72px;
  --max-width: 1200px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-bg: rgba(244, 245, 245, 0.8);
  --cta-text: #ffffff;
  --content-page-bg: var(--bg-color, hsl(220, 7%, 96%));
  --content-surface-bg: #ffffff;
  --content-text: var(--text-color, hsl(220, 10%, 11%));
  --content-text-muted: var(--text-muted, rgba(31, 35, 40, 0.72));
  --content-border: var(--border-color, rgba(0, 0, 0, 0.08));
  --content-accent-text: hsl(22, 78%, 38%);
}
div.j7f1e261c.yf2a5_9787 接下来，我分析了具体的要求：
    2................  **内容深度**：页面内容需要在 600/**/-900 字之间，至少包含 3 个实质性内容区块，每个区块都要提供可执行的信息、判断条件、步骤或边界说明，不能全是空泛的口号。不能简单地在结尾使用通用的 CTA。
    5................  **对齐约束**：强制要求首屏左侧锚点对齐（标题、简介、CTA 沿同一左边线排布）。可视宽度上限为 1200px，首屏阅读宽度上限为 680px。
    根据以上分析，我将页面构建为以下结构：
    *   **Hero 区块**：半屏，图片在前，必须左对齐。我决定采用左侧文案、右侧图片或者顶部图片、下方文案的组合。
    *   **核心区块 1**：Chrome 应用商店主题库（讲解兼容性、获取条件、执行步骤）。
    *   **核心区块 2**：自定义新标签页与色彩（讲解本地设置、系统深色模式跟随判断）。
    *   **核心区块 3**：重置与环境说明（讲解平台差异、重置默认外观的步骤）。
    *   **专属动作区块**：这个区块代替通用的 CTA，指引用户前往应用商店或进行本地设置，并提供下一步的技巧指引链接。
    *   **Footer**：包含 2026 版权信息等。
    在编写文案时，我重点关注了以下几点：
    *   H1 标题是"个性化你的谷歌浏览器：主题与外观设置"。
    *   描述性文本简要介绍了如何改变浏览器的色彩搭配和背景，让每一次打开新标签页都充满灵感。
    *   CTA 按钮设计：
    正文内容由以下几个部分组成：
    *   **第一部分**：应用商店主题库的获取与条件，重点介绍前提条件、支持平台和操作步骤。
    *   **第二部分**：本地新标签页的个性化定制，讲解如何自定义新标签页的背景和颜色，并提供判断条件和操作指引。
    *   **第三部分**：系统级深色模式适配与重置，讲解
    .e0pnf2w8r{
    
    --page-bg: hsl(201, 7%, 96%);
    --page-text: hsl(201, 10%, 9%);
    --page-primary: hsl(201, 73%, 58%);
    --page-primary-hover: hsl(201, 80%, 48%);
    --page-secondary: hsl(305, 58%, 58%);
    --page-surface: #ffffff;
    --page-border: hsl(201, 10%, 9%);
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --radius-sharp: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    }
div.j7f1e261c.yf2a5_9787.e0pnf2w8r *{
    box-sizing: border-box;
    }
div.j7f1e261c.yf2a5_9787.e0pnf2w8r h1, div.j7f1e261c.yf2a5_9787.e0pnf2w8r h2, div.j7f1e261c.yf2a5_9787.e0pnf2w8r h3{
    color: var(--text-color);
    margin-top: 0;
    }
div.j7f1e261c.yf2a5_9787 .b2030dc2a00{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    }
div.j7f1e261c.yf2a5_9787 .u46b7_0f{
    width: 100%;
    border-bottom: 3px solid var(--page-border);
    background-color: var(--primary-color); color: #1a1a2e;}
div.j7f1e261c.yf2a5_9787 .m1be8b6{
    width: 100%;
    height: 40vh;
    min-height: 320px;
    max-height: 500px;
    object-fit: cover;
    display: block;
    opacity: 0.95;
    }
div.j7f1e261c.yf2a5_9787 .oe78__be8{
    padding-top: inherit;
    padding-bottom: inherit;
    border-bottom: 3px solid var(--page-border);
    background-color: var(--primary-color); color: #1a1a2e;}
div.j7f1e261c.yf2a5_9787 .bada35_tsp{
    max-width: 680px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    }
div.j7f1e261c.yf2a5_9787 .s5b6c16{
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    }
div.j7f1e261c.yf2a5_9787 .n38d7d_fex{
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #333;
    }
div.j7f1e261c.yf2a5_9787 .sab02a__209{
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    }
div.j7f1e261c.yf2a5_9787 .b616a89_738{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid var(--page-border);
    border-radius: var(--radius-md); 
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s;
    cursor: pointer;
    }
div.j7f1e261c.yf2a5_9787 .ufa1d3_c7{
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 8px 8px 0px var(--page-border);
    }
div.j7f1e261c.yf2a5_9787 .ufa1d3_c7:hover{
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px var(--page-border);
    color: var(--text-color);
    }
div.j7f1e261c.yf2a5_9787 .h4c26d633{
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 8px 8px 0px var(--page-secondary);
    }
div.j7f1e261c.yf2a5_9787 .h4c26d633:hover{
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px var(--page-secondary);
    }
div.j7f1e261c.yf2a5_9787 .df3e0__b60{
    padding: inherit 0;
    border-bottom: 3px solid var(--page-border);
    }
div.j7f1e261c.yf2a5_9787 .ha2676982{
    background-color: var(--primary-color); color: #1a1a2e;}
div.j7f1e261c.yf2a5_9787 .acab1b0_ts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    }
@media (max-width: 900px) {div.j7f1e261c.yf2a5_9787 .acab1b0_ts{
    grid-template-columns: 1fr;
    gap: 3rem;
    }}
div.j7f1e261c.yf2a5_9787 .qblqgzq5b3m{
    max-width: 680px;
    }
div.j7f1e261c.yf2a5_9787 .qblqgzq5b3m h2{
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    }
div.j7f1e261c.yf2a5_9787 .qblqgzq5b3m p{
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #222;
    }
div.j7f1e261c.yf2a5_9787 .qblqgzq5b3m ul{
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    }
div.j7f1e261c.yf2a5_9787 .qblqgzq5b3m li{
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #222;
    }
div.j7f1e261c.yf2a5_9787 .u7a4b0_350{
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: color 0.2s, background-color 0.2s;
    }
div.j7f1e261c.yf2a5_9787 .u7a4b0_350:hover{
    color: var(--text-color);
    background-color: var(--primary-color);
    text-decoration-color: transparent;
    }
div.j7f1e261c.yf2a5_9787 .m6e3031c{
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 3px solid var(--page-border);
    box-shadow: 12px 12px 0px var(--page-secondary);
    }
div.j7f1e261c.yf2a5_9787 .d0e9e1_8ad1{
    background-color: var(--primary-color);
    border: 3px solid var(--page-border);
    padding: 3rem;
    box-shadow: 16px 16px 0px var(--page-border); color: #1a1a2e;}
div.j7f1e261c.yf2a5_9787 .d0e9e1_8ad1 h2{
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    }
div.j7f1e261c.yf2a5_9787 .smkrm5slk9w{
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    }
div.j7f1e261c.yf2a5_9787 .f460c_259{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    }
div.j7f1e261c.yf2a5_9787 .d5f12ae96{
    border-left: 6px solid var(--page-primary);
    padding-left: 1.5rem;
    }
div.j7f1e261c.yf2a5_9787 .d5f12ae96 h3{
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    }
div.j7f1e261c.yf2a5_9787 .d5f12ae96 p{
    font-size: 1.05rem;
    color: #444;
    margin: 0;
    }
div.j7f1e261c.yf2a5_9787 .ad03132d9{
    padding: inherit 0;
    background-color: var(--primary-color);
    color: var(--text-color);
    }
div.j7f1e261c.yf2a5_9787 .h8e5583c7{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }
div.j7f1e261c.yf2a5_9787 .h15208648{
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    }
div.j7f1e261c.yf2a5_9787 .rb3f__5238{
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
    }
div.j7f1e261c.yf2a5_9787 .ob74e9_ezuo{box-sizing:border-box;}
.nfq0hnefj1{
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding-top: 64px;
    padding-bottom: 40px;
    width: 100%; color: #1a1a2e;}
.t69445b3e14{
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    }
.ca36jzkctal{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    }
.k316e4f_f9f2{
    flex: 1 1 680px; 
    max-width: 680px;
    }
.a571598{
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    }
.mc6dac9{
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 0;
    }
.xc06d4b7_utyu{
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    }
.e6f0c_f4df{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: var(--radius-sm); 
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    }
.e6f0c_f4df:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
    }
.efaa14f_8d{
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-top: 64px;
    margin-bottom: 32px; color: #ffffff;}
.lf133d19_m2k1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    }
.tbvxmp7vs{
    flex: 0 0 auto;
    }
.x34939_hf{
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    }
.bae3fe__e8e46{
    flex: 0 0 auto;
    }
.vmgf9haq9f{
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    }
@media (max-width: 768px){.nfq0hnefj1 {
    padding-top: 48px;
    }
.ca36jzkctal {
    flex-direction: column;
    gap: 32px;
    }
.k316e4f_f9f2 {
    flex: 1 1 auto;
    width: 100%;
    }
.xc06d4b7_utyu {
    width: 100%;
    }
.e6f0c_f4df {
    width: 100%;
    }
.lf133d19_m2k1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    }}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    }
.vd90e49_euky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    justify-content: center; color: #1a1a2e;}
.x0ae378_2833{
    width: 100%;
    max-width: var(--max-width);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    }
.c4ff07d0074{
    display: flex;
    align-items: center;
    gap: 40px; 
    }
.kf384_f91{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    transition: var(--transition);
    }
.kf384_f91:hover{
    opacity: 0.8;
    }
.lzve2t6y1{
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
.b66f012e{
    display: flex;
    list-style: none;
    gap: 24px;
    }
.r921f6b{
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.925rem;
    font-weight: 500;
    transition: var(--transition);
    }
.r921f6b:hover{
    color: var(--text-color);
    }
.jhxk59h9{
    display: flex;
    align-items: center;
    gap: 16px;
    }
.u0493_4bb{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background-color: var(--primary-color);
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    }
.u0493_4bb:hover{
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px); color: #1a1a2e;}
.u0493_4bb:active{
    transform: translateY(0);
    }
.b756cc__fadf{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    }
.b756cc__fadf .p28e9d8dae5{
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition); color: #ffffff;}
@media (max-width: 1024px){.b66f012e{
    display: none; 
    }
.b756cc__fadf{
    display: flex;
    }
.c4ff07d0074{
    gap: 0;
    }}
body{
    padding-top: var(--nav-height);
    }
.r921f6b.active{color: var(--text-color);}
.pe01e__d872{box-sizing:border-box;}
.h486b15_tfk{list-style:none;}
.r921f6b.active {color: var(--text-color);}
html, body {
    margin: 0;
    padding: 0;
    }
body *, body *::before, body *::after {
    box-sizing: border-box;
    }
div.j7f1e261c img.c559__d64b {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    }
div.j7f1e261c img.c559__d64b.w7d5082ca { aspect-ratio: 16 / 9; }
div.j7f1e261c img.c559__d64b.g78e__ba93 { aspect-ratio: 16 / 10; }
div.j7f1e261c img.c559__d64b.d304__3d4c { aspect-ratio: 4 / 3; }
div.j7f1e261c img.c559__d64b.vb7393_0de7 { aspect-ratio: 1 / 1; }
div.j7f1e261c :is(div, div, div, div, ul, ol, li, figure, picture, table, form, fieldset, pre, blockquote) {
    box-sizing: border-box !important;
    min-width: 0;
    max-width: 100%;
    }
div.j7f1e261c .z4fb1c941 {
    overflow: hidden;
    box-sizing: border-box !important;
    max-width: 100%;
    padding: 0 !important;
    min-height: 0;
    }
div.j7f1e261c .z4fb1c941.w7d5082ca { aspect-ratio: 16 / 9; }
div.j7f1e261c .z4fb1c941.g78e__ba93 { aspect-ratio: 16 / 10; }
div.j7f1e261c .z4fb1c941.d304__3d4c { aspect-ratio: 4 / 3; }
div.j7f1e261c .z4fb1c941.vb7393_0de7 { aspect-ratio: 1 / 1; }
div.j7f1e261c .z4fb1c941 > img.c559__d64b,
    div.j7f1e261c .z4fb1c941 > picture > img.c559__d64b {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }
.cef551_4543 {
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
    }
.cef551_4543 > :first-child,
    .cef551_4543 > :last-child {
    width: min(1280px, 100%);
    margin-left: auto;
    margin-right: auto;
    }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    }
.vd90e49_euky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    justify-content: center; color: #1a1a2e;}
.x0ae378_2833{
    width: 100%;
    max-width: var(--max-width);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    }
.c4ff07d0074{
    display: flex;
    align-items: center;
    gap: 40px; 
    }
.kf384_f91{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    transition: var(--transition);
    }
.kf384_f91:hover{
    opacity: 0.8;
    }
.lzve2t6y1{
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    }
.b66f012e{
    display: flex;
    list-style: none;
    gap: 24px;
    }
.r921f6b{
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.925rem;
    font-weight: 500;
    transition: var(--transition);
    }
.r921f6b:hover{
    color: var(--text-color);
    }
.jhxk59h9{
    display: flex;
    align-items: center;
    gap: 16px;
    }
.u0493_4bb{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background-color: var(--primary-color);
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    }
.u0493_4bb:hover{
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px); color: #1a1a2e;}
.u0493_4bb:active{
    transform: translateY(0);
    }
.b756cc__fadf{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    }
.b756cc__fadf .p28e9d8dae5{
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition); color: #ffffff;}
@media (max-width: 1024px){.b66f012e{
    display: none; 
    }
.b756cc__fadf{
    display: flex;
    }
.c4ff07d0074{
    gap: 0;
    }}
body{
    padding-top: var(--nav-height);
    }
.r921f6b.active{color: var(--text-color);}
.pe01e__d872{box-sizing:border-box;}
.h486b15_tfk{list-style:none;}
.r921f6b.active{color: var(--text-color);}
.nfq0hnefj1{
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding-top: 64px;
    padding-bottom: 40px;
    width: 100%; color: #1a1a2e;}
.t69445b3e14{
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    }
.ca36jzkctal{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    }
.k316e4f_f9f2{
    flex: 1 1 680px; 
    max-width: 680px;
    }
.a571598{
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    }
.mc6dac9{
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 0;
    }
.xc06d4b7_utyu{
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    }
.e6f0c_f4df{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: var(--radius-sm); 
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    }
.e6f0c_f4df:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
    }
.efaa14f_8d{
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-top: 64px;
    margin-bottom: 32px; color: #ffffff;}
.lf133d19_m2k1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    }
.tbvxmp7vs{
    flex: 0 0 auto;
    }
.x34939_hf{
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    }
.bae3fe__e8e46{
    flex: 0 0 auto;
    }
.vmgf9haq9f{
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    }
@media (max-width: 768px){.nfq0hnefj1 {
    padding-top: 48px;
    }
.ca36jzkctal {
    flex-direction: column;
    gap: 32px;
    }
.k316e4f_f9f2 {
    flex: 1 1 auto;
    width: 100%;
    }
.xc06d4b7_utyu {
    width: 100%;
    }
.e6f0c_f4df {
    width: 100%;
    }
.lf133d19_m2k1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    }}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}
.vd90e49_euky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  justify-content: center; color: #1a1a2e;}
.x0ae378_2833{
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
}
.c4ff07d0074{
  display: flex;
  align-items: center;
  gap: 40px; 
}
.kf384_f91{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  transition: var(--transition);
}
.kf384_f91:hover{
  opacity: 0.8;
}
.lzve2t6y1{
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}
.b66f012e{
  display: flex;
  list-style: none;
  gap: 24px;
}
.r921f6b{
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
  transition: var(--transition);
}
.r921f6b:hover{
  color: var(--text-color);
}
.jhxk59h9{
  display: flex;
  align-items: center;
  gap: 16px;
}
.u0493_4bb{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background-color: var(--primary-color);
  color: #1a1a2e;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.u0493_4bb:hover{
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px); color: #1a1a2e;}
.u0493_4bb:active{
  transform: translateY(0);
}
.b756cc__fadf{
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.b756cc__fadf .p28e9d8dae5{
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: var(--transition); color: #ffffff;}
@media (max-width: 1024px){.b66f012e{
    display: none; 
  }
.b756cc__fadf{
    display: flex;
  }
.c4ff07d0074{
    gap: 0;
  }}
body{
  padding-top: var(--nav-height);
}
.r921f6b.active{color: var(--text-color);}
.pe01e__d872{box-sizing:border-box;}
.h486b15_tfk{list-style:none;}
.r921f6b.active{color: var(--text-color);}
.f8140cdaa19{
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding-top: 64px;
    padding-bottom: 40px;
    width: 100%; color: #1a1a2e;}
.t73257074{
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
}
.pb1470cb0{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}
.ibea__bc8a{
    flex: 1 1 680px; 
    max-width: 680px;
}
.l8948e4859e{
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.sbd118a53bc{
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 0;
}
.x1d5a027669{
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
}
.c3acbfb8c8b{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: var(--radius-sm); 
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}
.c3acbfb8c8b:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}
.u4a78545564{
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-top: 64px;
    margin-bottom: 32px; color: #ffffff;}
.naed69_c20e{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.y8bb__dbbe{
    flex: 0 0 auto;
}
.hba1973b7{
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}
.d6dd__175c{
    flex: 0 0 auto;
}
.ud71__9377{
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}
@media (max-width: 768px){.f8140cdaa19 {
        padding-top: 48px;
    }
.pb1470cb0 {
        flex-direction: column;
        gap: 32px;
    }
.ibea__bc8a {
        flex: 1 1 auto;
        width: 100%;
    }
.x1d5a027669 {
        width: 100%;
    }
.c3acbfb8c8b {
        width: 100%;
    }
.naed69_c20e {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }}
.n8135f_aa78{box-sizing:border-box;}
.g526d4_6b79{box-sizing:border-box;}
.o82ed0_fb04{box-sizing:border-box;}
.c01b65_2b7f{box-sizing:border-box;}
.y538424ec55{display:block;max-width:100%;height:auto;}
@media (max-width: 768px) {.lf133d19_m2k1 { flex-direction: column !important; align-items: flex-start !important; justify-content: flex-start !important; gap: 14px !important; padding: 20px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }}