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

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

/* Header CTA Button Enhancement */
.widget_full_52a6.card-8e5a {
    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;
}

.widget_full_52a6.card-8e5a: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;
}

.widget_full_52a6.card-8e5a .tag-874c {
    position: relative;
    z-index: 2;
}

.widget_full_52a6.card-8e5a .active_be57 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    animation: arrow-slide 1s infinite;
}

.widget_full_52a6.card-8e5a::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;
}

.widget_full_52a6.card-8e5a: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) {
    .widget_full_52a6.card-8e5a {
        font-size: 0.9rem;
        padding: 0.8rem 2rem 0.8rem 1.2rem;
    }
}

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

.cool-3855 {
    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;
}

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

.steel-97e1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
}

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

.up_ef6b a {
    display: flex;
    align-items: center;
}

.breadcrumb-fixed-bf04 {
    display: flex;
    align-items: center;
}

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

.sort_west_9d55 {
    z-index: 1002;
}

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

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

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

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

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

/* 子菜单样式 - 桌面端 */
.popup_clean_4e18 .purple-6faa {
    position: relative;
}

.popup_clean_4e18 .active-c8b6 {
    cursor: pointer;
}

.popup_clean_4e18 .active-c8b6::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.popup_clean_4e18 .accordion-aa8d {
    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) {
    .popup_clean_4e18 .purple-6faa:hover .accordion-aa8d {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

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

.popup_clean_4e18 .accordion-aa8d li {
    margin: 0;
    list-style: none;
}

.popup_clean_4e18 .accordion-aa8d a {
    padding: 0.75rem 1.25rem;
    color: #FFF9C4;
    white-space: nowrap;
}

.popup_clean_4e18 .accordion-aa8d a:hover {
    background: rgba(255, 167, 38, 0.2);
    color: #FFEB3B;
}

.pattern_ee49 {
    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;
}

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

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

/* ========== 移动端导航 ========== */
@media (max-width: 991px) {
    .cool-3855 {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #3E2723 0%, #4E342E 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .avatar_tall_5b11 {
        position: relative;
        flex-wrap: wrap;
    }
    
    /* 移动端菜单按钮 */
    .pattern_ee49 {
        display: block !important;
        order: 2;
        z-index: 1003;
    }
    
    /* 品牌logo */
    .steel-97e1 {
        order: 1;
        z-index: 1003;
    }
    
    .up_ef6b {
        order: 1;
        z-index: 1003;
    }
    
    /* CTA按钮 */
    .sort_west_9d55 {
        order: 2;
        margin-right: 1rem;
        z-index: 1003;
    }
    
    /* 导航容器 */
    .popup_clean_4e18 {
        order: 4;
        width: 100%;
        flex-basis: 100%;
        position: relative;
    }
    
    /* 移动端菜单 */
    .popup_clean_4e18 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;
    }
    
    /* 显示菜单 - 关键样式！*/
    .popup_clean_4e18 ul.fn-active-da79 {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* 移动端菜单项 */
    .popup_clean_4e18 > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        list-style: none;
    }
    
    .popup_clean_4e18 > ul > li:last-child {
        border-bottom: none;
    }
    
    .popup_clean_4e18 > ul > li > a {
        padding: 1.2rem 1.5rem !important;
        display: block !important;
        width: 100%;
        font-size: 1.05rem;
        color: #FFF9C4 !important;
        font-weight: 500;
    }
    
    /* 移动端子菜单容器 */
    .popup_clean_4e18 .purple-6faa {
        width: 100%;
    }
    
    /* 移动端子菜单 */
    .popup_clean_4e18 .accordion-aa8d {
        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;
    }
    
    /* 显示子菜单 - 关键样式！ */
    .popup_clean_4e18 .purple-6faa.fn-active-da79 > .accordion-aa8d {
        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;
        }
    }
    
    /* 子菜单项样式 */
    .popup_clean_4e18 .accordion-aa8d li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        margin: 0;
        list-style: none;
    }
    
    .popup_clean_4e18 .accordion-aa8d li:last-child {
        border-bottom: none;
    }
    
    .popup_clean_4e18 .accordion-aa8d 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;
    }
    
    /* 子菜单前的箭头图标 */
    .popup_clean_4e18 .accordion-aa8d a::before {
        content: "→";
        position: absolute;
        left: 2rem;
        color: #FFA726;
    }
    
    .popup_clean_4e18 .accordion-aa8d a:hover {
        background: rgba(255, 167, 38, 0.2);
        padding-left: 3.5rem !important;
    }
    
    /* 子菜单切换图标 */
    .popup_clean_4e18 .active-c8b6::after {
        content: " ▼" !important;
        font-size: 0.7rem;
        margin-left: 0.5rem;
        display: inline-block !important;
        transition: transform 0.3s;
    }
    
    .popup_clean_4e18 .purple-6faa.fn-active-da79 > .active-c8b6::after {
        transform: rotate(180deg) !important;
    }
}

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


