:root {
    --nav-height: clamp(3.75rem, 6.2vh, 5.625rem);
    --cream: #fbf7ee;
    --cream-deep: #f2eadc;
    --paper: rgba(255, 253, 248, 0.92);
    --green: #164431;
    --green-soft: #2d654e;
    --gold: #c99a43;
    --gold-soft: #ead3a4;
    --ink: #25302b;
    --muted: #7e8179;
    --line: rgba(194, 151, 78, 0.22);
    --shadow: 0 1.2rem 3rem rgba(74, 53, 25, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.logo1 {
    position: relative;
    padding-left: 100px;
    float: left;
    z-index: 10;
    top: -15px;
}

.logo1-frame img {
    height: 20vh;
    width: auto;
    max-height: 80px;
    min-height: 35px;
    display: block;
    transition: transform 0.3s ease;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--nav-height);
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.navbar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1%;
    position: relative;
    z-index: 1;
}

.navbar .nav-content .nav-links {
    float: left;
    padding: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0 12px;
}

.nav-links a {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 0.8vw, 22px);
    font-weight: 700;
    white-space: nowrap;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    height: clamp(32px, 3.2vh, 45px);
    width: clamp(200px, 25vw, 600px);
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.nav-content .search-container {
    margin-left: 5px;
}

.search-container:hover,
.search-container:focus-within {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.search-container:focus-within {
    width: clamp(250px, 20vw, 700px);
}

.search-box {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: clamp(12px, 0.5vw, 16px);
    padding-right: 10px;
}

.search-box:focus {
    width: 50px;
}

.search-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    width: clamp(18px, 1.5vw, 24px);
    height: clamp(18px, 1.5vw, 24px);
    background-image: url('https://cdn-icons-png.flaticon.com/512/149/149852.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.search-btn:hover {
    transform: scale(1.1);
}

.review-page {
    min-height: 100vh;
    padding-top: var(--nav-height);
    background:
        linear-gradient(180deg, rgba(251, 247, 238, 0.94), rgba(247, 241, 230, 0.98)),
        radial-gradient(circle at 18% 8%, rgba(216, 189, 128, 0.18), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(45, 101, 78, 0.08), transparent 28%);
}

.review-hero {
    min-height: clamp(10rem, 15vw, 13rem);
    display: grid;
    grid-template-columns: minmax(22rem, 0.9fr) minmax(34rem, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 6rem);
    padding: clamp(1.1rem, 1.8vw, 2rem) clamp(4rem, 7vw, 8rem);
    background:
        linear-gradient(90deg, rgba(251, 247, 238, 0.98) 0%, rgba(251, 247, 238, 0.88) 48%, rgba(251, 247, 238, 0.56) 100%),
        url("../images/all-goodreview-video-teacher.webp") right center / auto 100% no-repeat;
    border-bottom: 0.0625rem solid rgba(190, 151, 86, 0.18);
}

.hero-copy {
    min-width: 0;
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    --title-text-offset: clamp(2.15rem, 2.9vw, 3.65rem);
}

.hero-title-text {
    display: grid;
    justify-items: start;
}

.hero-laurel {
    width: clamp(1.8rem, 2.4vw, 3rem);
    aspect-ratio: 1 / 2;
    display: inline-block;
    background: url("../images/all-goodreview-video-mai-left.webp") center / contain no-repeat;
    flex: 0 0 auto;
}

.hero-laurel-right {
    transform: scaleX(-1);
}

.hero-copy h1 {
    margin: 0;
    color: var(--green);
    font-size: clamp(3.35rem, 3.85vw, 4.8rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-copy h2 {
    margin: clamp(0.45rem, 0.65vw, 0.8rem) 0 0;
    padding-left: 10%;
    color: #30362f;
    font-size: clamp(0.9rem, 1vw, 1.18rem);
    line-height: 1.25;
    font-weight: 700;
}

.hero-copy p {
    display: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.9rem);
}

.hero-stat {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "icon label"
        "value value"
        "desc desc";
    align-items: center;
    justify-content: center;
    justify-items: center;
    column-gap: clamp(0.28rem, 0.5vw, 0.65rem);
    row-gap: clamp(0.32rem, 0.55vw, 0.75rem);
    min-width: 0;
    padding: 0 clamp(0.9rem, 1.6vw, 2rem);
    text-align: center;
}

.hero-stat + .hero-stat {
    border-left: 0.0625rem solid rgba(190, 151, 86, 0.28);
}

.hero-stat i {
    grid-area: icon;
    color: var(--green-soft);
    font-size: clamp(0.9rem, 1vw, 1.2rem);
}

.hero-stat span {
    grid-area: label;
    color: rgba(37, 48, 43, 0.78);
    font-size: clamp(0.74rem, 0.82vw, 0.95rem);
    font-weight: 800;
    white-space: nowrap;
}

.hero-stat strong {
    grid-area: value;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 2.5vw, 3rem);
    line-height: 1;
    white-space: nowrap;
}

.hero-stat small {
    grid-area: desc;
    display: block;
    color: rgba(69, 74, 67, 0.64);
    font-size: clamp(0.66rem, 0.72vw, 0.82rem);
    line-height: 1.35;
    white-space: nowrap;
}

.review-board {
    width: 95vw;
    margin: clamp(0.7rem, 1vw, 1.15rem) auto 0;
    padding: clamp(0.8rem, 1.25vw, 1.5rem);
    border: 0.0625rem solid rgba(190, 151, 86, 0.2);
    border-radius: clamp(1rem, 1.2vw, 1.5rem);
    background: rgba(255, 253, 248, 0.9);
    box-shadow: var(--shadow);
}

.review-mode-tabs {
    width: fit-content;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0.25rem;
    border: 0.0625rem solid rgba(190, 151, 86, 0.25);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0.45rem 1.2rem rgba(83, 61, 27, 0.08);
}

.mode-tab,
.type-tab,
.subject-chip,
.pagination button,
.sort-select {
    font: inherit;
}

.mode-tab,
.type-tab,
.subject-chip,
.pagination button {
    border: 0.0625rem solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.mode-tab {
    min-width: clamp(7rem, 8vw, 9rem);
    padding: clamp(0.6rem, 0.8vw, 0.9rem) clamp(1rem, 1.2vw, 1.4rem);
    border-radius: 0.45rem;
    background: transparent;
    color: rgba(37, 48, 43, 0.72);
    font-size: clamp(0.95rem, 1vw, 1.18rem);
    font-weight: 800;
}

.mode-tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-soft));
    box-shadow: inset 0 -0.16rem 0 rgba(0, 0, 0, 0.18);
}

