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

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

/* Header CTA Button Enhancement */
.form-dacd.photo_ea13 {
    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;
}

.form-dacd.photo_ea13: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;
}

.form-dacd.photo_ea13 .selected-c310 {
    position: relative;
    z-index: 2;
}

.form-dacd.photo_ea13 .search_836c {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    animation: arrow-slide 1s infinite;
}

.form-dacd.photo_ea13::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;
}

.form-dacd.photo_ea13: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) {
    .form-dacd.photo_ea13 {
        font-size: 0.9rem;
        padding: 0.8rem 2rem 0.8rem 1.2rem;
    }
}

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

.gold-36db {
    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;
}

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

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

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

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

.thumbnail_7832 {
    display: flex;
    align-items: center;
}

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

.solid_9898 {
    z-index: 1002;
}

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

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

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

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

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

/* 子菜单样式 - 桌面端 */
.gallery_c396 .pattern_9bf2 {
    position: relative;
}

.gallery_c396 .avatar-red-1462 {
    cursor: pointer;
}

.gallery_c396 .avatar-red-1462::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.gallery_c396 .list_39c1 {
    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) {
    .gallery_c396 .pattern_9bf2:hover .list_39c1 {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

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

.gallery_c396 .list_39c1 li {
    margin: 0;
    list-style: none;
}

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

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

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

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

.middle-c9a6.fn-active-fd42 {
    background: rgba(255, 167, 38, 0.5);
}

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

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


/* 响应式图片样式 */
.header-fast-0376,
.footer-8b95 {
    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;
}

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

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

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

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

.huge_00fe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.slow-4dae.dropdown-medium-fb7a/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;
}

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

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

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

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

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

.accent-thick-26e2 {
    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 */
.accent-thick-26e2 img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 480px) {
    .accent-thick-26e2 img {
        width: 192px;
        height: 192px;
    }
}

.hovered-809a {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.title_pink_2dce:hover .right-d942 {
    transform: translateX(5px);
}

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

.container_west_e68e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.slow-4dae.dropdown-medium-fb7a/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;
}

.badge-16e8 {
    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;
}

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

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

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

.wood-4d68 {
    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);
}

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

.widget-active-1c85 {
    font-size: 0.9rem;
    color: #e9ecef;
    opacity: 0.8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .huge_00fe {
        padding: 3rem 0;
    }
    
    .main-0985 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hard_e629 {
        padding: 1.5rem;
    }
    
    .accent-thick-26e2 {
        font-size: 2.5rem;
    }
    
    .east_8771 {
        font-size: 1.3rem;
    }
    
    .container_west_e68e {
        padding: 2rem 1rem;
    }
    
    .badge-16e8 {
        font-size: 1.8rem;
    }
    
    .paper-4252 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .huge_00fe {
        padding: 2rem 0;
    }
    
    .hard_e629 {
        padding: 1.2rem;
    }
    
    .accent-thick-26e2 {
        font-size: 2rem;
    }
    
    .east_8771 {
        font-size: 1.2rem;
    }
    
    .dirty_45ad {
        gap: 0.3rem;
    }
    
    .shade_a716 {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .container_west_e68e {
        padding: 1.5rem 1rem;
    }
    
    .badge-16e8 {
        font-size: 1.6rem;
    }
}

.dropdown_soft_2f00 .main-209d {
    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;
}

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

/* PC端横向显示 */
@media (min-width: 992px) {
    .black_81e5 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .black_81e5 .description-5658.tag_2091 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .black_81e5 .pagination-478c {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .black_81e5 {
        gap: 2rem;
    }
    
    .black_81e5 .description-5658.tag_2091 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .black_81e5 {
        gap: 2.5rem;
    }
    
    .black_81e5 .description-5658.tag_2091 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

/* 内页卡片样式 */
.pagination-478c {
    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;
}

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

.pagination-478c:hover::before {
    left: 100%;
}

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

.pagination-478c h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.pagination-478c p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pagination-478c .main-209d {
    background-color: #FF6F00;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.pagination-478c .main-209d:hover {
    background-color: #E65100;
    transform: scale(1.05);
}

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

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

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

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

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

.sidebar-3ef2 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;
}

.sidebar-3ef2 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;
}

.sidebar-3ef2 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);
}

