﻿:root {
    --primary: #ffb612; /* 主黄色 */
    --secondary: #ff2a14; /* 主红色 */
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --gray-900: #111111;
    --gray-800: #222222;
    --gray-400: #999999;
    --gray-300: #cccccc;
    --gray-500: #777777;
}

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

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* 容器样式 */
.fo-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 自定义工具类 */
.fo-text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fo-bg-gradient-freeok {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.fo-card-hover {
    transition: all 0.3s ease;
}

.fo-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.fo-content-auto {
    content-visibility: auto;
}

/* 响应式工具类 - 移动端默认样式 */
.fo-hidden-pc {
    display: block;
}

.fo-hidden-mobile {
    display: none;
}

/* 导航栏样式 */
#lb_navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1rem 0;
}

.fo-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fo-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fo-logo img {
    height: 2.5rem;
    width: auto;
}

.fo-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.fo-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.fo-nav-links a {
    color: var(--light);
    font-size: 13px;
    transition: color 0.3s ease;
}

.fo-nav-links a:hover {
    color: var(--primary);
}

.fo-search-box {
    color: var(--light);
    font-size: 1.5rem;
}

/* 移动端菜单 */
#lb_mobileMenu {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 1rem 0;
}

#lb_mobileMenu.fo-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.fo-mobile-menu-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fo-mobile-menu-container a {
    color: var(--light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
    transition: color 0.3s ease;
}

.fo-mobile-menu-container a:last-child {
    border-bottom: none;
}

.fo-mobile-menu-container a:hover {
    color: var(--primary);
}
heder,
footer,
section {
    position: relative;
    overflow: hidden;
    z-index: 10;
}
/* 首屏区域样式 (原英雄区) */
.fo-hero-banner {
    padding: 8rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    overflow: hidden;
}
.fo-hero-banner .fo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: .1;
    filter: blur(6px);
}
.fo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
}

.fo-hero-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 182, 18, 0.05);
    filter: blur(72px);
    transform: translateX(-25%);
}

.fo-hero-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33.333%;
    height: 50%;
    background-color: rgba(255, 42, 20, 0.05);
    filter: blur(72px);
    transform: translateX(25%);
}

.fo-hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.fo-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 182, 18, 0.1);
    border: 1px solid rgba(255, 182, 18, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.fo-hero-badge-text {
    color: var(--primary);
    font-weight: 500;
}

.fo-hero-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fo-hero-title-highlight {
    color: var(--primary);
    position: relative;
}

.fo-hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: rgba(255, 182, 18, 0.3);
    border-radius: 9999px;
}

.fo-hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
}
.fo-hero-description p {
    line-height: 2;
}

.fo-hero-break {
    display: none;
}

.fo-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.fo-btn-primary {
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
}

.fo-btn-primary:hover {
    background-color: rgba(255, 182, 18, 0.9);
    box-shadow: 0 20px 25px -5px rgba(255, 182, 18, 0.2), 0 8px 10px -6px rgba(255, 182, 18, 0.2);
    transform: translateY(-0.25rem);
}