/* 响应式图片样式 */
.slow-6540,
.tag-b46e {
    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;
}

/* 英雄区域保持不变 */
.secondary_9e83 {
    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);
}

.secondary_9e83 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;
}

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

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

.search-1dc8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.white-699a.logo_9eee/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;
}

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

.notification_8fdb {
    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;
}

.notification_8fdb::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;
}

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

.notification_8fdb: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);
}

.grid-1ec8 {
    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 */
.grid-1ec8 img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: inline-block;
}

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

.search-fast-0f24 {
    text-align: center;
}

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

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

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

.box_394f {
    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);
}

.component-6a52 {
    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;
}

.component-6a52::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;
}

.component-6a52:hover::before {
    left: 100%;
}

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

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

.component-6a52:hover .blue_d54a {
    transform: translateX(5px);
}

/* 步骤流程设计 */
.caption-outer-3454 {
    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;
}

.caption-outer-3454::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.white-699a.logo_9eee/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;
}

.purple_59ea {
    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;
}

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

.basic_b57e {
    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;
}

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

.tertiary-red-91bb {
    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);
}

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

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

/* 响应式设计 */
@media (max-width: 768px) {
    .search-1dc8 {
        padding: 3rem 0;
    }
    
    .accent-warm-55e0 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notification_8fdb {
        padding: 1.5rem;
    }
    
    .grid-1ec8 {
        font-size: 2.5rem;
    }
    
    .tabs_5bfd {
        font-size: 1.3rem;
    }
    
    .caption-outer-3454 {
        padding: 2rem 1rem;
    }
    
    .purple_59ea {
        font-size: 1.8rem;
    }
    
    .card_0662 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .search-1dc8 {
        padding: 2rem 0;
    }
    
    .notification_8fdb {
        padding: 1.2rem;
    }
    
    .grid-1ec8 {
        font-size: 2rem;
    }
    
    .tabs_5bfd {
        font-size: 1.2rem;
    }
    
    .complex-a43f {
        gap: 0.3rem;
    }
    
    .box_394f {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .caption-outer-3454 {
        padding: 1.5rem 1rem;
    }
    
    .purple_59ea {
        font-size: 1.6rem;
    }
}

.secondary_9e83 .hidden_plasma_302a {
    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;
}

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

/* PC端横向显示 */
@media (min-width: 992px) {
    .gallery-3973 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .gallery-3973 .wide_1481.sort-4307 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .gallery-3973 .iron-735e {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .gallery-3973 {
        gap: 2rem;
    }
    
    .gallery-3973 .wide_1481.sort-4307 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .gallery-3973 {
        gap: 2.5rem;
    }
    
    .gallery-3973 .wide_1481.sort-4307 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

/* 内页卡片样式 */
.iron-735e {
    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;
}

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

.iron-735e:hover::before {
    left: 100%;
}

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

.iron-735e h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.iron-735e p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.iron-735e .hidden_plasma_302a {
    background-color: #FF6F00;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.iron-735e .hidden_plasma_302a:hover {
    background-color: #E65100;
    transform: scale(1.05);
}

/* 特色内容区域 */
.next_1d12 {
    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;
}

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

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

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

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

.glass_6500 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;
}

.glass_6500 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;
}

.glass_6500 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);
}

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

/* 步骤指示器 */
.preview-9eac {
    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);
}

.frame-hard-2dbc {
    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;
}

.frame-hard-2dbc::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;
}

.frame-hard-2dbc:hover::before {
    transform: scale(1);
}

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