.sidebar-3ef2 li:hover::before {
    transform: scaleY(1);
}

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

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

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

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

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

/* 导航菜单当前页面高亮 - 已禁用 */
/* .primary_176c a[href*=".tabs-mini-e328"] {
    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) {
    .dropdown_soft_2f00 {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .dropdown_soft_2f00 h1 {
        font-size: 1.75rem;
    }
    
    .pagination-478c {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .out-d7dd {
        font-size: 2rem;
    }
    
    .heading_blue_4608 {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .heading_blue_4608::before {
        border-radius: 17px;
    }
    
    .sidebar-3ef2 li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .current_d215 {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .secondary_ccdb {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .description-5658 img,
    .tag_2091 img {
        max-width: 100%;
        height: auto;
    }
    
    .header-fast-0376,
    .footer-8b95 {
        max-width: 100%;
    }
}

/* 小屏幕额外保护 */
@media (max-width: 480px) {
    .header-fast-0376,
    .footer-8b95 {
        margin: 0.75rem auto;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ========== Footer 样式（从 index.north_e4d3 移植） ========== */

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

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

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

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

/* Bonus Highlight */
.wrapper-b7e8 {
    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);
}

.wrapper-b7e8 h3 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

.plasma-fd3e li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Game Specs (usado para dados dos jogadores) */
.alert-784a {
    margin: 0;
}

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

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

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

.filter-fresh-08f1 caption {
    caption-side: top;
    padding: 1rem;
    font-weight: 600;
    color: #FFEB3B;
    text-align: left;
}

.filter-fresh-08f1 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);
}

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

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

.filter-fresh-08f1 tbody tr.notice_copper_2350 {
    background: rgba(76, 175, 80, 0.15);
}

.filter-fresh-08f1 tbody tr.notice_copper_2350 th,
.filter-fresh-08f1 tbody tr.notice_copper_2350 td {
    background: transparent;
}

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

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

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

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

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

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

.link-65a0 h5 {
    color: #FFA726;
    margin-top: 0;
}

.link-65a0 ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

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

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