.fo-btn-outline {
    width: 100%;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.fo-btn-outline:hover {
    background-color: rgba(255, 182, 18, 0.1);
    transform: translateY(-0.25rem);
}

/* 通用区块样式 */
.fo-section {
    padding: 4rem 0;
}

.fo-section-dark {
    background-color: var(--dark);
}

.fo-section-gray-900 {
    background-color: var(--gray-900);
}

.fo-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fo-section-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.fo-section-title-highlight {
    color: var(--primary);
}

.fo-section-description {
    color: var(--gray-400);
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 核心功能样式 */
.fo-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.fo-feature-card {
    background-color: var(--gray-900);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.fo-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 182, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.fo-feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.fo-feature-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.fo-feature-description {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* 剧集分类样式 */
.fo-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fo-category-card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fo-category-image {
    width: 100%;
    height: 9rem;
    object-fit: cover;
}

.fo-category-name {
    background-color: var(--dark);
    padding: 0.75rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* 用户评价样式 */
.fo-reviews-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

.fo-review-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.5rem;
    background-color: var(--gray-900);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    break-inside: avoid;
}

.fo-review-text {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* 下载区域样式 */
.fo-download-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4rem 0;
    text-align: center;
}

.fo-download-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.fo-download-description {
    color: rgba(26, 26, 26, 0.8);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.fo-download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0;
}

.fo-download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--dark);
    color: var(--light);
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
    width: auto;
    min-width: 220px;
}

.fo-download-btn:hover {
    background-color: rgba(26, 26, 26, 0.9);
}

.fo-download-icon {
    font-size: 2rem;
}

.fo-download-text {
    text-align: left;
}

.fo-download-subtext {
    font-size: 0.75rem;
}

.fo-download-platform {
    font-weight: bold;
    font-size: 1rem;
}

.fo-pl-time {
    font-size: 13px;
    display: block;
    margin-top: 15px;
    opacity: .4;
}

/* 简化的页脚样式 - 只保留footer-bottom */
footer {
    background-color: var(--dark);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-800);
}

.fo-footer-bottom {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    padding: 0 1rem;
}

/* ======================
   集中的PC端样式 (760px+)
   ====================== */
@media (min-width: 760px) {
    /* 容器样式 */
    .fo-container {
        max-width: 1200px;
        padding: 0 1rem;
    }
    .fo-nav-links {
        display: flex;
    }
    
    /* 响应式工具类 */
    .fo-hidden-pc {
        display: none;
    }
    
    .fo-hidden-mobile {
        display: flex;
    }
    
    /* 首屏区域样式 (原英雄区) */
    .fo-hero-banner {
        padding: 12rem 0 9rem;
    }
    
    .fo-hero-content {
        max-width: 54rem;
    }
    
    .fo-hero-description {
        font-size: 1.5rem;
    }
    
    .fo-hero-break {
        display: block;
    }
    
    .fo-hero-buttons {
        margin-bottom: 4rem;
    }
    
    .fo-btn-primary {
        width: auto;
    }
    
    .fo-btn-outline {
        width: auto;
    }
    
    /* 通用区块样式 */
    .fo-section {
        padding: 5rem 0;
    }
    
    .fo-section-header {
        margin-bottom: 4rem;
    }
    
    .fo-hero-description p {
        line-height: 3;
    }
    /* 核心功能样式 */
    .fo-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .fo-feature-card {
        padding: 2rem;
    }
    
    .fo-feature-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .fo-feature-icon i {
        font-size: 2rem;
    }
    
    .fo-feature-title {
        font-size: 1.25rem;
    }
    
    .fo-feature-description {
        font-size: 1rem;
    }
    
    /* 剧集分类样式 */
    .fo-categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .fo-category-image {
        height: 17.5rem;
    }
    
    .fo-category-name {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* 用户评价样式 */
    .fo-reviews-grid {
        column-count: 3;
        column-gap: 2rem;
    }
    
    .fo-review-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .fo-review-text {
        font-size: 1rem;
    }
    
    /* 下载区域样式 */
    .fo-download-section {
        padding: 5rem 0;
    }
    
    .fo-download-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .fo-download-buttons {
        gap: 2rem;
    }
    
    .fo-download-btn {
    }
    
    .fo-download-icon {
        font-size: 2.5rem;
    }
    
    .fo-download-platform {
        font-size: 1.125rem;
    }
    
}

/* Red and white refresh */
:root {
    --primary: #fd002a;
    --secondary: #fd002a;
    --dark: #ffffff;
    --light: #17171b;
    --gray-900: #fff7f8;
    --gray-800: #f1d7dc;
    --gray-400: #6f727b;
    --gray-300: #4b4d55;
    --gray-500: #8a8d96;
}

body {
    background:
        radial-gradient(circle at 18% 8%, rgba(253, 0, 42, .08), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fff7f8 48%, #fff 100%);
    color: #17171b;
}

#lb_navbar {
    padding: 0;
    background:
        linear-gradient(90deg, rgba(253, 0, 42, .05), transparent 34%, rgba(253, 0, 42, .04)),
        rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(253, 0, 42, .1);
    box-shadow: 0 16px 42px rgba(24, 24, 28, .08);
    backdrop-filter: blur(14px);
}

.fo-navbar-container {
    min-height: 84px;
}

.fo-logo img {
    width: 132px;
    height: auto;
}

.fo-logo-text,
.fo-nav-links a:hover,
.fo-hero-badge-text,
.fo-hero-title-highlight,
.fo-section-title-highlight,
.fo-feature-icon i {
    color: #fd002a;
}

.fo-nav-links a,
.fo-search-box,
.fo-hero-title,
.fo-feature-title,
.fo-category-name,
.fo-section-title {
    color: #17171b;
}

.fo-nav-links {
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(253, 0, 42, .12);
    border-radius: 999px;
    background: rgba(255, 244, 246, .86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.fo-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.fo-nav-links a:first-child {
    background: #fd002a;
    color: #fff;
    box-shadow: 0 10px 22px rgba(253, 0, 42, .22);
}

.fo-nav-links a:not(:first-child):hover {
    background: #fff;
    box-shadow: 0 8px 18px rgba(253, 0, 42, .09);
    transform: translateY(-1px);
}

.fo-search-box {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 176px;
    height: 46px;
    padding: 0 8px 0 15px;
    border: 1px solid rgba(253, 0, 42, .16);
    border-radius: 999px;
    background: #fff;
    color: #fd002a;
    box-shadow: inset 0 0 0 1px rgba(253, 0, 42, .04), 0 10px 24px rgba(253, 0, 42, .1);
}

.fo-search-box input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #17171b;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
}

.fo-search-box input::placeholder {
    color: #8a8d96;
    opacity: 1;
}

.fo-search-box button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #fd002a;
    color: #fff;
    cursor: pointer;
}

.fo-search-status {
    position: absolute;
    right: 1rem;
    top: calc(100% + 8px);
    z-index: 60;
    max-width: min(320px, calc(100vw - 2rem));
    padding: 8px 12px;
    border: 1px solid rgba(253, 0, 42, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #fd002a;
    box-shadow: 0 12px 30px rgba(24, 24, 28, .12);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.fo-search-status.fo-show {
    opacity: 1;
    transform: translateY(0);
}

.fo-search-hit {
    outline: 3px solid rgba(253, 0, 42, .32);
    outline-offset: 6px;
    box-shadow: 0 24px 58px rgba(253, 0, 42, .16) !important;
}

#lb_mobileMenu {
    background-color: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #f1d7dc;
}

.fo-mobile-menu-container a {
    color: #17171b;
    border-bottom-color: #f1d7dc;
}

.fo-hero-banner {
    padding-top: 10rem;
    background: transparent;
}

.fo-hero-banner .fo-bg {
    opacity: .06;
    filter: grayscale(1);
}

.fo-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .72));
}

