/* 内页全新设计样式 - 现代化风格 */

/* ========== Header和导航样式（从index.carousel-1342移植） ========== */

/* Header CTA Button Enhancement */
.purple-074a.article_silver_70d0 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem 0.9rem 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA726 50%, #FFD700 100%);
    background-size: 200% 100%;
    color: #1A0F0A;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 167, 38, 0.5), 0 0 0 3px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    animation: btn-pulse-gold 2s infinite;
    overflow: hidden;
}

.purple-074a.article_silver_70d0:hover {
    background-position: 100% 0;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 167, 38, 0.7), 0 0 0 5px rgba(255, 215, 0, 0.4);
    color: #1A0F0A;
}

.purple-074a.article_silver_70d0 .image_outer_d7fa {
    position: relative;
    z-index: 2;
}

.purple-074a.article_silver_70d0 .tertiary_1003 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    animation: arrow-slide 1s infinite;
}

.purple-074a.article_silver_70d0::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.purple-074a.article_silver_70d0:hover::before {
    left: 100%;
}

@keyframes btn-pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 167, 38, 0.5), 0 0 0 3px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 167, 38, 0.7), 0 0 0 4px rgba(255, 215, 0, 0.5);
    }
}

@keyframes arrow-slide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .purple-074a.article_silver_70d0 {
        font-size: 0.9rem;
        padding: 0.8rem 2rem 0.8rem 1.2rem;
    }
}

/* ========== Header和导航样式（从index.carousel-1342移植） ========== */

