body.g3-static-page {
    margin: 0;
    background: #100b12;
    color: #f8efe9;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    line-height: 1.75;
    letter-spacing: 0;
}
.g3-static-page a { color: #f7c9b0; text-decoration: none; }
.g3-static-page a:hover { color: #fff; }
.g3-static-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
.g3-static-nav {
    background: #20252a;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.g3-static-nav .container {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}
.g3-static-nav .logo {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    background: linear-gradient(180deg, #dff3ff, #f4eadc);
    color: #1a252e;
    font-weight: 800;
    white-space: nowrap;
}
.g3-static-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}
.g3-static-nav .nav-links a {
    color: #cbd2d8;
    font-size: 14px;
    font-weight: 500;
}
.g3-static-nav .nav-links a:hover { color: #fff; }
.g3-static-page main.container,
.g3-static-page section.container {
    padding: 34px 0 70px;
}
.g3-static-page h1 {
    margin: 34px auto 30px;
    max-width: 980px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.16;
    text-align: center;
    font-weight: 900;
}
.g3-static-page h2 {
    margin: 0 0 20px;
    padding-left: 14px;
    border-left: 4px solid #f7c9b0;
    color: #f7c9b0;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900;
}
.g3-static-page h3,
.g3-static-page h4 { color: #fff; font-weight: 800; }
.g3-static-page p { color: #e4d0c8; }
.g3-static-page .card {
    margin: 0 0 30px;
    padding: clamp(22px, 4vw, 40px);
    background: linear-gradient(180deg, rgba(43,31,45,.96), rgba(27,20,29,.96));
    border: 1px solid rgba(247,201,176,.22);
    border-radius: 22px;
    box-shadow: 0 20px 54px rgba(0,0,0,.28);
}
.g3-static-page .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffc7a5, #f0a66e);
    color: #241316;
    font-weight: 900;
}
.g3-static-page .img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}
.g3-static-page .img-grid img,
.g3-static-page .img-box img,
.g3-static-page .news-card img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(247,201,176,.18);
    object-fit: cover;
}
.g3-static-page .img-grid img { aspect-ratio: 4 / 3; }
.g3-static-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    text-align: center;
}
.g3-static-page .stat-num {
    color: #ffc7a5;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
}
.g3-static-page .stat-label {
    margin-top: 8px;
    color: #d7bfb5;
    font-size: 14px;
}
.g3-static-page .flex-row {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 28px;
    align-items: center;
}
.g3-static-page .news-grid,
.g3-static-page .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.g3-static-page .news-card,
.g3-static-page .news-item,
.g3-static-page .review-card,
.g3-static-page .faq-item {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,210,190,.045);
    border: 1px solid rgba(247,201,176,.14);
}
.g3-static-page .date,
.g3-static-page .author {
    color: #ffc7a5;
    font-size: 13px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .g3-static-nav .container { align-items: flex-start; flex-direction: column; padding: 14px 0; }
    .g3-static-page .flex-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .g3-static-page .container { width: min(100% - 28px, 1180px); }
    .g3-static-nav .nav-links { gap: 12px; }
    .g3-static-page .card { border-radius: 16px; padding: 20px; }
    .g3-static-page .btn-cta { width: 100%; margin: 8px 0 0 !important; }
}