.fo-hero-decoration-1,
.fo-hero-decoration-2 {
    background-color: rgba(253, 0, 42, .08);
}

.fo-hero-badge {
    background-color: #fff4f6;
    border: 1px solid rgba(253, 0, 42, .18);
    border-radius: 999px;
}

.fo-hero-title {
    text-shadow: none;
}

.fo-hero-title-highlight::after {
    background-color: rgba(253, 0, 42, .12);
}

.fo-hero-description,
.fo-section-description,
.fo-feature-description,
.fo-review-text,
.fo-footer-bottom {
    color: #6f727b;
}

.fo-btn-primary,
.fo-bg-gradient-freeok {
    background: #fd002a;
    color: #fff;
}

.fo-btn-primary {
    border: 1px solid #fd002a;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(253, 0, 42, .22);
}

.fo-btn-primary:hover {
    background: #e60026;
    box-shadow: 0 22px 45px rgba(253, 0, 42, .24);
}

.fo-btn-outline {
    border: 1px solid #fd002a;
    border-radius: 8px;
    color: #fd002a;
    background: #fff;
}

.fo-btn-outline:hover {
    background: #fff4f6;
}

.fo-section-dark,
.fo-section-gray-900 {
    background: transparent;
}

.fo-feature-card,
.fo-review-card,
.fo-category-card {
    border: 1px solid #f1d7dc;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(24, 24, 28, .07);
}