/* 导航菜单当前页面高亮 - 已禁用 */
/* .background-ad81 a[href*=".picture-iron-1be9"] {
    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) {
    .secondary_9e83 {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .secondary_9e83 h1 {
        font-size: 1.75rem;
    }
    
    .iron-735e {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .shadow_2827 {
        font-size: 2rem;
    }
    
    .next_1d12 {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .next_1d12::before {
        border-radius: 17px;
    }
    
    .glass_6500 li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .preview-9eac {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .frame-hard-2dbc {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .wide_1481 img,
    .sort-4307 img {
        max-width: 100%;
        height: auto;
    }
    
    .slow-6540,
    .tag-b46e {
        max-width: 100%;
    }
}

/* 小屏幕额外保护 */
@media (max-width: 480px) {
    .slow-6540,
    .tag-b46e {
        margin: 0.75rem auto;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ========== Footer 样式（从 index.container-ba1b 移植） ========== */

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

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

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

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

/* Bonus Highlight */
.title-49a0 {
    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);
}

.title-49a0 h3 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

/* FAQ Section (从 index.container-ba1b) */
.bright_8d0e {
    padding: 4rem 0;
    background: rgba(78, 52, 46, 0.5);
}

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

.row-under-3b47 {
    max-width: 900px;
    margin: 0 auto;
}

.panel-d575 {
    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;
}

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

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

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

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

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

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

.panel-d575 li {
    margin-bottom: 0.5rem;
}

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

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

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

.search-narrow-0a14 p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.search-narrow-0a14 ul {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

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

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

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

/* Game Card */
.under_93ad {
    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;
}

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

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

/* Game Specs (usado para dados dos jogadores) */
.action_b5c2 {
    margin: 0;
}

.action_b5c2 dt {
    color: #FFEB3B;
    font-weight: 600;
    margin-top: 0.75rem;
}

.action_b5c2 dd {
    color: white;
    margin: 0.25rem 0 0 0;
    line-height: 1.6;
}

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

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

.bottom-1344 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);
}

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

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

.bottom-1344 tbody tr.header-hard-001b {
    background: rgba(76, 175, 80, 0.15);
}

.bottom-1344 tbody tr.header-hard-001b th,
.bottom-1344 tbody tr.header-hard-001b td {
    background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

.motion-6c24 h2 {
    font-size: 2.2rem;
    color: #FFEB3B;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.shade_30dd {
    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);
}

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

.background-f6f4 {
    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;
}

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

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

.texture-hard-cbf2 {
    padding-left: 2rem;
}

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

.texture-hard-cbf2 strong {
    color: #FFEB3B;
}

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

.simple_ab87,
.lite_df52,
.complex_f6c0,
.static-80bd,
.component_dark_3b74 {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

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

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

.lite_df52 {
    border-left-color: #9C27B0;
}

.lite_df52 h3 {
    color: #9C27B0;
    margin-top: 0;
}

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

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

.static-80bd {
    border-left-color: #4CAF50;
}

.static-80bd h3 {
    color: #4CAF50;
    margin-top: 0;
}

.component_dark_3b74 {
    border-left-color: #FFA726;
}

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

.simple_ab87 p,
.lite_df52 p,
.complex_f6c0 p,
.static-80bd p,
.component_dark_3b74 p {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.simple_ab87 h4,
.lite_df52 h4,
.complex_f6c0 h4,
.static-80bd h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.simple_ab87 ul,
.lite_df52 ul,
.complex_f6c0 ul,
.static-80bd ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.simple_ab87 li,
.lite_df52 li,
.complex_f6c0 li,
.static-80bd li {
    margin-bottom: 0.75rem;
}

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

.complex_f6c0 a:hover {
    text-decoration: underline;
}

/* Responsive E-E-A-T Styles */
@media (max-width: 991px) {
    .shade_30dd {
        grid-template-columns: 1fr;
    }
    
    .box-e46e {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .texture-hard-cbf2 {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .fast-b272 {
        padding: 1.5rem 0;
    }
    
    .shade_30dd {
        padding: 1rem;
    }
    
    .simple_ab87,
    .lite_df52,
    .complex_f6c0,
    .static-80bd,
    .component_dark_3b74 {
        padding: 1.5rem;
    }
}

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

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

.wide-ac5b {
    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);
}

.stale_dd84 {
    margin: 2rem 0;
}

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

.main_4d9c {
    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);
}

.current-e559 {
    text-align: center;
}

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

.silver-c11c {
    display: block;
    font-size: 0.9rem;
    color: #FFF9C4;
}

.menu-basic-6f6a {
    margin-top: 2.5rem;
    text-align: center;
}

/* CTA Primary Button Enhancement */
.focus-1842 {
    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;
}

.focus-1842: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);
}

.focus-1842 .blue_d54a {
    font-size: 1.5rem;
    animation: icon-bounce 1.5s infinite;
}

.focus-1842 .tag-874c {
    position: relative;
}

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

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

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

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

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

.slow-0871:hover::after {
    right: 1rem;
}

.slow-0871::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;
}