.control-panel {
    display: grid;
    gap: clamp(0.85rem, 1.2vw, 1.4rem);
    margin-top: clamp(0.8rem, 1.2vw, 1.4rem);
    padding-top: clamp(0.8rem, 1.2vw, 1.4rem);
    border-top: 0.0625rem solid rgba(190, 151, 86, 0.16);
}

.search-row {
    display: grid;
    grid-template-columns: minmax(18rem, 0.82fr) minmax(30rem, 1.25fr) minmax(8rem, 0.28fr);
    gap: clamp(0.8rem, 1.1vw, 1.4rem);
    align-items: center;
}

.case-search {
    height: clamp(2.6rem, 3vw, 3.4rem);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 clamp(0.85rem, 1vw, 1.2rem);
    border: 0.0625rem solid rgba(190, 151, 86, 0.23);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.82);
}

.case-search i {
    color: rgba(37, 48, 43, 0.55);
}

.case-search input {
    flex: 1;
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: clamp(0.85rem, 0.95vw, 1.05rem);
}

.type-tabs,
.subject-row {
    display: flex;
    align-items: center;
    gap: clamp(0.55rem, 0.8vw, 0.9rem);
    overflow-x: auto;
    scrollbar-width: none;
}

.type-tabs::-webkit-scrollbar,
.subject-row::-webkit-scrollbar {
    display: none;
}

.type-tab,
.subject-chip {
    min-width: clamp(5rem, 5vw, 6.5rem);
    padding: clamp(0.55rem, 0.7vw, 0.85rem) clamp(0.8rem, 1vw, 1.2rem);
    border-color: rgba(190, 151, 86, 0.18);
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.78);
    color: rgba(37, 48, 43, 0.72);
    font-size: clamp(0.85rem, 0.95vw, 1.08rem);
    font-weight: 800;
}

.type-tab.active,
.subject-chip.active {
    color: #fff;
    border-color: rgba(22, 68, 49, 0.22);
    background: linear-gradient(135deg, var(--green), var(--green-soft));
}

.sort-select {
    width: 100%;
    height: clamp(2.6rem, 3vw, 3.4rem);
    padding: 0 clamp(0.8rem, 1vw, 1rem);
    border: 0.0625rem solid rgba(190, 151, 86, 0.24);
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.82);
    color: rgba(37, 48, 43, 0.78);
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    font-weight: 800;
}

.video-layout {
    display: block;
    margin-top: clamp(0.85rem, 1.3vw, 1.45rem);
}