.fo-reviews-grid {
    column-count: 3;
    column-gap: 18px;
}

.fo-review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    width: 100%;
    margin: 0 0 18px;
    padding: 28px;
    overflow: hidden;
    vertical-align: top;
    break-inside: avoid;
}

.fo-review-card::before {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(253, 0, 42, .12);
    content: "”";
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
}

.fo-review-card::after {
    align-self: flex-start;
    order: -1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 0 11px;
    border: 1px solid rgba(253, 0, 42, .16);
    border-radius: 999px;
    background: #fff4f6;
    color: #fd002a;
    content: "真实反馈";
    font-size: .78rem;
    font-weight: 900;
}

.fo-review-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #34363d;
    font-size: .98rem;
    line-height: 1.85;
}

.fo-review-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #f1d7dc;
    color: #6f727b;
    font-size: .88rem;
    font-weight: 800;
}

.fo-review-meta span {
    color: #17171b;
}

.fo-review-meta time {
    color: #8a8d96;
    white-space: nowrap;
}

.fo-faq-grid {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.fo-faq-item {
    overflow: hidden;
    border: 1px solid #f1d7dc;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 24, 28, .06);
}

.fo-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    padding: 0 22px;
    color: #17171b;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.fo-faq-item summary::-webkit-details-marker {
    display: none;
}

.fo-faq-item summary i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff4f6;
    color: #fd002a;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.fo-faq-item[open] summary i {
    background: #fd002a;
    color: #fff;
    transform: rotate(45deg);
}

.fo-faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: #6f727b;
    line-height: 1.8;
}

@media (max-width: 980px) {
    .fo-reviews-grid {
        column-count: 2;
    }
}

.fo-card-hover:hover {
    border-color: rgba(253, 0, 42, .36);
    box-shadow: 0 24px 58px rgba(253, 0, 42, .12);
}

.fo-feature-icon {
    background-color: #fff4f6;
    border-radius: 12px;
}

.fo-category-name {
    background-color: #fff;
    border-top: 1px solid #f1d7dc;
}

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

.fo-category-image {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #fff4f6;
}

.fo-download-section {
    background: linear-gradient(135deg, #fd002a 0%, #d60024 100%);
}

.fo-download-title {
    color: #fff;
}

.fo-download-description {
    color: rgba(255, 255, 255, .78);
}

.fo-download-btn {
    background-color: #fff;
    color: #fd002a;
    border-radius: 12px;
    justify-content: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
}

.fo-download-btn:hover {
    background-color: #fff4f6;
}

footer {
    background-color: #fff;
    border-top: 1px solid #f1d7dc;
}

/* Refined hero copy layout */
.fo-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    grid-template-areas:
        "badge showcase"
        "title showcase"
        "desc showcase"
        "actions showcase";
    align-items: center;
    gap: 18px 52px;
    max-width: 1040px;
    margin-inline: auto;
    padding: 0;
    border-left: 0;
    text-align: left;
}

.fo-hero-badge {
    grid-area: badge;
    justify-self: start;
    margin: 0;
    padding: 9px 15px;
    border-color: rgba(253, 0, 42, .22);
    background: #fff;
    box-shadow: 0 12px 26px rgba(253, 0, 42, .09);
}

