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

/* ========== Header和导航样式（从index.section-8f31移植） ========== */

/* Header CTA Button Enhancement */
.button-mini-22ea.smooth-43da {
    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;
}

.button-mini-22ea.smooth-43da: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;
}

.button-mini-22ea.smooth-43da .avatar-white-aedc {
    position: relative;
    z-index: 2;
}

.button-mini-22ea.smooth-43da .sort_stone_83c4 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    animation: arrow-slide 1s infinite;
}

.button-mini-22ea.smooth-43da::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;
}

.button-mini-22ea.smooth-43da: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) {
    .button-mini-22ea.smooth-43da {
        font-size: 0.9rem;
        padding: 0.8rem 2rem 0.8rem 1.2rem;
    }
}

/* ========== Header和导航样式（从index.section-8f31移植） ========== */

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

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

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

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

.filter-058d a {
    display: flex;
    align-items: center;
}

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

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

.border-3586 {
    z-index: 1002;
}

/* ========== 导航 ========== */
.feature-cool-513a {
    position: relative;
}

.feature-cool-513a ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.feature-cool-513a li {
    position: relative;
    list-style: none;
}

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

.feature-cool-513a a:hover {
    color: #FFEB3B;
}

/* 子菜单样式 - 桌面端 */
.feature-cool-513a .large_4749 {
    position: relative;
}

.feature-cool-513a .surface-light-277c {
    cursor: pointer;
}

.feature-cool-513a .surface-light-277c::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.feature-cool-513a .info-0a5c {
    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) {
    .feature-cool-513a .large_4749:hover .info-0a5c {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

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

.feature-cool-513a .info-0a5c li {
    margin: 0;
    list-style: none;
}

.feature-cool-513a .info-0a5c a {
    padding: 0.75rem 1.25rem;
    color: #FFF9C4;
    white-space: nowrap;
}

.feature-cool-513a .info-0a5c a:hover {
    background: rgba(255, 167, 38, 0.2);
    color: #FFEB3B;
}

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

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

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

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

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


/* 响应式图片样式 */
.info-587f,
.slider-west-e384 {
    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;
}

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

.container-huge-8cb8 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;
}

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

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

.tall_f348::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.text-03cf.main-wood-8861/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;
}

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

.tag-short-a11f {
    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;
}

.tag-short-a11f::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;
}

.tag-short-a11f:hover::before {
    left: 100%;
}

.tag-short-a11f: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);
}

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

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

.article-focused-9a08 {
    text-align: center;
}

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

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

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

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

.photo-smooth-14d3 {
    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;
}

.photo-smooth-14d3::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;
}

.photo-smooth-14d3:hover::before {
    left: 100%;
}

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

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

.photo-smooth-14d3:hover .large-8399 {
    transform: translateX(5px);
}

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

.footer_small_a318::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.text-03cf.main-wood-8861/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;
}

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

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

.paper-870c {
    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;
}

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

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