.section-c24c {
    background: linear-gradient(135deg, #3E2723 0%, #4E342E 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.outline_d7d8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.thick-59be {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
}

.photo-next-b82c {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
}

.photo-next-b82c a {
    display: flex;
    align-items: center;
}

.simple-3588 {
    display: flex;
    align-items: center;
}

.warm_cd47 {
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.grid-yellow-822e {
    z-index: 1002;
}

/* ========== 导航 ========== */
.rough_bd00 {
    position: relative;
}

.rough_bd00 ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.rough_bd00 li {
    position: relative;
    list-style: none;
}

.rough_bd00 a {
    color: #FFF9C4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: block;
}

.rough_bd00 a:hover {
    color: #FFEB3B;
}

/* 子菜单样式 - 桌面端 */
.rough_bd00 .table-5064 {
    position: relative;
}

.rough_bd00 .stale_25b1 {
    cursor: pointer;
}

.rough_bd00 .stale_25b1::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.rough_bd00 .accordion_new_113f {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #5D4037 0%, #4E342E 100%);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
    list-style: none;
}

/* 桌面端悬停显示子菜单 */
@media (min-width: 992px) {
    .rough_bd00 .table-5064:hover .accordion_new_113f {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rough_bd00 .accordion_new_113f li {
    margin: 0;
    list-style: none;
}

.rough_bd00 .accordion_new_113f a {
    padding: 0.75rem 1.25rem;
    color: #FFF9C4;
    white-space: nowrap;
}

.rough_bd00 .accordion_new_113f a:hover {
    background: rgba(255, 167, 38, 0.2);
    color: #FFEB3B;
}

.block_acd3 {
    display: none;
    background: rgba(141, 110, 99, 0.3);
    border: 2px solid rgba(255, 167, 38, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s;
}

.block_acd3:hover {
    background: rgba(255, 167, 38, 0.3);
    border-color: #FFA726;
}

.block_acd3.fn-active-ae5c {
    background: rgba(255, 167, 38, 0.5);
}

/* ========== 移动端导航 ========== */
@media (max-width: 991px) {
    .section-c24c {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #3E2723 0%, #4E342E 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .outline_d7d8 {
        position: relative;
        flex-wrap: wrap;
    }
    
    /* 移动端菜单按钮 */
    .block_acd3 {
        display: block !important;
        order: 2;
        z-index: 1003;
    }
    
    /* 品牌logo */
    .thick-59be {
        order: 1;
        z-index: 1003;
    }
    
    .photo-next-b82c {
        order: 1;
        z-index: 1003;
    }
    
    /* CTA按钮 */
    .grid-yellow-822e {
        order: 2;
        margin-right: 1rem;
        z-index: 1003;
    }
    
    /* 导航容器 */
    .rough_bd00 {
        order: 4;
        width: 100%;
        flex-basis: 100%;
        position: relative;
    }
    
    /* 移动端菜单 */
    .rough_bd00 ul {
        display: none;
        flex-direction: column;
        position: relative;
        width: 100%;
        background: linear-gradient(135deg, #4E342E 0%, #3E2723 100%);
        padding: 0;
        margin: 0.5rem 0 0 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        gap: 0;
        z-index: 1002;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        border-radius: 15px;
        list-style: none;
    }
    
    /* 显示菜单 - 关键样式！*/
    .rough_bd00 ul.fn-active-ae5c {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* 移动端菜单项 */
    .rough_bd00 > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        list-style: none;
    }
    
    .rough_bd00 > ul > li:last-child {
        border-bottom: none;
    }
    
    .rough_bd00 > ul > li > a {
        padding: 1.2rem 1.5rem !important;
        display: block !important;
        width: 100%;
        font-size: 1.05rem;
        color: #FFF9C4 !important;
        font-weight: 500;
    }
    
    /* 移动端子菜单容器 */
    .rough_bd00 .table-5064 {
        width: 100%;
    }
    
    /* 移动端子菜单 */
    .rough_bd00 .accordion_new_113f {
        position: static !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.4);
        box-shadow: none;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0;
        border-top: 1px solid rgba(255, 235, 59, 0.1);
        width: 100%;
        min-width: 100%;
        list-style: none;
    }
    
    /* 显示子菜单 - 关键样式！ */
    .rough_bd00 .table-5064.fn-active-ae5c > .accordion_new_113f {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }
    
    /* 子菜单项样式 */
    .rough_bd00 .accordion_new_113f li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        margin: 0;
        list-style: none;
    }
    
    .rough_bd00 .accordion_new_113f li:last-child {
        border-bottom: none;
    }
    
    .rough_bd00 .accordion_new_113f a {
        padding: 1rem 1.5rem 1rem 3rem !important;
        font-size: 0.95rem;
        display: block !important;
        width: 100%;
        color: #FFF9C4 !important;
        position: relative;
        white-space: normal;
    }
    
    /* 子菜单前的箭头图标 */
    .rough_bd00 .accordion_new_113f a::before {
        content: "→";
        position: absolute;
        left: 2rem;
        color: #FFA726;
    }
    
    .rough_bd00 .accordion_new_113f a:hover {
        background: rgba(255, 167, 38, 0.2);
        padding-left: 3.5rem !important;
    }
    
    /* 子菜单切换图标 */
    .rough_bd00 .stale_25b1::after {
        content: " ▼" !important;
        font-size: 0.7rem;
        margin-left: 0.5rem;
        display: inline-block !important;
        transition: transform 0.3s;
    }
    
    .rough_bd00 .table-5064.fn-active-ae5c > .stale_25b1::after {
        transform: rotate(180deg) !important;
    }
}

/* ========== 内页原有样式开始 ========== */


/* 响应式图片样式 */
.label-outer-6b8f,
.yellow_ac0c {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-radius: 2rem;
}

/* 英雄区域保持不变 */
.lower_98c4 {
    background: rgba(93, 64, 55, 0.1);
    padding: 2.5rem 0;
    margin: 1rem 0;
    border-radius: 20px;
    border: 1px solid rgba(141, 110, 99, 0.1);
}

.lower_98c4 h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.lower_98c4 p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* 全新内容区域设计 */
.tooltip-outer-ec7f {
    background: linear-gradient(135deg, #3E2723 0%, #4E342E 50%, #5D4037 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.tooltip-outer-ec7f::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.fixed-2628.green-94e3/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(../23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

/* 功能卡片网格 */
.column_896e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.black_6d05 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.black_6d05::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(141, 110, 99, 0.15), transparent);
    transition: left 0.6s ease;
}

.black_6d05:hover::before {
    left: 100%;
}

.black_6d05:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(78, 52, 46, 0.35);
    border-color: rgba(141, 110, 99, 0.35);
}

.media_4f95 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Image sizing for feature icons */
.media_4f95 img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 480px) {
    .media_4f95 img {
        width: 192px;
        height: 192px;
    }
}

.main-75af {
    text-align: center;
}

.white-fc17 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.dark-6b0d {
    font-size: 1rem;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.input_center_661a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card_west_3387 {
    background: linear-gradient(135deg, #FF6F00 0%, #FFA726 100%);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.35);
}

.white-b477 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.35);
    position: relative;
    overflow: hidden;
}

.white-b477::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.white-b477:hover::before {
    left: 100%;
}

.white-b477:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(253, 216, 53, 0.55);
    color: #1a1a1a;
    text-decoration: none;
}

.border_medium_465b {
    font-style: normal;
    transition: transform 0.3s ease;
}

.white-b477:hover .border_medium_465b {
    transform: translateX(5px);
}

/* 步骤流程设计 */
.dropdown_a5f6 {
    background: linear-gradient(135deg, rgba(141, 110, 99, 0.25) 0%, rgba(78, 52, 46, 0.15) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(141, 110, 99, 0.35);
    position: relative;
    overflow: hidden;
}

.dropdown_a5f6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.fixed-2628.green-94e3/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(../23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.surface-down-8b49 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(141, 110, 99, 0.35);
    background: linear-gradient(135deg, #FF6F00 0%, #FFA726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tooltip-ec2b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.panel-c104 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.panel-c104:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 52, 46, 0.35);
    border-color: rgba(141, 110, 99, 0.35);
}

.feature-a0af {
    background: linear-gradient(135deg, #FF6F00 0%, #FFA726 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.35);
}

.card_tall_ec11 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.red-8c05 {
    font-size: 0.9rem;
    color: #e9ecef;
    opacity: 0.8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tooltip-outer-ec7f {
        padding: 3rem 0;
    }
    
    .column_896e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .black_6d05 {
        padding: 1.5rem;
    }
    
    .media_4f95 {
        font-size: 2.5rem;
    }
    
    .white-fc17 {
        font-size: 1.3rem;
    }
    
    .dropdown_a5f6 {
        padding: 2rem 1rem;
    }
    
    .surface-down-8b49 {
        font-size: 1.8rem;
    }
    
    .tooltip-ec2b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tooltip-outer-ec7f {
        padding: 2rem 0;
    }
    
    .black_6d05 {
        padding: 1.2rem;
    }
    
    .media_4f95 {
        font-size: 2rem;
    }
    
    .white-fc17 {
        font-size: 1.2rem;
    }
    
    .input_center_661a {
        gap: 0.3rem;
    }
    
    .card_west_3387 {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .dropdown_a5f6 {
        padding: 1.5rem 1rem;
    }
    
    .surface-down-8b49 {
        font-size: 1.6rem;
    }
}

.lower_98c4 .aside-b663 {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
    position: relative;
    z-index: 1;
}

/* 内页网格布局 */
.component_e135 {
    margin-top: 2rem;
    gap: 1rem;
}

/* PC端横向显示 */
@media (min-width: 992px) {
    .component_e135 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .component_e135 .next-72f2.aside-c4ca {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .component_e135 .search-c747 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .component_e135 {
        gap: 2rem;
    }
    
    .component_e135 .next-72f2.aside-c4ca {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .component_e135 {
        gap: 2.5rem;
    }
    
    .component_e135 .next-72f2.aside-c4ca {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

/* 内页卡片样式 */
.search-c747 {
    background: #5D4037;
    border: 2px solid #5D4037;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.search-c747::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.6s ease;
}

.search-c747:hover::before {
    left: 100%;
}

.search-c747:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #BCAAA4;
    box-shadow: 0 15px 40px rgba(141, 110, 99, 0.4);
}

.search-c747 h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.search_large_c528 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.search-c747 p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.search-c747 .aside-b663 {
    background-color: #FF6F00;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.search-c747 .aside-b663:hover {
    background-color: #E65100;
    transform: scale(1.05);
}

/* 特色内容区域 */
.progress-ac4d {
    background: rgba(93, 64, 55, 0.08);
    border-radius: 18px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid rgba(141, 110, 99, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-ac4d::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #8D6E63;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.progress-ac4d h2 {
    color: #FF6F00;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.progress-ac4d p {
    color: #e9ecef;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* 信息列表样式 */
.text_fixed_5649 {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.text_fixed_5649 li {
    background: rgba(255, 255, 255, 0.05);
    margin: 0.75rem 0;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(141, 110, 99, 0.2);
    color: #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.text_fixed_5649 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #8D6E63;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.text_fixed_5649 li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(141, 110, 99, 0.4);
    box-shadow: 0 5px 15px rgba(141, 110, 99, 0.2);
}

.text_fixed_5649 li:hover::before {
    transform: scaleY(1);
}

/* 步骤指示器 */
.purple-db07 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(93, 64, 55, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(141, 110, 99, 0.1);
}

.link_silver_c844 {
    background: #5D4037;
    border: 2px solid #8D6E63;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link_silver_c844::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.link_silver_c844:hover::before {
    transform: scale(1);
}

.link_silver_c844:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.5);
    border-color: #BCAAA4;
}

/* 导航菜单当前页面高亮 - 已禁用 */
/* .primary_lite_faf4 a[href*=".overlay_huge_3bca"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
} */

/* 响应式调整 */
@media (max-width: 768px) {
    .lower_98c4 {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .lower_98c4 h1 {
        font-size: 1.75rem;
    }
    
    .search-c747 {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .search_large_c528 {
        font-size: 2rem;
    }
    
    .progress-ac4d {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .progress-ac4d::before {
        border-radius: 17px;
    }
    
    .text_fixed_5649 li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .purple-db07 {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .link_silver_c844 {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .next-72f2 img,
    .aside-c4ca img {
        max-width: 100%;
        height: auto;
    }
    
    .label-outer-6b8f,
    .yellow_ac0c {
        max-width: 100%;
    }
}

/* 小屏幕额外保护 */
@media (max-width: 480px) {
    .label-outer-6b8f,
    .yellow_ac0c {
        margin: 0.75rem auto;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ========== Footer 样式（从 index.carousel-1342 移植） ========== */

/* ========== Bonus页面专用样式 ========== */

/* Warning Box */
.detail_0def {
    background: rgba(244, 67, 54, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #F44336;
    margin: 1.5rem 0;
}

.detail_0def h4 {
    color: #F44336;
    margin-top: 0;
}

.detail_0def p,
.detail_0def ul {
    color: white;
    line-height: 1.8;
}

/* Bonus Highlight */
.dim-a0e3 {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.dim-a0e3 h3 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

/* FAQ Section (从 index.carousel-1342) */
.steel-4c15 {
    padding: 4rem 0;
    background: rgba(78, 52, 46, 0.5);
}

.steel-4c15 h2 {
    font-size: 2.2rem;
    color: #FFEB3B;
    text-align: center;
    margin-bottom: 3rem;
}

.button-hard-353c {
    max-width: 900px;
    margin: 0 auto;
}

.static_412d {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 167, 38, 0.2);
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.static_412d:hover {
    border-color: rgba(255, 167, 38, 0.5);
}

.static_412d h3 {
    color: #FFA726;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
}

.static_412d h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.static_412d p {
    color: white;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.static_412d p:last-child {
    margin-bottom: 0;
}

.static_412d ul,
.static_412d ol {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.static_412d li {
    margin-bottom: 0.5rem;
}

/* Content Block (从 index.carousel-1342) */
.main_be6b {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 167, 38, 0.2);
}

.main_be6b h3 {
    color: #FFA726;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.main_be6b h4 {
    color: #FFEB3B;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.main_be6b p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.main_be6b ul {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Info Box */
.dirty_99d0 {
    background: rgba(33, 150, 243, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196F3;
    margin: 1.5rem 0;
}

.dirty_99d0 h4 {
    color: #2196F3;
    margin-top: 0;
}

.dirty_99d0 p {
    margin-bottom: 0;
    color: white;
    line-height: 1.8;
}

.dirty_99d0 ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0 0 0;
}

/* Popular Games Grid (usado para casos de sucesso) */
.summary-1111 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Game Card */
.complex_a992 {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 167, 38, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.complex_a992:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 167, 38, 0.3);
}

.complex_a992 h4 {
    color: #FFA726;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
}

/* Game Specs (usado para dados dos jogadores) */
.hover-gas-8b4d {
    margin: 0;
}

.hover-gas-8b4d dt {
    color: #FFEB3B;
    font-weight: 600;
    margin-top: 0.75rem;
}

.hover-gas-8b4d dd {
    color: white;
    margin: 0.25rem 0 0 0;
    line-height: 1.6;
}

/* Terms Table */
.shade-ccbe {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.shade-ccbe caption {
    caption-side: top;
    padding: 1rem;
    font-weight: 600;
    color: #FFEB3B;
    text-align: left;
}

.shade-ccbe thead th {
    background: rgba(141, 110, 99, 0.5);
    color: #FFA726;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 167, 38, 0.5);
}

.shade-ccbe tbody th {
    background: rgba(141, 110, 99, 0.3);
    color: #FFA726;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    width: 30%;
}

.shade-ccbe td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.shade-ccbe tbody tr.warm-ec2b {
    background: rgba(76, 175, 80, 0.15);
}

.shade-ccbe tbody tr.warm-ec2b th,
.shade-ccbe tbody tr.warm-ec2b td {
    background: transparent;
}

/* Example Box */
.simple_8763 {
    background: rgba(255, 235, 59, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFEB3B;
    margin: 1.5rem 0;
}

.simple_8763 h4 {
    color: #FFEB3B;
    margin-top: 0;
}

.simple_8763 p {
    color: white;
    margin-bottom: 1rem;
}

.simple_8763 ul {
    color: white;
    line-height: 1.8;
}

.notification-9326 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tooltip_simple_3758 {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
}

.tooltip_simple_3758 h5 {
    color: #FFA726;
    margin-top: 0;
}

.tooltip_simple_3758 ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

/* Verdict */
.tag-over-dbb3 {
    background: rgba(76, 175, 80, 0.15);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: white;
}

/* Utility Classes */
.wrapper_white_5fd0 {
    color: #4CAF50;
    font-weight: 700;
}

.container_81e4 {
    color: #FF9800;
    font-weight: 700;
}

.layout_b023 {
    color: #F44336;
    font-weight: 700;
}

.active-57b7 h2 {
    font-size: 2.2rem;
    color: #FFEB3B;
    text-align: center;
    margin-bottom: 3rem;
}

/* ========== E-E-A-T Enhancement Styles ========== */

/* Article Metadata Section */
.first-27bc {
    background: rgba(33, 150, 243, 0.1);
    padding: 2rem 0;
    border-bottom: 2px solid rgba(33, 150, 243, 0.3);
    margin-bottom: 2rem;
}

.hero_fa5c {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(33, 150, 243, 0.3);
}

.soft-ee57 {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

.photo-hard-e594 {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.detail_08ea {
    color: #2196F3;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.mask_cc14 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.popup-top-f608 {
    padding-left: 2rem;
}

.popup-top-f608 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.popup-top-f608 strong {
    color: #FFEB3B;
}

/* Transparency Section */
.highlight_narrow_cdda {
    background: rgba(78, 52, 46, 0.3);
    padding: 4rem 0;
    margin-top: 3rem;
}

.cool_173c,
.panel-89e6,
.red-dde2,
.hover-easy-809a,
.avatar-bdd7 {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.cool_173c {
    border-left-color: #2196F3;
}

.cool_173c h3 {
    color: #2196F3;
    margin-top: 0;
}

.panel-89e6 {
    border-left-color: #9C27B0;
}

.panel-89e6 h3 {
    color: #9C27B0;
    margin-top: 0;
}

.red-dde2 {
    border-left-color: #F44336;
    background: rgba(244, 67, 54, 0.1);
}

.red-dde2 h3 {
    color: #F44336;
    margin-top: 0;
}

.hover-easy-809a {
    border-left-color: #4CAF50;
}

.hover-easy-809a h3 {
    color: #4CAF50;
    margin-top: 0;
}

.avatar-bdd7 {
    border-left-color: #FFA726;
}

.avatar-bdd7 h3 {
    color: #FFA726;
    margin-top: 0;
}

.cool_173c p,
.panel-89e6 p,
.red-dde2 p,
.hover-easy-809a p,
.avatar-bdd7 p {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.cool_173c h4,
.panel-89e6 h4,
.red-dde2 h4,
.hover-easy-809a h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.cool_173c ul,
.panel-89e6 ul,
.red-dde2 ul,
.hover-easy-809a ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.cool_173c li,
.panel-89e6 li,
.red-dde2 li,
.hover-easy-809a li {
    margin-bottom: 0.75rem;
}

.red-dde2 a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.red-dde2 a:hover {
    text-decoration: underline;
}

/* Responsive E-E-A-T Styles */
@media (max-width: 991px) {
    .hero_fa5c {
        grid-template-columns: 1fr;
    }
    
    .soft-ee57 {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .popup-top-f608 {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .first-27bc {
        padding: 1.5rem 0;
    }
    
    .hero_fa5c {
        padding: 1rem;
    }
    
    .cool_173c,
    .panel-89e6,
    .red-dde2,
    .hover-easy-809a,
    .avatar-bdd7 {
        padding: 1.5rem;
    }
}

/* ========== Bonus页面专用样式 ========== */

/* Hero Section 增强 */
.badge-over-b41d {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.message-liquid-6417 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA726 100%);
    color: #1A0F0A;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
}

.menu-de80 {
    margin: 2rem 0;
}

.dropdown_top_ee51 {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #FFF9C4;
    margin-bottom: 2rem;
}

.element_purple_0f41 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 167, 38, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 167, 38, 0.3);
}

.bright-a8a4 {
    text-align: center;
}

.stale-8a9d {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.notice-39fb {
    display: block;
    font-size: 0.9rem;
    color: #FFF9C4;
}

.layout_75fa {
    margin-top: 2.5rem;
    text-align: center;
}

/* CTA Primary Button Enhancement */
.complex-1516 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1.2rem 3rem 1.2rem 2rem !important;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #4CAF50 100%) !important;
    background-size: 200% 100%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.complex-1516:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.4), 0 12px 40px rgba(76, 175, 80, 0.5);
}

.complex-1516 .border_medium_465b {
    font-size: 1.5rem;
    animation: icon-bounce 1.5s infinite;
}

.complex-1516 .image_outer_d7fa {
    position: relative;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Button Icon Styles */
.border_medium_465b {
    display: inline-block;
    margin-right: 0.5rem;
}

/* Responsive Button Styles */
@media (max-width: 767px) {
    .complex-1516 {
        font-size: 1rem !important;
        padding: 1rem 2.5rem 1rem 1.5rem !important;
    }
    
    .complex-1516 .border_medium_465b {
        font-size: 1.2rem;
    }
}

.tag_3569 {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
    animation: pulse-glow 2s infinite;
    position: relative;
    overflow: hidden;
}

.tag_3569::after {
    content: "→";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: right 0.3s;
}

.tag_3569:hover::after {
    right: 1rem;
}

.tag_3569::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.tag_3569:hover::before {
    left: 100%;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(76, 175, 80, 0.7);
        transform: scale(1.02);
    }
}

.top-8b62 {
    margin-top: 1rem;
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 600;
}

.list-first-ace0 {
    position: relative;
}

.heading_d2fc {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.button_b7c3 {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.heading_d2fc:hover .button_b7c3 {
    transform: scale(1.05);
}

.cool-b922 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF5722;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.5);
}

/* Comparison Section */
.mini_7d87 {
    background: linear-gradient(180deg, rgba(141, 110, 99, 0.1) 0%, rgba(109, 76, 65, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem 1.5rem !important;
}

.mini_85b5 {
    margin-bottom: 2rem;
}

.hover_a6b6 {
    color: #FFEB3B;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.row-pressed-c305 {
    color: #FFF9C4;
    font-size: 1.1rem;
}

.notice-current-9df7 {
    overflow-x: auto;
    margin: 2rem 0;
}

.hidden-north-a1d0 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(78, 52, 46, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

.hidden-north-a1d0 thead tr {
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
}

.hidden-north-a1d0 th {
    padding: 1.2rem 1rem;
    color: #FFEB3B;
    text-align: center;
    border-bottom: 3px solid #FFA726;
    font-weight: 700;
}

.hidden-north-a1d0 th.pro_633f {
    text-align: left;
}

.hidden-north-a1d0 tbody tr {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.hidden-north-a1d0 tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.hidden-north-a1d0 tbody tr.container-391b {
    background: rgba(76, 175, 80, 0.2);
}

.hidden-north-a1d0 td {
    padding: 1rem;
    color: #FFF9C4;
    text-align: center;
}

.hidden-north-a1d0 td.basic-6cea {
    text-align: left;
    font-weight: 700;
    color: #fff;
}

.hidden-north-a1d0 td.article_stale_0727,
.hidden-north-a1d0 td.disabled-099d,
.hidden-north-a1d0 td.mask-babd {
    font-weight: 700;
    color: #4CAF50;
}

.hidden-north-a1d0 td.silver-a41e {
    font-weight: 700;
    color: #FFEB3B;
}

.hidden-north-a1d0 td.notification-067b {
    color: #FF9800;
}

.hidden-north-a1d0 td.gradient-8197 {
    color: #F44336;
}

.narrow-04b4 {
    margin-top: 2rem;
}

.surface-lower-639f {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.surface-lower-639f.sort_full_b9aa {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.chip-07d1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary_copper_414e {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
}

.summary_copper_414e strong {
    color: #4CAF50;
}

/* Success Stories Section */
.item_pressed_0a1f {
    background: linear-gradient(180deg, rgba(141, 110, 99, 0.1) 0%, rgba(109, 76, 65, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 3rem 1.5rem !important;
}

/* Statistics Section */
.item_68b8 {
    margin: 3rem 0;
}

/* FAQ Section */
.steel-4c15 {
    background: linear-gradient(180deg, rgba(141, 110, 99, 0.1) 0%, rgba(109, 76, 65, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem 1.5rem !important;
}

/* VIP Promo Section */
.photo_last_4077 {
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
    padding: 4rem 1.5rem;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.title_wide_172e {
    position: relative;
}

.paper-8e3b {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA726 100%);
    color: #1A0F0A;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.title_wide_172e h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.advanced-1cc0 {
    color: #FFF9C4;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Final CTA Section */
.notice-0475 {
    background: linear-gradient(135deg, #5D4037 0%, #4E342E 100%);
    padding: 2.5rem 1.5rem;
    border-top: 3px solid #FFA726;
}

.table_1f39 {
    animation: pulse-scale 2s infinite;
    position: relative;
    padding-right: 3.5rem !important;
}

.table_1f39::after {
    content: "➜";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    animation: arrow-bounce 1s infinite;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.6);
    }
}

@keyframes arrow-bounce {
    0%, 100% {
        right: 1.5rem;
    }
    50% {
        right: 1rem;
    }
}

/* FAQ Section */

.white-c967 {
    max-width: 900px;
    margin: 0 auto;
}

.block-fdfd {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    padding: 1.8rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.block-fdfd:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.block-fdfd.row_in_6c1d {
    border: 2px solid #4CAF50;
}

.block-fdfd.texture-liquid-47a0 {
    border: 2px solid #2196F3;
}

.block-fdfd.media-red-8806 {
    border: 2px solid #FFA726;
}

.block-fdfd.alert-small-c72f {
    border: 2px solid #9C27B0;
}

.block-fdfd.photo_cf6c {
    border: 2px solid #00BCD4;
}

.box-3c3b {
    color: #FFEB3B;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.cool-7df4 {
    color: #FFF9C4;
    line-height: 1.7;
}

.cool-7df4 p {
    margin: 0 0 1rem 0;
}

.cool-7df4 p:last-child {
    margin-bottom: 0;
}

.row_pro_bf0b {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.row_pro_bf0b li {
    margin-bottom: 0.5rem;
}

.cool-7df4 .footer-a726 {
    color: #4CAF50;
    font-weight: 600;
}

.cool-7df4 .stale_adf2 {
    color: #FF5722;
    font-weight: 600;
}

.cool-7df4 .action_4106 {
    color: #FFEB3B;
    font-weight: 600;
}

.breadcrumb-4cc3 {
    margin-top: 3rem;
}

/* Statistics Section */

.gas_fa92 {
    text-align: center;
    margin-bottom: 3rem;
}

.gas_fa92 img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video_f01b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-upper-e244 {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.aside-upper-e244:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.aside-upper-e244.shade_mini_7d48 {
    border: 2px solid #4CAF50;
}

.aside-upper-e244.texture_8ff6 {
    border: 2px solid #FFA726;
}

.aside-upper-e244.lite_4dd1 {
    border: 2px solid #2196F3;
}

.aside-upper-e244.dropdown_upper_89a2 {
    border: 2px solid #FFEB3B;
}

.aside-upper-e244.section_1010 {
    border: 2px solid #9C27B0;
}

.aside-upper-e244.info_mini_84ea {
    border: 2px solid #FF5722;
}

.aside-upper-e244.gradient-7190 {
    border: 2px solid #00BCD4;
}

.element_brown_7caf {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.aside-upper-e244.shade_mini_7d48 .element_brown_7caf {
    color: #4CAF50;
}

.aside-upper-e244.texture_8ff6 .element_brown_7caf {
    color: #FFA726;
}

.aside-upper-e244.lite_4dd1 .element_brown_7caf {
    color: #2196F3;
}

.aside-upper-e244.dropdown_upper_89a2 .element_brown_7caf {
    color: #FFEB3B;
}

.aside-upper-e244.section_1010 .element_brown_7caf {
    color: #9C27B0;
}

.aside-upper-e244.info_mini_84ea .element_brown_7caf {
    color: #FF5722;
}

.aside-upper-e244.gradient-7190 .element_brown_7caf {
    color: #00BCD4;
}

.fast_f889 {
    color: #FFF9C4;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Success Stories Section */
.item_pressed_0a1f {
    background: linear-gradient(180deg, rgba(141, 110, 99, 0.1) 0%, rgba(109, 76, 65, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 3rem 1.5rem !important;
}

.title-751a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.picture-a908 {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    padding: 1.8rem;
    border-radius: 12px;
    border: 2px solid #4CAF50;
    transition: transform 0.3s, box-shadow 0.3s;
}

.picture-a908:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.surface-aa26 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-cold-b81c {}

.active_5b50 {
    color: #FFEB3B;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.table_static_38c3 {
    color: #FFF9C4;
    margin: 0.3rem 0 0 0;
    font-size: 0.85rem;
}

.plasma_965c {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-ff2c {
    background: #4CAF50;
    color: #fff;
}

.east-9417 {
    background: rgba(0,0,0,0.3);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.nav-simple-852d {
    color: #FFF9C4;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.nav-simple-852d:last-child {
    margin-bottom: 0;
}

.nav-simple-852d.carousel_basic_0249 {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-simple-852d .notice-39fb {
    color: #FFEB3B;
    font-weight: 600;
}

.nav-simple-852d .sidebar-cc81 {
    color: #4CAF50;
    font-weight: 700;
}

.photo_334e {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.surface-26ab {
    margin: 1.5rem 0 0 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid #FFA726;
}

.orange-33c1 {
    margin-top: 2rem;
    text-align: center;
}

.label-rough-bbce {
    color: #FFEB3B;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .badge-over-b41d {
        grid-template-columns: 1fr;
    }
    
    .element_purple_0f41 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .title-751a {
        grid-template-columns: 1fr;
    }
    
    .video_f01b {
        grid-template-columns: 1fr;
    }
    
    .hidden-north-a1d0 {
        font-size: 0.85rem;
    }
    
    .hidden-north-a1d0 th,
    .hidden-north-a1d0 td {
        padding: 0.75rem 0.5rem;
    }
    
    .block-fdfd {
        padding: 1.5rem;
    }
    
    .box-3c3b {
        font-size: 1.1rem;
    }
    
    .title_wide_172e h2 {
        font-size: 2rem;
    }
    
    .advanced-1cc0 {
        font-size: 1rem;
    }
    
    .summary-1111 {
        grid-template-columns: 1fr;
    }
    
    .notification-9326 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端居中 */
    .brown_b2a3,
    .main_be6b,
    .complex_a992,
    .picture-a908,
    .aside-upper-e244,
    .static_412d {
        text-align: center;
    }
    
    .brown_b2a3 h1,
    .main_be6b h3,
    .main_be6b h4,
    .complex_a992 h4,
    .static_412d h3 {
        text-align: center;
    }
    
    .brown_b2a3 p,
    .main_be6b p,
    .complex_a992 p,
    .dirty_99d0 p,
    .simple_8763 p,
    .detail_0def p {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .brown_b2a3 ul,
    .main_be6b ul,
    .dirty_99d0 ul,
    .simple_8763 ul,
    .detail_0def ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .layout_75fa,
    .overlay-huge-b600 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .message-liquid-6417 {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .menu-de80 {
        font-size: 0.95rem;
    }
    
    .stale-8a9d {
        font-size: 1.5rem;
    }
    
    .notice-39fb {
        font-size: 0.8rem;
    }
    
    .hover_a6b6 {
        font-size: 1.5rem;
    }
    
    .row-pressed-c305 {
        font-size: 0.95rem;
    }
    
    .hidden-north-a1d0 {
        font-size: 0.75rem;
    }
    
    .aside-upper-e244 {
        padding: 1.5rem 1rem;
    }
    
    .element_brown_7caf {
        font-size: 1.8rem;
    }
    
    .picture-a908 {
        padding: 1.5rem;
    }
    
    .surface-aa26 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .active_5b50 {
        font-size: 1rem;
    }
    
    .box-3c3b {
        font-size: 1rem;
    }
    
    .title_wide_172e h2 {
        font-size: 1.8rem;
    }
    
    .active-57b7 h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .main_be6b {
        padding: 1.5rem;
        text-align: center;
    }
    
    .complex_a992 {
        padding: 1.2rem;
        text-align: center;
    }
    
    .shade-ccbe th,
    .shade-ccbe td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* 移动端强制居中所有标题和区块 */
    .lower_98c4,
    .active-57b7,
    .mini_7d87,
    .item_pressed_0a1f,
    .item_68b8,
    .steel-4c15,
    .photo_last_4077 {
        text-align: center;
    }
    
    .mini_85b5,
    .brown_b2a3,
    .main_be6b,
    .button-hard-353c,
    .summary-1111 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .brown_b2a3 h1,
    .main_be6b h2,
    .main_be6b h3,
    .main_be6b h4,
    .complex_a992 h4,
    .static_412d h3,
    .static_412d h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dim-a0e3 {
        text-align: center;
    }
    
    .dim-a0e3 h3 {
        text-align: center;
    }
    
    /* 列表内容左对齐但容器居中 */
    .brown_b2a3 ul,
    .brown_b2a3 ol,
    .main_be6b ul,
    .main_be6b ol,
    .dirty_99d0 ul,
    .dirty_99d0 ol,
    .simple_8763 ul,
    .simple_8763 ol,
    .detail_0def ul,
    .detail_0def ol,
    .static_412d ul,
    .static_412d ol {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 表格容器居中 */
    .notice-current-9df7,
    .shade-ccbe {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 按钮居中 */
    .layout_75fa,
    .overlay-huge-b600,
    .breadcrumb-4cc3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero visual 居中 */
    .list-first-ace0,
    .heading_d2fc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 统计卡片居中 */
    .aside-upper-e244,
    .complex_a992,
    .picture-a908 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Info boxes 居中 */
    .dirty_99d0,
    .simple_8763,
    .detail_0def,
    .tag-over-dbb3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dirty_99d0 p,
    .simple_8763 p,
    .detail_0def p,
    .tag-over-dbb3 p {
        text-align: left;
    }
}

/* ========== Footer 样式（从 index.carousel-1342 移植） ========== */
.tertiary-73cd {
    background: linear-gradient(135deg, #2E1B14 0%, #1A0F0A 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(255, 167, 38, 0.2);
}

.thumbnail_thick_6e06 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.paper_da5d h3 {
    color: #FFA726;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
}

.paper_da5d p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.paper_da5d ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper_da5d li {
    margin-bottom: 0.5rem;
}

.paper_da5d a {
    color: #FFF9C4;
    text-decoration: none;
    transition: color 0.3s;
}

.paper_da5d a:hover {
    color: #FFEB3B;
}

.icon_c613 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.icon_c613 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.progress-7eeb {
    margin-top: 1rem;
}

.progress-7eeb a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 1rem;
}

.progress-7eeb a:hover {
    text-decoration: underline;
}

/* Footer 响应式 */
@media (max-width: 991px) {
    .thumbnail_thick_6e06 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .paper_da5d {
        text-align: center;
    }
}

/* ========== Cadastro页面专用样式 ========== */

/* Activity Cards for New Players */
.alert-6f0f {
    background: rgba(76, 175, 80, 0.15);
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.alert-6f0f:hover {
    background: rgba(76, 175, 80, 0.25);
    transform: translateY(-2px);
}

.alert-6f0f dt {
    color: #4CAF50;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alert-6f0f .active_5b50 {
    color: #FFEB3B;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.3rem 0;
}

.alert-6f0f .photo_6436 {
    color: #FFF9C4;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.alert-6f0f .section-small-ad24 {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bonus Cards with Different Colors */
.upper_f248 {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.upper_f248 h3 {
    color: #4CAF50;
}

.small-7871 {
    background: rgba(255, 152, 0, 0.2);
    border: 2px solid #FF9800;
}

.small-7871 h3 {
    color: #FF9800;
}

.solid-0145 {
    background: rgba(33, 150, 243, 0.2);
    border: 2px solid #2196F3;
}

.solid-0145 h3 {
    color: #2196F3;
}

.upper_f248 .thick-7908,
.small-7871 .thick-7908,
.solid-0145 .thick-7908 {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

.upper_4285 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Success Stories Section Specific */
.item_pressed_0a1f {
    background: linear-gradient(180deg, rgba(141, 110, 99, 0.1) 0%, rgba(109, 76, 65, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    margin-bottom: 3rem;
}

.item_pressed_0a1f h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.item_pressed_0a1f .orange-33c1 {
    background: rgba(78, 52, 46, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.item_pressed_0a1f .label-rough-bbce {
    color: #FFEB3B;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Cadastro Page Responsive */
@media (max-width: 991px) {
    .alert-6f0f {
        margin-bottom: 1rem;
    }
    
    .alert-6f0f dt,
    .alert-6f0f .active_5b50,
    .alert-6f0f .photo_6436,
    .alert-6f0f .section-small-ad24 {
        text-align: center;
    }
    
    .upper_f248,
    .small-7871,
    .solid-0145 {
        text-align: center;
    }
    
    .item_pressed_0a1f .label-rough-bbce {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .alert-6f0f {
        padding: 1.2rem;
    }
    
    .upper_4285 {
        font-size: 2.5rem;
    }
    
    .alert-6f0f .active_5b50 {
        font-size: 1rem;
    }
    
    .alert-6f0f .section-small-ad24 {
        font-size: 0.85rem;
    }
    
    .upper_f248 h3,
    .small-7871 h3,
    .solid-0145 h3 {
        font-size: 1.5rem;
    }
    
    .upper_f248 .thick-7908,
    .small-7871 .thick-7908,
    .solid-0145 .thick-7908 {
        font-size: 1rem;
    }
}

/* ========== E-E-A-T Enhancement Styles ========== */

/* Author Info in Hero */
.cold_c3bd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FFC107;
    border-radius: 8px;
}

.green-3fe7 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA726, #FF6F00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.first_9e26 {
    flex: 1;
}

.north_07ac {
    color: #FFF9C4;
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
}

.north_07ac strong {
    color: #FFEB3B;
    font-size: 1.1rem;
}

.container-f475 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.container-f475 small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Trust Badges */
.header_57cb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.new-8af4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.new-8af4:hover {
    background: rgba(76, 175, 80, 0.25);
    transform: translateY(-2px);
}

.upper_e333 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.new-8af4 span:last-child {
    color: #4CAF50;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Transparency Section Enhancement */
.highlight_narrow_cdda details[open] {
    background: rgba(33, 150, 243, 0.15);
}

.highlight_narrow_cdda details div {
    padding: 1rem 1.5rem 1.5rem;
}

.highlight_narrow_cdda details ul {
    list-style-position: inside;
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.highlight_narrow_cdda details li {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.highlight_narrow_cdda details p {
    margin: 0.8rem 0;
}

.highlight_narrow_cdda details strong {
    color: #FFEB3B;
}

.highlight_narrow_cdda details a {
    color: #4CAF50;
    text-decoration: underline;
}

.highlight_narrow_cdda details a:hover {
    color: #66BB6A;
}

/* Responsive Design for E-E-A-T Elements */
@media (max-width: 991px) {
    .cold_c3bd {
        flex-direction: column;
        text-align: center;
    }
    
    .first_9e26 {
        text-align: center;
    }
    
    .header_57cb {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .green-3fe7 {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .north_07ac {
        font-size: 0.9rem;
    }
    
    .north_07ac strong {
        font-size: 1rem;
    }
    
    .container-f475 {
        font-size: 0.85rem;
    }
    
    .container-f475 small {
        font-size: 0.75rem;
    }
    
    .new-8af4 {
        padding: 0.6rem;
    }
    
    .upper_e333 {
        font-size: 1.3rem;
    }
    
    .new-8af4 span:last-child {
        font-size: 0.8rem;
    }
}
/* css-noise: f964 */
.ghost-box-c2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