.nav-old-d6f2 {
    color: #FF9800;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

.north_00fc {
    padding-left: 2rem;
}

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

.north_00fc strong {
    color: #FFEB3B;
}

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

.thumbnail-1f8a,
.accent-liquid-4d7f,
.sidebar_active_f57b,
.border_middle_c21c,
.yellow-3e44 {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.thumbnail-1f8a {
    border-left-color: #2196F3;
}

.thumbnail-1f8a h3 {
    color: #2196F3;
    margin-top: 0;
}

.accent-liquid-4d7f {
    border-left-color: #9C27B0;
}

.accent-liquid-4d7f h3 {
    color: #9C27B0;
    margin-top: 0;
}

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

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

.border_middle_c21c {
    border-left-color: #4CAF50;
}

.border_middle_c21c h3 {
    color: #4CAF50;
    margin-top: 0;
}

.yellow-3e44 {
    border-left-color: #FFA726;
}

.yellow-3e44 h3 {
    color: #FFA726;
    margin-top: 0;
}

.thumbnail-1f8a p,
.accent-liquid-4d7f p,
.sidebar_active_f57b p,
.border_middle_c21c p,
.yellow-3e44 p {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.thumbnail-1f8a h4,
.accent-liquid-4d7f h4,
.sidebar_active_f57b h4,
.border_middle_c21c h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.thumbnail-1f8a ul,
.accent-liquid-4d7f ul,
.sidebar_active_f57b ul,
.border_middle_c21c ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.thumbnail-1f8a li,
.accent-liquid-4d7f li,
.sidebar_active_f57b li,
.border_middle_c21c li {
    margin-bottom: 0.75rem;
}

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

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

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

@media (max-width: 767px) {
    .article-dynamic-54b1 {
        padding: 1.5rem 0;
    }
    
    .sidebar-a2d0 {
        padding: 1rem;
    }
    
    .thumbnail-1f8a,
    .accent-liquid-4d7f,
    .sidebar_active_f57b,
    .border_middle_c21c,
    .yellow-3e44 {
        padding: 1.5rem;
    }
}

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

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

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

.stone_ffcc {
    margin: 2rem 0;
}

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

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

.header-last-3d6f {
    text-align: center;
}

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

.sidebar-static-32e1 {
    display: block;
    font-size: 0.9rem;
    color: #FFF9C4;
}

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

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

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

.module-c324 .right-d942 {
    font-size: 1.5rem;
    animation: icon-bounce 1.5s infinite;
}

.module-c324 .selected-c310 {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.copper_3864 {
    position: relative;
}

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

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

.medium_9c02:hover .notification_wide_2420 {
    transform: scale(1.05);
}

.gradient_a885 {
    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 */
.large_fd0f {
    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;
}

.primary_7fdd {
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.message_48c0 th.heading-out-b979 {
    text-align: left;
}

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

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

.message_48c0 tbody tr.video-pro-b141 {
    background: rgba(76, 175, 80, 0.2);
}

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

.message_48c0 td.primary_2475 {
    text-align: left;
    font-weight: 700;
    color: #fff;
}

.message_48c0 td.button-smooth-bd6d,
.message_48c0 td.pagination-bright-42f3,
.message_48c0 td.chip_hard_71cd {
    font-weight: 700;
    color: #4CAF50;
}

.message_48c0 td.item_pro_b757 {
    font-weight: 700;
    color: #FFEB3B;
}

.message_48c0 td.outer_ea39 {
    color: #FF9800;
}

.message_48c0 td.pagination_fdb7 {
    color: #F44336;
}

.gradient_middle_19ff {
    margin-top: 2rem;
}

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

.nav_706c.chip_slow_2afc {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

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

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

.label-85c4 strong {
    color: #4CAF50;
}

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

/* FAQ Section */
.purple_f3d0 {
    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 */
.active-short-4046 {
    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);
}

.disabled_6052 {
    position: relative;
}

.up-210b {
    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);
}

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

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

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

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

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

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

.avatar-silver-5cff {
    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;
}

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

.avatar-silver-5cff.tertiary-complex-01ed {
    border: 2px solid #4CAF50;
}

.avatar-silver-5cff.texture-7a28 {
    border: 2px solid #2196F3;
}

.avatar-silver-5cff.overlay-8d1c {
    border: 2px solid #FFA726;
}

.avatar-silver-5cff.copper_705f {
    border: 2px solid #9C27B0;
}

.avatar-silver-5cff.box-1470 {
    border: 2px solid #00BCD4;
}

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

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

.feature-fbf7 p {
    margin: 0 0 1rem 0;
}

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

.west-4fbd {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.west-4fbd li {
    margin-bottom: 0.5rem;
}

.feature-fbf7 .alert_dark_8039 {
    color: #4CAF50;
    font-weight: 600;
}

.feature-fbf7 .message-black-4037 {
    color: #FF5722;
    font-weight: 600;
}

.feature-fbf7 .menu-old-61e2 {
    color: #FFEB3B;
    font-weight: 600;
}

.blue-95a5 {
    margin-top: 3rem;
}

/* Statistics Section */

.background-complex-8404 {
    text-align: center;
    margin-bottom: 3rem;
}

.background-complex-8404 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);
}

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

.banner-467a {
    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;
}

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

.banner-467a.search-cabf {
    border: 2px solid #4CAF50;
}

.banner-467a.breadcrumb_0427 {
    border: 2px solid #FFA726;
}

.banner-467a.link_hovered_0ef2 {
    border: 2px solid #2196F3;
}

.banner-467a.table_9bba {
    border: 2px solid #FFEB3B;
}

.banner-467a.slider-cbf6 {
    border: 2px solid #9C27B0;
}

.banner-467a.pagination-upper-22f5 {
    border: 2px solid #FF5722;
}

.banner-467a.popup-55dd {
    border: 2px solid #00BCD4;
}

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

.banner-467a.search-cabf .red-a432 {
    color: #4CAF50;
}

.banner-467a.breadcrumb_0427 .red-a432 {
    color: #FFA726;
}

.banner-467a.link_hovered_0ef2 .red-a432 {
    color: #2196F3;
}

.banner-467a.table_9bba .red-a432 {
    color: #FFEB3B;
}

.banner-467a.slider-cbf6 .red-a432 {
    color: #9C27B0;
}

.banner-467a.pagination-upper-22f5 .red-a432 {
    color: #FF5722;
}

.banner-467a.popup-55dd .red-a432 {
    color: #00BCD4;
}

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

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

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

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

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

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

.narrow_6341 {}

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

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

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

.complex-7429 {
    background: #4CAF50;
    color: #fff;
}

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

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

.wrapper-bb04:last-child {
    margin-bottom: 0;
}

.wrapper-bb04.lower-46d6 {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wrapper-bb04 .sidebar-static-32e1 {
    color: #FFEB3B;
    font-weight: 600;
}

.wrapper-bb04 .avatar-a31f {
    color: #4CAF50;
    font-weight: 700;
}

.text-b962 {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.black-76d2 {
    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;
}

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

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

/* Responsive Design */
@media (max-width: 991px) {
    .silver-89a8 {
        grid-template-columns: 1fr;
    }
    
    .item_0dd3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .border-steel-6f45 {
        grid-template-columns: 1fr;
    }
    
    .message-101b {
        grid-template-columns: 1fr;
    }
    
    .message_48c0 {
        font-size: 0.85rem;
    }
    
    .message_48c0 th,
    .message_48c0 td {
        padding: 0.75rem 0.5rem;
    }
    
    .avatar-silver-5cff {
        padding: 1.5rem;
    }
    
    .active-0a55 {
        font-size: 1.1rem;
    }
    
    .disabled_6052 h2 {
        font-size: 2rem;
    }
    
    .card_bottom_feee {
        font-size: 1rem;
    }
    
    .pro-c003 {
        grid-template-columns: 1fr;
    }
    
    .slider_solid_7803 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端居中 */
    .carousel_smooth_0485,
    .tall_86fb,
    .action_f9c6,
    .badge-f7f8,
    .banner-467a,
    .plasma-fd3e {
        text-align: center;
    }
    
    .carousel_smooth_0485 h1,
    .tall_86fb h3,
    .tall_86fb h4,
    .action_f9c6 h4,
    .plasma-fd3e h3 {
        text-align: center;
    }
    
    .carousel_smooth_0485 p,
    .tall_86fb p,
    .action_f9c6 p,
    .detail_8219 p,
    .secondary_f06d p,
    .logo-ad85 p {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .carousel_smooth_0485 ul,
    .tall_86fb ul,
    .detail_8219 ul,
    .secondary_f06d ul,
    .logo-ad85 ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .grid_red_3e48,
    .tag-b34a {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .grid_first_d01c {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stone_ffcc {
        font-size: 0.95rem;
    }
    
    .background_over_fe0a {
        font-size: 1.5rem;
    }
    
    .sidebar-static-32e1 {
        font-size: 0.8rem;
    }
    
    .selected_c223 {
        font-size: 1.5rem;
    }
    
    .popup_e9de {
        font-size: 0.95rem;
    }
    
    .message_48c0 {
        font-size: 0.75rem;
    }
    
    .banner-467a {
        padding: 1.5rem 1rem;
    }
    
    .red-a432 {
        font-size: 1.8rem;
    }
    
    .badge-f7f8 {
        padding: 1.5rem;
    }
    
    .content-soft-83b8 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wide_352f {
        font-size: 1rem;
    }
    
    .active-0a55 {
        font-size: 1rem;
    }
    
    .disabled_6052 h2 {
        font-size: 1.8rem;
    }
    
    .hot_0b69 h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .tall_86fb {
        padding: 1.5rem;
        text-align: center;
    }
    
    .action_f9c6 {
        padding: 1.2rem;
        text-align: center;
    }
    
    .filter-fresh-08f1 th,
    .filter-fresh-08f1 td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* 移动端强制居中所有标题和区块 */
    .dropdown_soft_2f00,
    .hot_0b69,
    .large_fd0f,
    .accent_over_a84e,
    .widget_5a4c,
    .purple_f3d0,
    .active-short-4046 {
        text-align: center;
    }
    
    .primary_7fdd,
    .carousel_smooth_0485,
    .tall_86fb,
    .slider_bottom_f147,
    .pro-c003 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .carousel_smooth_0485 h1,
    .tall_86fb h2,
    .tall_86fb h3,
    .tall_86fb h4,
    .action_f9c6 h4,
    .plasma-fd3e h3,
    .plasma-fd3e h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wrapper-b7e8 {
        text-align: center;
    }
    
    .wrapper-b7e8 h3 {
        text-align: center;
    }
    
    /* 列表内容左对齐但容器居中 */
    .carousel_smooth_0485 ul,
    .carousel_smooth_0485 ol,
    .tall_86fb ul,
    .tall_86fb ol,
    .detail_8219 ul,
    .detail_8219 ol,
    .secondary_f06d ul,
    .secondary_f06d ol,
    .logo-ad85 ul,
    .logo-ad85 ol,
    .plasma-fd3e ul,
    .plasma-fd3e ol {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 表格容器居中 */
    .preview_stone_5baa,
    .filter-fresh-08f1 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 按钮居中 */
    .grid_red_3e48,
    .tag-b34a,
    .blue-95a5 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero visual 居中 */
    .copper_3864,
    .medium_9c02 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 统计卡片居中 */
    .banner-467a,
    .action_f9c6,
    .badge-f7f8 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Info boxes 居中 */
    .detail_8219,
    .secondary_f06d,
    .logo-ad85,
    .plasma_ab1b {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .detail_8219 p,
    .secondary_f06d p,
    .logo-ad85 p,
    .plasma_ab1b p {
        text-align: left;
    }
}

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

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

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

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

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

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

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

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

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

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

.cold-a7bf {
    margin-top: 1rem;
}

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

.cold-a7bf a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

.brown_0448 h3 {
    color: #4CAF50;
}

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

.hero_ef26 h3 {
    color: #FF9800;
}

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

.list-5218 h3 {
    color: #2196F3;
}

.brown_0448 .background_right_3343,
.hero_ef26 .background_right_3343,
.list-5218 .background_right_3343 {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

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

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

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

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

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

/* Cadastro Page Responsive */
@media (max-width: 991px) {
    .outline_ee24 {
        margin-bottom: 1rem;
    }
    
    .outline_ee24 dt,
    .outline_ee24 .wide_352f,
    .outline_ee24 .filter_large_1099,
    .outline_ee24 .article_medium_f0b8 {
        text-align: center;
    }
    
    .brown_0448,
    .hero_ef26,
    .list-5218 {
        text-align: center;
    }
    
    .accent_over_a84e .secondary_2c7a {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .outline_ee24 {
        padding: 1.2rem;
    }
    
    .texture-dac0 {
        font-size: 2.5rem;
    }
    
    .outline_ee24 .wide_352f {
        font-size: 1rem;
    }
    
    .outline_ee24 .article_medium_f0b8 {
        font-size: 0.85rem;
    }
    
    .brown_0448 h3,
    .hero_ef26 h3,
    .list-5218 h3 {
        font-size: 1.5rem;
    }
    
    .brown_0448 .background_right_3343,
    .hero_ef26 .background_right_3343,
    .list-5218 .background_right_3343 {
        font-size: 1rem;
    }
}

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

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

.footer-366d {
    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;
}

.input_white_2640 {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough_1675 details strong {
    color: #FFEB3B;
}

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

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

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

@media (max-width: 767px) {
    .footer-366d {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .grid_hard_35c6 {
        font-size: 0.9rem;
    }
    
    .grid_hard_35c6 strong {
        font-size: 1rem;
    }
    
    .down_3066 {
        font-size: 0.85rem;
    }
    
    .down_3066 small {
        font-size: 0.75rem;
    }
    
    .preview-bf63 {
        padding: 0.6rem;
    }
    
    .outline_tiny_b250 {
        font-size: 1.3rem;
    }
    
    .preview-bf63 span:last-child {
        font-size: 0.8rem;
    }
}
/* css-noise: bc7d */
.ghost-box-q9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.3;
}