.heading-black-7e47 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .tall_f348 {
        padding: 3rem 0;
    }
    
    .hero_advanced_09ad {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tag-short-a11f {
        padding: 1.5rem;
    }
    
    .bottom_fe5c {
        font-size: 2.5rem;
    }
    
    .border_dark_0d89 {
        font-size: 1.3rem;
    }
    
    .footer_small_a318 {
        padding: 2rem 1rem;
    }
    
    .static-1638 {
        font-size: 1.8rem;
    }
    
    .progress-huge-81a6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tall_f348 {
        padding: 2rem 0;
    }
    
    .tag-short-a11f {
        padding: 1.2rem;
    }
    
    .bottom_fe5c {
        font-size: 2rem;
    }
    
    .border_dark_0d89 {
        font-size: 1.2rem;
    }
    
    .preview_b381 {
        gap: 0.3rem;
    }
    
    .component_simple_7710 {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .footer_small_a318 {
        padding: 1.5rem 1rem;
    }
    
    .static-1638 {
        font-size: 1.6rem;
    }
}

.container-huge-8cb8 .steel_0118 {
    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;
}

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

/* PC端横向显示 */
@media (min-width: 992px) {
    .element_warm_3ee2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .element_warm_3ee2 .heading-fast-f8f4.nav-easy-9a75 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .element_warm_3ee2 .easy-d52f {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .element_warm_3ee2 {
        gap: 2rem;
    }
    
    .element_warm_3ee2 .heading-fast-f8f4.nav-easy-9a75 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .element_warm_3ee2 {
        gap: 2.5rem;
    }
    
    .element_warm_3ee2 .heading-fast-f8f4.nav-easy-9a75 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

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

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

.easy-d52f:hover::before {
    left: 100%;
}

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

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

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

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

.easy-d52f .steel_0118 {
    background-color: #FF6F00;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.easy-d52f .steel_0118:hover {
    background-color: #E65100;
    transform: scale(1.05);
}

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

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

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

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

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

.border-active-b0a6 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;
}

.border-active-b0a6 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;
}

.border-active-b0a6 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);
}

.border-active-b0a6 li:hover::before {
    transform: scaleY(1);
}

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

.fixed-22b5 {
    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;
}

.fixed-22b5::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;
}

.fixed-22b5:hover::before {
    transform: scale(1);
}

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

/* 导航菜单当前页面高亮 - 已禁用 */
/* .wide-4a0e a[href*=".small-1b9f"] {
    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) {
    .container-huge-8cb8 {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .container-huge-8cb8 h1 {
        font-size: 1.75rem;
    }
    
    .easy-d52f {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .accent-action-9c28 {
        font-size: 2rem;
    }
    
    .tabs_1f8e {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .tabs_1f8e::before {
        border-radius: 17px;
    }
    
    .border-active-b0a6 li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .banner-8ba0 {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .fixed-22b5 {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .heading-fast-f8f4 img,
    .nav-easy-9a75 img {
        max-width: 100%;
        height: auto;
    }
    
    .info-587f,
    .slider-west-e384 {
        max-width: 100%;
    }
}

/* 小屏幕额外保护 */
@media (max-width: 480px) {
    .info-587f,
    .slider-west-e384 {
        margin: 0.75rem auto;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ========== Footer 样式（从 index.section-8f31 移植） ========== */

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

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

.sidebar-clean-ad0c h4 {
    color: #F44336;
    margin-top: 0;
}

.sidebar-clean-ad0c p,
.sidebar-clean-ad0c ul {
    color: white;
    line-height: 1.8;
}

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

.status-aac9 h3 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

/* FAQ Section (从 index.section-8f31) */
.module_3b32 {
    padding: 4rem 0;
    background: rgba(78, 52, 46, 0.5);
}

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

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

.box-blue-a60b {
    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;
}

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

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

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

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

.box-blue-a60b p:last-child {
    margin-bottom: 0;
}

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

.box-blue-a60b li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-2e8e 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);
}

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

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

.secondary-2e8e tbody tr.tertiary-c845 {
    background: rgba(76, 175, 80, 0.15);
}