.video-layout[hidden],
.screenshot-placeholder[hidden] {
    display: none !important;
}

.review-card,
.screenshot-card {
    overflow: hidden;
    border: 0.0625rem solid rgba(190, 151, 86, 0.22);
    border-radius: 0.55rem;
    background: rgba(255, 254, 250, 0.96);
    box-shadow: 0 0.7rem 1.8rem rgba(83, 61, 27, 0.08);
}

.video-thumb,
.screenshot-thumb {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #e9e1d4;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.video-thumb img,
.screenshot-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-thumb:hover img,
.screenshot-thumb:hover img {
    transform: scale(1.035);
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(2rem, 2.9vw, 3.2rem);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    transform: translate(-50%, -50%);
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.24);
}

.play-mark i {
    transform: translateX(0.08em);
    font-size: clamp(0.85rem, 1vw, 1.15rem);
}

.duration {
    position: absolute;
    right: 0.55rem;
    bottom: 0.55rem;
    padding: 0.18rem 0.4rem;
    border-radius: 0.3rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.62);
    font-size: clamp(0.72rem, 0.75vw, 0.88rem);
    font-weight: 800;
}

.review-card-body,
.screenshot-card-body {
    padding: clamp(0.7rem, 0.95vw, 1.05rem);
}

.person-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.7rem, 1vw, 1.2rem);
    margin-top: clamp(0.85rem, 1.2vw, 1.4rem);
}

.person-row h3 {
    margin: 0 0 0.25rem;
    color: var(--ink);
    font-size: clamp(1.15rem, 1.4vw, 1.75rem);
}

.person-row span {
    color: rgba(69, 74, 67, 0.72);
    font-size: clamp(0.8rem, 0.9vw, 1rem);
}

.type-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.2rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999rem;
    color: #fff !important;
    background: var(--green-soft);
    font-size: clamp(0.72rem, 0.78vw, 0.92rem) !important;
    font-weight: 900;
}

.thumb-type {
    position: absolute;
    top: clamp(0.45rem, 0.65vw, 0.7rem);
    right: clamp(0.45rem, 0.65vw, 0.7rem);
    z-index: 2;
    min-width: auto;
    padding: 0.28rem 0.62rem;
    border-radius: 999rem;
    box-shadow: 0 0.35rem 0.9rem rgba(83, 61, 27, 0.16);
}

.type-pill.activity {
    background: linear-gradient(135deg, #c99035, #d7b061);
}

.type-pill.offline {
    background: linear-gradient(135deg, var(--green), var(--green-soft));
}

.card-meta {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.8vw, 0.9rem);
    margin-top: clamp(0.45rem, 0.65vw, 0.75rem);
    color: rgba(69, 74, 67, 0.62);
    font-size: clamp(0.75rem, 0.82vw, 0.92rem);
}

.stars {
    margin-left: auto;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.review-grid,
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.25vw, 1.45rem) clamp(0.8rem, 1vw, 1.2rem);
}

.review-card h3,
.screenshot-card h3 {
    margin: 0;
    color: rgba(37, 48, 43, 0.92);
    font-size: clamp(0.9rem, 0.98vw, 1.12rem);
    line-height: 1.45;
    font-weight: 900;
}

.review-card p {
    display: none;
}