.fo-hero-title {
    grid-area: title;
    max-width: 680px;
    margin: 0;
    font-size: clamp(2.85rem, 5.1vw, 4.9rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.fo-hero-title-highlight {
    display: inline-block;
    padding-inline: .04em;
}

.fo-hero-title-highlight::after {
    bottom: .04em;
    left: -.04em;
    width: 108%;
    height: .18em;
}

.fo-hero-description {
    grid-area: desc;
    width: min(100%, 620px);
    margin: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 4px solid rgba(253, 0, 42, .42);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 1.12rem;
}

.fo-hero-description p {
    margin: 0;
    line-height: 1.75;
}

.fo-hero-description p + p {
    margin-top: 4px;
}

.fo-hero-showcase {
    grid-area: showcase;
    align-self: stretch;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    min-height: 390px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(253, 0, 42, .16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 16%, rgba(253, 0, 42, .16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 244, 246, .9));
    box-shadow: 0 30px 70px rgba(253, 0, 42, .18);
}

.fo-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.fo-showcase-head span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #fd002a;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.fo-showcase-head strong {
    color: #17171b;
    font-size: .94rem;
}

.fo-showcase-main {
    position: relative;
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 220px;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(253, 0, 42, .08);
}

.fo-showcase-main::before {
    position: absolute;
    right: -34px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(253, 0, 42, .08);
    content: "";
}

.fo-showcase-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid #f1d7dc;
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
}

.fo-showcase-item span {
    color: #6f727b;
    font-size: .9rem;
    font-weight: 800;
}

.fo-showcase-item strong {
    color: #fd002a;
    font-size: 1.35rem;
    line-height: 1;
}

.fo-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fo-showcase-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(253, 0, 42, .14);
    border-radius: 999px;
    background: #fff;
    color: #fd002a;
    font-size: .82rem;
    font-weight: 900;
}

.fo-hero-buttons {
    grid-area: actions;
    justify-content: flex-start;
    gap: 14px;
    margin: 8px 0 0;
}

.fo-hero-buttons .fo-btn-primary,
.fo-hero-buttons .fo-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 14px;
}

@media (max-width: 759px) {
    .fo-navbar-container {
        min-height: 74px;
    }

    .fo-logo img {
        width: 118px;
    }

    .fo-search-box {
        width: 172px;
        height: 46px;
    }

    .fo-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .fo-hero-banner {
        padding-top: 8.5rem;
    }

    .fo-hero-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        padding-left: 0;
        border-left: 0;
        text-align: left;
    }

    .fo-hero-badge {
        align-self: flex-start;
        margin-bottom: 16px;
    }

    .fo-hero-title {
        font-size: clamp(2.25rem, 10.5vw, 3rem);
        line-height: 1.02;
        margin-bottom: 18px;
    }

    .fo-hero-description {
        padding: 15px 16px;
        border: 1px solid rgba(253, 0, 42, .12);
        border-left: 4px solid rgba(253, 0, 42, .42);
        border-radius: 14px;
        background: rgba(255, 255, 255, .74);
        font-size: 1rem;
    }

    .fo-hero-showcase {
        min-height: auto;
        padding: 16px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .fo-showcase-main {
        min-height: auto;
        padding: 14px;
    }

    .fo-showcase-item {
        min-height: 52px;
        padding-inline: 12px;
    }

    .fo-showcase-item strong {
        font-size: 1.08rem;
    }

    .fo-hero-buttons {
        width: 100%;
        gap: 12px;
    }

    .fo-hero-buttons .fo-btn-primary,
    .fo-hero-buttons .fo-btn-outline {
        width: 100%;
        min-height: 54px;
        padding-inline: 18px;
    }

    .fo-reviews-grid {
        column-count: 1;
    }

    .fo-review-card {
        min-height: auto;
        margin-bottom: 14px;
        padding: 22px;
    }

    .fo-review-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