.secondary-2e8e tbody tr.tertiary-c845 th,
.secondary-2e8e tbody tr.tertiary-c845 td {
    background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-wide-7b41 {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

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

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

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

.outline-4a56 {
    padding-left: 2rem;
}

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

.outline-4a56 strong {
    color: #FFEB3B;
}

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

.text_12e8,
.sort-static-2e2d,
.primary-01cc,
.lower-f918,
.sort_e5e1 {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

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

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

.sort-static-2e2d {
    border-left-color: #9C27B0;
}

.sort-static-2e2d h3 {
    color: #9C27B0;
    margin-top: 0;
}

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

.primary-01cc h3 {
    color: #F44336;
    margin-top: 0;
}

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

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

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

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

.text_12e8 p,
.sort-static-2e2d p,
.primary-01cc p,
.lower-f918 p,
.sort_e5e1 p {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.text_12e8 h4,
.sort-static-2e2d h4,
.primary-01cc h4,
.lower-f918 h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.text_12e8 ul,
.sort-static-2e2d ul,
.primary-01cc ul,
.lower-f918 ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.text_12e8 li,
.sort-static-2e2d li,
.primary-01cc li,
.lower-f918 li {
    margin-bottom: 0.75rem;
}

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

.primary-01cc a:hover {
    text-decoration: underline;
}

/* Responsive E-E-A-T Styles */
@media (max-width: 991px) {
    .slow_67e3 {
        grid-template-columns: 1fr;
    }
    
    .surface-wide-7b41 {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .outline-4a56 {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .outline-301a {
        padding: 1.5rem 0;
    }
    
    .slow_67e3 {
        padding: 1rem;
    }
    
    .text_12e8,
    .sort-static-2e2d,
    .primary-01cc,
    .lower-f918,
    .sort_e5e1 {
        padding: 1.5rem;
    }
}

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

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

.description-278d {
    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);
}

.fixed-272d {
    margin: 2rem 0;
}

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

.basic-4a89 {
    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);
}

.highlight_iron_743a {
    text-align: center;
}

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

.current-4f80 {
    display: block;
    font-size: 0.9rem;
    color: #FFF9C4;
}

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

/* CTA Primary Button Enhancement */
.accent-blue-a3cf {
    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;
}

.accent-blue-a3cf: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);
}

.accent-blue-a3cf .large-8399 {
    font-size: 1.5rem;
    animation: icon-bounce 1.5s infinite;
}

.accent-blue-a3cf .avatar-white-aedc {
    position: relative;
}

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

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

/* Responsive Button Styles */
@media (max-width: 767px) {
    .accent-blue-a3cf {
        font-size: 1rem !important;
        padding: 1rem 2.5rem 1rem 1.5rem !important;
    }
    
    .accent-blue-a3cf .large-8399 {
        font-size: 1.2rem;
    }
}

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

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

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

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

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

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

.block_a563 {
    position: relative;
}

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

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

.item_5904:hover .gold_b939 {
    transform: scale(1.05);
}

.warm_1d1b {
    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 */
.left-3229 {
    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;
}

.text_da56 {
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.modal-4277 th.notice_6422 {
    text-align: left;
}

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

.modal-4277 tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.modal-4277 tbody tr.thumbnail-small-d77c {
    background: rgba(76, 175, 80, 0.2);
}

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

.modal-4277 td.element_prev_0bb7 {
    text-align: left;
    font-weight: 700;
    color: #fff;
}

.modal-4277 td.complex-99e9,
.modal-4277 td.header_2166,
.modal-4277 td.new-6f08 {
    font-weight: 700;
    color: #4CAF50;
}

.modal-4277 td.red_a9fe {
    font-weight: 700;
    color: #FFEB3B;
}

.modal-4277 td.badge-glass-d67d {
    color: #FF9800;
}

.modal-4277 td.card_east_d715 {
    color: #F44336;
}

.highlight_purple_f460 {
    margin-top: 2rem;
}

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

.upper_19a3.overlay-inner-7a67 {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.badge-fast-2e1b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.blue-7757 strong {
    color: #4CAF50;
}

/* Success Stories Section */
.heading-left-0541 {
    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 */
.secondary_red_843f {
    margin: 3rem 0;
}

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

.texture_medium_1a7d {
    position: relative;
}

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

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

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

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

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

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

.heading-26b5 {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.main_5573.motion_f3e2 {
    border: 2px solid #4CAF50;
}

.main_5573.alert-f1e9 {
    border: 2px solid #2196F3;
}

.main_5573.status-cool-edea {
    border: 2px solid #FFA726;
}

.main_5573.filter_down_7517 {
    border: 2px solid #9C27B0;
}

.main_5573.hot_2cbd {
    border: 2px solid #00BCD4;
}

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

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

.heading-6041 p {
    margin: 0 0 1rem 0;
}

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

.box-black-5c1c {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.box-black-5c1c li {
    margin-bottom: 0.5rem;
}

.heading-6041 .photo-motion-df71 {
    color: #4CAF50;
    font-weight: 600;
}

.heading-6041 .container_pro_3917 {
    color: #FF5722;
    font-weight: 600;
}

.heading-6041 .message-pink-706c {
    color: #FFEB3B;
    font-weight: 600;
}

.status_middle_bc5e {
    margin-top: 3rem;
}

/* Statistics Section */

.sort-626c {
    text-align: center;
    margin-bottom: 3rem;
}

.sort-626c 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);
}

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

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

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

.left_19dc.middle-979d {
    border: 2px solid #4CAF50;
}

.left_19dc.south_34b4 {
    border: 2px solid #FFA726;
}

.left_19dc.narrow-c48d {
    border: 2px solid #2196F3;
}

.left_19dc.backdrop-solid-e7fb {
    border: 2px solid #FFEB3B;
}

.left_19dc.alert-clean-89c9 {
    border: 2px solid #9C27B0;
}

.left_19dc.grid-1d0f {
    border: 2px solid #FF5722;
}

.left_19dc.video-inner-ba04 {
    border: 2px solid #00BCD4;
}

.modal-25fc {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.left_19dc.middle-979d .modal-25fc {
    color: #4CAF50;
}

.left_19dc.south_34b4 .modal-25fc {
    color: #FFA726;
}

.left_19dc.narrow-c48d .modal-25fc {
    color: #2196F3;
}

.left_19dc.backdrop-solid-e7fb .modal-25fc {
    color: #FFEB3B;
}

.left_19dc.alert-clean-89c9 .modal-25fc {
    color: #9C27B0;
}

.left_19dc.grid-1d0f .modal-25fc {
    color: #FF5722;
}

.left_19dc.video-inner-ba04 .modal-25fc {
    color: #00BCD4;
}

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

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

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

.up-0aaf {
    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;
}

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

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

.wrapper-fresh-384d {}

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

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

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

.menu-hard-f831 {
    background: #4CAF50;
    color: #fff;
}

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

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

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

.detail_dark_732e.container_white_d002 {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.detail_dark_732e .current-4f80 {
    color: #FFEB3B;
    font-weight: 600;
}

.detail_dark_732e .thick-b3d1 {
    color: #4CAF50;
    font-weight: 700;
}

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

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

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

.status-421d {
    color: #FFEB3B;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .popup-cc5a {
        grid-template-columns: 1fr;
    }
    
    .basic-4a89 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .secondary_white_b182 {
        grid-template-columns: 1fr;
    }
    
    .layout_tall_df67 {
        grid-template-columns: 1fr;
    }
    
    .modal-4277 {
        font-size: 0.85rem;
    }
    
    .modal-4277 th,
    .modal-4277 td {
        padding: 0.75rem 0.5rem;
    }
    
    .main_5573 {
        padding: 1.5rem;
    }
    
    .caption_2797 {
        font-size: 1.1rem;
    }
    
    .texture_medium_1a7d h2 {
        font-size: 2rem;
    }
    
    .stale_72e5 {
        font-size: 1rem;
    }
    
    .hover-focused-a2de {
        grid-template-columns: 1fr;
    }
    
    .inner_8826 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端居中 */
    .tag-focused-2ddb,
    .stale_496d,
    .box-next-1006,
    .up-0aaf,
    .left_19dc,
    .box-blue-a60b {
        text-align: center;
    }
    
    .tag-focused-2ddb h1,
    .stale_496d h3,
    .stale_496d h4,
    .box-next-1006 h4,
    .box-blue-a60b h3 {
        text-align: center;
    }
    
    .tag-focused-2ddb p,
    .stale_496d p,
    .box-next-1006 p,
    .progress_93f5 p,
    .accent_simple_199e p,
    .sidebar-clean-ad0c p {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tag-focused-2ddb ul,
    .stale_496d ul,
    .progress_93f5 ul,
    .accent_simple_199e ul,
    .sidebar-clean-ad0c ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .active_7f41,
    .row-warm-d3ea {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .description-278d {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .fixed-272d {
        font-size: 0.95rem;
    }
    
    .text_brown_5654 {
        font-size: 1.5rem;
    }
    
    .current-4f80 {
        font-size: 0.8rem;
    }
    
    .gallery-4628 {
        font-size: 1.5rem;
    }
    
    .card-7270 {
        font-size: 0.95rem;
    }
    
    .modal-4277 {
        font-size: 0.75rem;
    }
    
    .left_19dc {
        padding: 1.5rem 1rem;
    }
    
    .modal-25fc {
        font-size: 1.8rem;
    }
    
    .up-0aaf {
        padding: 1.5rem;
    }
    
    .right_ac79 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shadow_1037 {
        font-size: 1rem;
    }
    
    .caption_2797 {
        font-size: 1rem;
    }
    
    .texture_medium_1a7d h2 {
        font-size: 1.8rem;
    }
    
    .shadow_green_d41a h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .stale_496d {
        padding: 1.5rem;
        text-align: center;
    }
    
    .box-next-1006 {
        padding: 1.2rem;
        text-align: center;
    }
    
    .secondary-2e8e th,
    .secondary-2e8e td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* 移动端强制居中所有标题和区块 */
    .container-huge-8cb8,
    .shadow_green_d41a,
    .left-3229,
    .heading-left-0541,
    .secondary_red_843f,
    .module_3b32,
    .wood_92cf {
        text-align: center;
    }
    
    .text_da56,
    .tag-focused-2ddb,
    .stale_496d,
    .upper_a381,
    .hover-focused-a2de {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tag-focused-2ddb h1,
    .stale_496d h2,
    .stale_496d h3,
    .stale_496d h4,
    .box-next-1006 h4,
    .box-blue-a60b h3,
    .box-blue-a60b h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .status-aac9 {
        text-align: center;
    }
    
    .status-aac9 h3 {
        text-align: center;
    }
    
    /* 列表内容左对齐但容器居中 */
    .tag-focused-2ddb ul,
    .tag-focused-2ddb ol,
    .stale_496d ul,
    .stale_496d ol,
    .progress_93f5 ul,
    .progress_93f5 ol,
    .accent_simple_199e ul,
    .accent_simple_199e ol,
    .sidebar-clean-ad0c ul,
    .sidebar-clean-ad0c ol,
    .box-blue-a60b ul,
    .box-blue-a60b ol {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 表格容器居中 */
    .tall_2269,
    .secondary-2e8e {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 按钮居中 */
    .active_7f41,
    .row-warm-d3ea,
    .status_middle_bc5e {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero visual 居中 */
    .block_a563,
    .item_5904 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 统计卡片居中 */
    .left_19dc,
    .box-next-1006,
    .up-0aaf {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Info boxes 居中 */
    .progress_93f5,
    .accent_simple_199e,
    .sidebar-clean-ad0c,
    .primary-small-a832 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .progress_93f5 p,
    .accent_simple_199e p,
    .sidebar-clean-ad0c p,
    .primary-small-a832 p {
        text-align: left;
    }
}

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

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

.content-narrow-35d2 h3 {
    color: #FFA726;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
}

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

.content-narrow-35d2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-narrow-35d2 li {
    margin-bottom: 0.5rem;
}

.content-narrow-35d2 a {
    color: #FFF9C4;
    text-decoration: none;
    transition: color 0.3s;
}

.content-narrow-35d2 a:hover {
    color: #FFEB3B;
}

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

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

.copper-d1b2 {
    margin-top: 1rem;
}

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

.copper-d1b2 a:hover {
    text-decoration: underline;
}

/* Footer 响应式 */
@media (max-width: 991px) {
    .notification-iron-dd67 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-narrow-35d2 {
        text-align: center;
    }
}

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

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

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

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

.active-warm-6de2 .shadow_1037 {
    color: #FFEB3B;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.3rem 0;
}

.active-warm-6de2 .status_silver_fe0d {
    color: #FFF9C4;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.active-warm-6de2 .active_stale_5bab {
    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 */
.modal_dd63 {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.modal_dd63 h3 {
    color: #4CAF50;
}

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

.breadcrumb-43e3 h3 {
    color: #FF9800;
}

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

.basic_a11c h3 {
    color: #2196F3;
}

.modal_dd63 .modal_pressed_fb42,
.breadcrumb-43e3 .modal_pressed_fb42,
.basic_a11c .modal_pressed_fb42 {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

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

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

.heading-left-0541 h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.heading-left-0541 .status-421d {
    color: #FFEB3B;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Cadastro Page Responsive */
@media (max-width: 991px) {
    .active-warm-6de2 {
        margin-bottom: 1rem;
    }
    
    .active-warm-6de2 dt,
    .active-warm-6de2 .shadow_1037,
    .active-warm-6de2 .status_silver_fe0d,
    .active-warm-6de2 .active_stale_5bab {
        text-align: center;
    }
    
    .modal_dd63,
    .breadcrumb-43e3,
    .basic_a11c {
        text-align: center;
    }
    
    .heading-left-0541 .status-421d {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .active-warm-6de2 {
        padding: 1.2rem;
    }
    
    .progress_a66e {
        font-size: 2.5rem;
    }
    
    .active-warm-6de2 .shadow_1037 {
        font-size: 1rem;
    }
    
    .active-warm-6de2 .active_stale_5bab {
        font-size: 0.85rem;
    }
    
    .modal_dd63 h3,
    .breadcrumb-43e3 h3,
    .basic_a11c h3 {
        font-size: 1.5rem;
    }
    
    .modal_dd63 .modal_pressed_fb42,
    .breadcrumb-43e3 .modal_pressed_fb42,
    .basic_a11c .modal_pressed_fb42 {
        font-size: 1rem;
    }
}

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

/* Author Info in Hero */
.overlay-upper-3aab {
    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;
}

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

.north_6762 {
    flex: 1;
}

.caption-current-3e23 {
    color: #FFF9C4;
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
}

.caption-current-3e23 strong {
    color: #FFEB3B;
    font-size: 1.1rem;
}

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

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

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

.pagination-west-f0eb {
    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;
}

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

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

.pagination-west-f0eb span:last-child {
    color: #4CAF50;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.out-8370 details div {
    padding: 1rem 1.5rem 1.5rem;
}

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

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

.out-8370 details p {
    margin: 0.8rem 0;
}

.out-8370 details strong {
    color: #FFEB3B;
}

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

.out-8370 details a:hover {
    color: #66BB6A;
}

/* Responsive Design for E-E-A-T Elements */
@media (max-width: 991px) {
    .overlay-upper-3aab {
        flex-direction: column;
        text-align: center;
    }
    
    .north_6762 {
        text-align: center;
    }
    
    .widget_1b0d {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dynamic_d94c {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .caption-current-3e23 {
        font-size: 0.9rem;
    }
    
    .caption-current-3e23 strong {
        font-size: 1rem;
    }
    
    .image-bright-1ce3 {
        font-size: 0.85rem;
    }
    
    .image-bright-1ce3 small {
        font-size: 0.75rem;
    }
    
    .pagination-west-f0eb {
        padding: 0.6rem;
    }
    
    .old-fc38 {
        font-size: 1.3rem;
    }
    
    .pagination-west-f0eb span:last-child {
        font-size: 0.8rem;
    }
}
/* css-noise: 3618 */
.phantom-card-z0 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