.screenshot-tag {
    position: absolute;
    left: clamp(0.45rem, 0.65vw, 0.7rem);
    top: clamp(0.45rem, 0.65vw, 0.7rem);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.62rem;
    border-radius: 0.35rem;
    color: #fff;
    background: linear-gradient(135deg, #b98943, #d0a35a);
    font-size: clamp(0.72rem, 0.78vw, 0.92rem);
    font-weight: 900;
    box-shadow: 0 0.35rem 0.9rem rgba(83, 61, 27, 0.14);
}

.person-row.compact {
    margin-top: clamp(0.55rem, 0.8vw, 0.9rem);
}

.review-footer {
    display: grid;
    grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
    align-items: center;
    gap: clamp(1rem, 1.5vw, 2rem);
    margin-top: clamp(0.9rem, 1.25vw, 1.45rem);
    color: rgba(69, 74, 67, 0.65);
    font-size: clamp(0.82rem, 0.9vw, 1rem);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.pagination button {
    min-width: 2.2rem;
    height: 2.2rem;
    border-color: rgba(190, 151, 86, 0.24);
    border-radius: 0.4rem;
    color: rgba(37, 48, 43, 0.75);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.pagination button.active {
    color: #fff;
    background: var(--gold);
}

.pagination button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ellipsis {
    color: rgba(69, 74, 67, 0.48);
}

.page-size {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-size select {
    height: 2.2rem;
    border: 0.0625rem solid rgba(190, 151, 86, 0.24);
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(37, 48, 43, 0.72);
}

.empty-state,
.screenshot-placeholder {
    display: none;
}

.screenshot-placeholder:not([hidden]) {
    display: block;
    margin-top: clamp(0.85rem, 1.3vw, 1.45rem);
}

.trust-strip {
    width: 95vw;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.2vw, 1.4rem);
    margin: clamp(0.7rem, 1vw, 1.15rem) auto clamp(1rem, 1.8vw, 2rem);
    padding: clamp(0.65rem, 1vw, 1.05rem);
    border: 0.0625rem solid rgba(190, 151, 86, 0.18);
    border-radius: 0.85rem;
    background: rgba(255, 253, 248, 0.74);
}

.trust-strip article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.45rem, 0.8vw, 0.9rem);
}

.trust-strip i {
    color: #8b6a2b;
    font-size: clamp(1.25rem, 1.55vw, 1.8rem);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    color: var(--green);
    font-size: clamp(0.9rem, 1vw, 1.08rem);
}

.trust-strip span {
    margin-top: 0.12rem;
    color: rgba(69, 74, 67, 0.62);
    font-size: clamp(0.68rem, 0.76vw, 0.84rem);
}

.video-overlay,
.image-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 5rem);
    background: rgba(0, 0, 0, 0.9);
}

.video-overlay.is-open,
.image-overlay.is-open {
    display: flex;
}

.video-overlay video {
    max-width: min(92vw, 70rem);
    max-height: 92vh;
    background: #000;
}

.image-overlay img {
    max-width: min(94vw, 80rem);
    max-height: 92vh;
    object-fit: contain;
    border-radius: 0.45rem;
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.38);
}

.close-video,
.close-image {
    position: absolute;
    top: clamp(3rem, 6vh, 5rem);
    right: clamp(1.5rem, 3vw, 3rem);
    z-index: 10001;
    width: clamp(2.6rem, 4vw, 3.6rem);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 207, 130, 0.52);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.45);
}

.video-open {
    overflow: hidden;
}