.slow-0871: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);
    }
}

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

.notification_pressed_6d0a {
    position: relative;
}

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

.disabled-paper-09d4 {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.stone_59d3:hover .disabled-paper-09d4 {
    transform: scale(1.05);
}

.mask-416c {
    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 */
.smooth_5207 {
    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;
}

.mask_21da {
    margin-bottom: 2rem;
}

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

.surface_15dc {
    color: #FFF9C4;
    font-size: 1.1rem;
}

.footer_warm_d4e6 {
    overflow-x: auto;
    margin: 2rem 0;
}

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

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

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

.breadcrumb_79fb th.background_red_6c90 {
    text-align: left;
}

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

.breadcrumb_79fb tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.breadcrumb_79fb tbody tr.hard_a5fa {
    background: rgba(76, 175, 80, 0.2);
}

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

.breadcrumb_79fb td.center-d059 {
    text-align: left;
    font-weight: 700;
    color: #fff;
}

.breadcrumb_79fb td.text-bright-1afd,
.breadcrumb_79fb td.tertiary_purple_ec74,
.breadcrumb_79fb td.purple_a48b {
    font-weight: 700;
    color: #4CAF50;
}

.breadcrumb_79fb td.logo-dd96 {
    font-weight: 700;
    color: #FFEB3B;
}

.breadcrumb_79fb td.form-silver-01f0 {
    color: #FF9800;
}

.breadcrumb_79fb td.input-active-f3b8 {
    color: #F44336;
}

.selected_9563 {
    margin-top: 2rem;
}

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

.caption_51fb.info-top-ce3f {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.dynamic_42ac {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.panel-upper-e0a5 strong {
    color: #4CAF50;
}

/* Success Stories Section */
.hot_aad7 {
    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 */
.down-0856 {
    margin: 3rem 0;
}

/* FAQ Section */
.bright_8d0e {
    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 */
.copper_1b31 {
    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);
}

.active_fast_95ca {
    position: relative;
}

.column_0957 {
    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);
}

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

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

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

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

.table_4f8c::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 */

.backdrop-gold-833b {
    max-width: 900px;
    margin: 0 auto;
}

.preview-343a {
    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;
}

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

.preview-343a.in-0602 {
    border: 2px solid #4CAF50;
}

.preview-343a.mask-old-4f36 {
    border: 2px solid #2196F3;
}

.preview-343a.banner-4a3e {
    border: 2px solid #FFA726;
}

.preview-343a.accent-6f26 {
    border: 2px solid #9C27B0;
}

.preview-343a.hover-left-d29f {
    border: 2px solid #00BCD4;
}

.full-7477 {
    color: #FFEB3B;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.tooltip_out_c751 {
    color: #FFF9C4;
    line-height: 1.7;
}

.tooltip_out_c751 p {
    margin: 0 0 1rem 0;
}

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

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

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

.tooltip_out_c751 .soft-e824 {
    color: #4CAF50;
    font-weight: 600;
}

.tooltip_out_c751 .rough-75a1 {
    color: #FF5722;
    font-weight: 600;
}

.tooltip_out_c751 .nav-active-b434 {
    color: #FFEB3B;
    font-weight: 600;
}

.aside_simple_bcdf {
    margin-top: 3rem;
}

/* Statistics Section */

.tertiary-out-a763 {
    text-align: center;
    margin-bottom: 3rem;
}

.tertiary-out-a763 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);
}

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

.black-33f7 {
    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;
}

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

.black-33f7.background-bronze-132b {
    border: 2px solid #4CAF50;
}

.black-33f7.wood_3cad {
    border: 2px solid #FFA726;
}

.black-33f7.hard_72d1 {
    border: 2px solid #2196F3;
}

.black-33f7.south-06a7 {
    border: 2px solid #FFEB3B;
}

.black-33f7.picture-18ee {
    border: 2px solid #9C27B0;
}

.black-33f7.notice_d882 {
    border: 2px solid #FF5722;
}

.black-33f7.top_9695 {
    border: 2px solid #00BCD4;
}

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

.black-33f7.background-bronze-132b .main_749f {
    color: #4CAF50;
}

.black-33f7.wood_3cad .main_749f {
    color: #FFA726;
}

.black-33f7.hard_72d1 .main_749f {
    color: #2196F3;
}

.black-33f7.south-06a7 .main_749f {
    color: #FFEB3B;
}

.black-33f7.picture-18ee .main_749f {
    color: #9C27B0;
}

.black-33f7.notice_d882 .main_749f {
    color: #FF5722;
}

.black-33f7.top_9695 .main_749f {
    color: #00BCD4;
}

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

/* Success Stories Section */
.hot_aad7 {
    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;
}

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

.copper_d734 {
    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;
}

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

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

.box_top_af0b {}

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

.heading-static-3dd6 {
    color: #FFF9C4;
    margin: 0.3rem 0 0 0;
    font-size: 0.85rem;
}

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

.carousel-in-9c6a {
    background: #4CAF50;
    color: #fff;
}

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

.article_748e {
    color: #FFF9C4;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article_748e:last-child {
    margin-bottom: 0;
}

.article_748e.tag-huge-04b0 {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.article_748e .silver-c11c {
    color: #FFEB3B;
    font-weight: 600;
}

.article_748e .bottom-6200 {
    color: #4CAF50;
    font-weight: 700;
}

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

.thumbnail_white_b0c9 {
    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;
}

.active-d7e7 {
    margin-top: 2rem;
    text-align: center;
}

.cool_7076 {
    color: #FFEB3B;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .accordion_e27d {
        grid-template-columns: 1fr;
    }
    
    .main_4d9c {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .picture_huge_ee1c {
        grid-template-columns: 1fr;
    }
    
    .sidebar-077f {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb_79fb {
        font-size: 0.85rem;
    }
    
    .breadcrumb_79fb th,
    .breadcrumb_79fb td {
        padding: 0.75rem 0.5rem;
    }
    
    .preview-343a {
        padding: 1.5rem;
    }
    
    .full-7477 {
        font-size: 1.1rem;
    }
    
    .active_fast_95ca h2 {
        font-size: 2rem;
    }
    
    .footer_fixed_cd60 {
        font-size: 1rem;
    }
    
    .nav-bfd7 {
        grid-template-columns: 1fr;
    }
    
    .component_cool_f09e {
        grid-template-columns: 1fr;
    }
    
    /* 移动端居中 */
    .icon_5c4c,
    .search-narrow-0a14,
    .under_93ad,
    .copper_d734,
    .black-33f7,
    .panel-d575 {
        text-align: center;
    }
    
    .icon_5c4c h1,
    .search-narrow-0a14 h3,
    .search-narrow-0a14 h4,
    .under_93ad h4,
    .panel-d575 h3 {
        text-align: center;
    }
    
    .icon_5c4c p,
    .search-narrow-0a14 p,
    .under_93ad p,
    .east_69d5 p,
    .notice_5146 p,
    .hard_5b1b p {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .icon_5c4c ul,
    .search-narrow-0a14 ul,
    .east_69d5 ul,
    .notice_5146 ul,
    .hard_5b1b ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .menu-basic-6f6a,
    .table-top-ae4d {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .wide-ac5b {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stale_dd84 {
        font-size: 0.95rem;
    }
    
    .button_easy_e827 {
        font-size: 1.5rem;
    }
    
    .silver-c11c {
        font-size: 0.8rem;
    }
    
    .dim-d583 {
        font-size: 1.5rem;
    }
    
    .surface_15dc {
        font-size: 0.95rem;
    }
    
    .breadcrumb_79fb {
        font-size: 0.75rem;
    }
    
    .black-33f7 {
        padding: 1.5rem 1rem;
    }
    
    .main_749f {
        font-size: 1.8rem;
    }
    
    .copper_d734 {
        padding: 1.5rem;
    }
    
    .outline-top-b0dd {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .container_upper_e11b {
        font-size: 1rem;
    }
    
    .full-7477 {
        font-size: 1rem;
    }
    
    .active_fast_95ca h2 {
        font-size: 1.8rem;
    }
    
    .motion-6c24 h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .search-narrow-0a14 {
        padding: 1.5rem;
        text-align: center;
    }
    
    .under_93ad {
        padding: 1.2rem;
        text-align: center;
    }
    
    .bottom-1344 th,
    .bottom-1344 td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* 移动端强制居中所有标题和区块 */
    .secondary_9e83,
    .motion-6c24,
    .smooth_5207,
    .hot_aad7,
    .down-0856,
    .bright_8d0e,
    .copper_1b31 {
        text-align: center;
    }
    
    .mask_21da,
    .icon_5c4c,
    .search-narrow-0a14,
    .row-under-3b47,
    .nav-bfd7 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .icon_5c4c h1,
    .search-narrow-0a14 h2,
    .search-narrow-0a14 h3,
    .search-narrow-0a14 h4,
    .under_93ad h4,
    .panel-d575 h3,
    .panel-d575 h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .title-49a0 {
        text-align: center;
    }
    
    .title-49a0 h3 {
        text-align: center;
    }
    
    /* 列表内容左对齐但容器居中 */
    .icon_5c4c ul,
    .icon_5c4c ol,
    .search-narrow-0a14 ul,
    .search-narrow-0a14 ol,
    .east_69d5 ul,
    .east_69d5 ol,
    .notice_5146 ul,
    .notice_5146 ol,
    .hard_5b1b ul,
    .hard_5b1b ol,
    .panel-d575 ul,
    .panel-d575 ol {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 表格容器居中 */
    .footer_warm_d4e6,
    .bottom-1344 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 按钮居中 */
    .menu-basic-6f6a,
    .table-top-ae4d,
    .aside_simple_bcdf {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero visual 居中 */
    .notification_pressed_6d0a,
    .stone_59d3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 统计卡片居中 */
    .black-33f7,
    .under_93ad,
    .copper_d734 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Info boxes 居中 */
    .east_69d5,
    .notice_5146,
    .hard_5b1b,
    .overlay_9d05 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .east_69d5 p,
    .notice_5146 p,
    .hard_5b1b p,
    .overlay_9d05 p {
        text-align: left;
    }
}

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

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

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

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

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

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

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

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

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

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

.new_8f7d {
    margin-top: 1rem;
}

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

.new_8f7d a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

.banner_paper_52a1 .steel_862a {
    color: #FFF9C4;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.banner_paper_52a1 .fresh-add3 {
    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 */
.element_simple_6293 {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.element_simple_6293 h3 {
    color: #4CAF50;
}

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

.simple-8117 h3 {
    color: #FF9800;
}

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

.yellow_7a17 h3 {
    color: #2196F3;
}

.element_simple_6293 .easy_8df2,
.simple-8117 .easy_8df2,
.yellow_7a17 .easy_8df2 {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

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

/* Success Stories Section Specific */
.hot_aad7 {
    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;
}

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

.hot_aad7 .active-d7e7 {
    background: rgba(78, 52, 46, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.hot_aad7 .cool_7076 {
    color: #FFEB3B;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Cadastro Page Responsive */
@media (max-width: 991px) {
    .banner_paper_52a1 {
        margin-bottom: 1rem;
    }
    
    .banner_paper_52a1 dt,
    .banner_paper_52a1 .container_upper_e11b,
    .banner_paper_52a1 .steel_862a,
    .banner_paper_52a1 .fresh-add3 {
        text-align: center;
    }
    
    .element_simple_6293,
    .simple-8117,
    .yellow_7a17 {
        text-align: center;
    }
    
    .hot_aad7 .cool_7076 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .banner_paper_52a1 {
        padding: 1.2rem;
    }
    
    .outline_tall_80c1 {
        font-size: 2.5rem;
    }
    
    .banner_paper_52a1 .container_upper_e11b {
        font-size: 1rem;
    }
    
    .banner_paper_52a1 .fresh-add3 {
        font-size: 0.85rem;
    }
    
    .element_simple_6293 h3,
    .simple-8117 h3,
    .yellow_7a17 h3 {
        font-size: 1.5rem;
    }
    
    .element_simple_6293 .easy_8df2,
    .simple-8117 .easy_8df2,
    .yellow_7a17 .easy_8df2 {
        font-size: 1rem;
    }
}

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

/* Author Info in Hero */
.south_708d {
    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;
}

.item_d452 {
    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;
}

.primary-af6b {
    flex: 1;
}

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

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

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

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

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

.card-4b77 {
    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;
}

.card-4b77:hover {
    background: rgba(76, 175, 80, 0.25);
    transform: translateY(-2px);
}

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

.card-4b77 span:last-child {
    color: #4CAF50;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

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

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

.hidden_5d6c details strong {
    color: #FFEB3B;
}

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

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

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

@media (max-width: 767px) {
    .item_d452 {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .pressed_3f40 {
        font-size: 0.9rem;
    }
    
    .pressed_3f40 strong {
        font-size: 1rem;
    }
    
    .image-4aa5 {
        font-size: 0.85rem;
    }
    
    .image-4aa5 small {
        font-size: 0.75rem;
    }
    
    .card-4b77 {
        padding: 0.6rem;
    }
    
    .block_solid_8407 {
        font-size: 1.3rem;
    }
    
    .card-4b77 span:last-child {
        font-size: 0.8rem;
    }
}
/* css-noise: 6bea */
.shadow-element-s1 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