@media (min-width: 118rem) {
    .review-grid,
    .screenshot-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 90rem) {
    .review-hero {
        grid-template-columns: minmax(20rem, 0.78fr) minmax(31rem, 1.22fr);
        gap: clamp(1.1rem, 2.2vw, 2rem);
        padding: clamp(0.95rem, 1.45vw, 1.4rem) clamp(3rem, 5vw, 5rem);
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 3.7vw, 4.1rem);
    }

    .hero-copy h2 {
        font-size: clamp(0.78rem, 0.9vw, 1rem);
    }

    .hero-laurel {
        width: clamp(1.5rem, 2.1vw, 2.5rem);
    }

    .hero-stats {
        gap: clamp(0.5rem, 1vw, 1rem);
    }

    .hero-stat {
        padding: 0 clamp(0.45rem, 1vw, 1rem);
        row-gap: clamp(0.22rem, 0.45vw, 0.48rem);
    }

    .hero-stat i {
        font-size: clamp(0.72rem, 0.9vw, 1rem);
    }

    .hero-stat span {
        font-size: clamp(0.58rem, 0.68vw, 0.76rem);
    }

    .hero-stat strong {
        font-size: clamp(1.7rem, 2.2vw, 2.45rem);
    }

    .hero-stat small {
        font-size: clamp(0.52rem, 0.62vw, 0.68rem);
    }

    .review-grid,
    .screenshot-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 76rem) {
    .review-hero {
        grid-template-columns: 1fr;
        gap: clamp(1.6rem, 2.8vw, 3rem);
    }

    .hero-stats {
        width: min(100%, 54rem);
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .review-grid,
    .screenshot-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 68rem) {
    .review-grid,
    .screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-footer {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .page-size {
        justify-self: center;
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (orientation: landscape) and (max-width: 1024px) and (max-height: 540px) {
    :root {
        --nav-height: clamp(42px, 10vh, 52px);
    }

    .navbar {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: var(--nav-height) !important;
        padding: 0 !important;
        overflow: hidden !important;
        background-color: #111 !important;
        background-image: url("../images/良心长图手机端2.webp") !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-size: 100% 100% !important;
    }

    .navbar .navbar-bg,
    .navbar .navbar-bg > img {
        display: none !important;
    }

    .navbar .nav-content {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 3% !important;
    }

    .navbar .logo1 {
        top: 0 !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
        margin: 0 clamp(12px, 3vw, 32px) 0 0 !important;
    }

    .navbar .home-icon {
        display: none !important;
    }

    .navbar .logo1-frame img {
        width: auto !important;
        height: clamp(38px, 11vh, 58px) !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: contain !important;
        margin-left: 5%;
    }

    .navbar .nav-content .nav-links {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        float: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar .nav-links li {
        margin: 0 clamp(5px, 0.5vw, 12px) !important;
    }

    .navbar .nav-links a {
        padding: 3px 0 !important;
        font-size: clamp(12px, 1.2vw, 18px) !important;
        line-height: 1.1 !important;
    }

    .navbar .search-container,
    .navbar .nav-content .search-container {
        flex: 0 1 clamp(190px, 28vw, 330px) !important;
        width: clamp(190px, 28vw, 330px) !important;
        height: clamp(30px, 8vh, 42px) !important;
        margin: 0 5% 0 auto !important;
        padding: 0 clamp(9px, 1.4vw, 14px) !important;
        border-radius: 24px !important;
    }

    .navbar .search-box {
        width: 0 !important;
        min-width: 0 !important;
        padding: 0 clamp(6px, 1vw, 10px) 0 0 !important;
        font-size: clamp(9px, 1vw, 13px) !important;
    }

    .navbar .search-btn {
        width: clamp(18px, 2.2vw, 24px) !important;
        height: clamp(18px, 2.2vw, 24px) !important;
    }

    .review-page {
        padding-top: var(--nav-height);
    }

    .review-hero {
        min-height: clamp(7.5rem, 30vh, 9rem);
        grid-template-columns: minmax(15rem, 0.8fr) minmax(26rem, 1fr);
        gap: clamp(0.8rem, 1.4vw, 1.4rem);
        padding: clamp(0.8rem, 2vh, 1.2rem) clamp(1.2rem, 3vw, 2.2rem);
        background-size: auto 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 4.5vw, 3.4rem);
    }

    .hero-copy h2 {
        font-size: clamp(0.62rem, 1.25vw, 0.78rem);
        white-space: nowrap;
    }

    .hero-copy p {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(0.4rem, 0.8vw, 0.7rem);
    }

    .hero-stat {
        padding: 0 clamp(0.35rem, 0.8vw, 0.7rem);
    }

    .hero-stat strong {
        font-size: clamp(1.15rem, 2.55vw, 1.65rem);
    }

    .hero-stat span,
    .hero-stat small {
        font-size: clamp(0.46rem, 0.92vw, 0.62rem);
    }

    .hero-stat {
        row-gap: clamp(0.12rem, 0.35vw, 0.25rem);
    }

    .review-board {
        width: 95vw;
        margin-top: clamp(0.55rem, 1.4vh, 0.9rem);
        padding: clamp(0.75rem, 1.4vw, 1rem);
    }

    .search-row {
        grid-template-columns: minmax(12rem, 0.8fr) minmax(22rem, 1.2fr) minmax(7rem, 0.35fr);
        gap: clamp(0.5rem, 0.9vw, 0.7rem);
    }

    .type-tab,
    .subject-chip {
        min-width: auto;
        padding: clamp(0.42rem, 0.9vw, 0.58rem) clamp(0.65rem, 1.2vw, 0.85rem);
        font-size: clamp(0.68rem, 1.2vw, 0.82rem);
    }

    .review-grid,
    .screenshot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(0.7rem, 1vw, 1rem);
    }

    .review-card-body,
    .screenshot-card-body {
        padding: clamp(0.55rem, 1vw, 0.8rem);
    }

    .review-card h3,
    .screenshot-card h3 {
        font-size: clamp(0.7rem, 1.25vw, 0.9rem);
        line-height: 1.45;
    }

    .review-card p {
        font-size: clamp(0.62rem, 1.05vw, 0.76rem);
    }

    .trust-strip {
        width: 95vw;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(0.25rem, 0.8vw, 0.55rem);
        margin: clamp(0.45rem, 1.2vh, 0.75rem) auto clamp(0.55rem, 1.5vh, 0.9rem);
        padding: clamp(0.35rem, 1vh, 0.55rem);
    }

    .trust-strip article {
        gap: clamp(0.25rem, 0.7vw, 0.45rem);
    }

    .trust-strip i {
        font-size: clamp(0.9rem, 1.8vw, 1.25rem);
    }

    .trust-strip strong {
        font-size: clamp(0.72rem, 1.35vw, 0.92rem);
    }

    .trust-strip span {
        font-size: clamp(0.52rem, 1vw, 0.68rem);
        line-height: 1.2;
    }
}
