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

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

/* Header CTA Button Enhancement */
.accent_fast_19bd.thick_6b6c {
    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;
}

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

.accent_fast_19bd.thick_6b6c .nav_cold_f176 {
    position: relative;
    z-index: 2;
}

.accent_fast_19bd.thick_6b6c .active-pink-0f07 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    animation: arrow-slide 1s infinite;
}

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

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

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

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

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

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

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

.focused-8fe9 a {
    display: flex;
    align-items: center;
}

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

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

.detail-slow-c9e4 {
    z-index: 1002;
}

/* ========== 导航 ========== */
.shadow-1e1f {
    position: relative;
}

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

.shadow-1e1f li {
    position: relative;
    list-style: none;
}

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

.shadow-1e1f a:hover {
    color: #FFEB3B;
}

/* 子菜单样式 - 桌面端 */
.shadow-1e1f .surface-first-aa47 {
    position: relative;
}

.shadow-1e1f .active-complex-eaca {
    cursor: pointer;
}

.shadow-1e1f .active-complex-eaca::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.shadow-1e1f .hero-3a47 {
    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) {
    .shadow-1e1f .surface-first-aa47:hover .hero-3a47 {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

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

.shadow-1e1f .hero-3a47 li {
    margin: 0;
    list-style: none;
}

.shadow-1e1f .hero-3a47 a {
    padding: 0.75rem 1.25rem;
    color: #FFF9C4;
    white-space: nowrap;
}

.shadow-1e1f .hero-3a47 a:hover {
    background: rgba(255, 167, 38, 0.2);
    color: #FFEB3B;
}

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

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

.mask_ad9e.fn-active-98fa {
    background: rgba(255, 167, 38, 0.5);
}

/* ========== 移动端导航 ========== */
@media (max-width: 991px) {
    .pink-c2de {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #3E2723 0%, #4E342E 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .list-e548 {
        position: relative;
        flex-wrap: wrap;
    }
    
    /* 移动端菜单按钮 */
    .mask_ad9e {
        display: block !important;
        order: 2;
        z-index: 1003;
    }
    
    /* 品牌logo */
    .accent_soft_a96e {
        order: 1;
        z-index: 1003;
    }
    
    .focused-8fe9 {
        order: 1;
        z-index: 1003;
    }
    
    /* CTA按钮 */
    .detail-slow-c9e4 {
        order: 2;
        margin-right: 1rem;
        z-index: 1003;
    }
    
    /* 导航容器 */
    .shadow-1e1f {
        order: 4;
        width: 100%;
        flex-basis: 100%;
        position: relative;
    }
    
    /* 移动端菜单 */
    .shadow-1e1f 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;
    }
    
    /* 显示菜单 - 关键样式！*/
    .shadow-1e1f ul.fn-active-98fa {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* 移动端菜单项 */
    .shadow-1e1f > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        list-style: none;
    }
    
    .shadow-1e1f > ul > li:last-child {
        border-bottom: none;
    }
    
    .shadow-1e1f > ul > li > a {
        padding: 1.2rem 1.5rem !important;
        display: block !important;
        width: 100%;
        font-size: 1.05rem;
        color: #FFF9C4 !important;
        font-weight: 500;
    }
    
    /* 移动端子菜单容器 */
    .shadow-1e1f .surface-first-aa47 {
        width: 100%;
    }
    
    /* 移动端子菜单 */
    .shadow-1e1f .hero-3a47 {
        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;
    }
    
    /* 显示子菜单 - 关键样式！ */
    .shadow-1e1f .surface-first-aa47.fn-active-98fa > .hero-3a47 {
        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;
        }
    }
    
    /* 子菜单项样式 */
    .shadow-1e1f .hero-3a47 li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        margin: 0;
        list-style: none;
    }
    
    .shadow-1e1f .hero-3a47 li:last-child {
        border-bottom: none;
    }
    
    .shadow-1e1f .hero-3a47 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;
    }
    
    /* 子菜单前的箭头图标 */
    .shadow-1e1f .hero-3a47 a::before {
        content: "→";
        position: absolute;
        left: 2rem;
        color: #FFA726;
    }
    
    .shadow-1e1f .hero-3a47 a:hover {
        background: rgba(255, 167, 38, 0.2);
        padding-left: 3.5rem !important;
    }
    
    /* 子菜单切换图标 */
    .shadow-1e1f .active-complex-eaca::after {
        content: " ▼" !important;
        font-size: 0.7rem;
        margin-left: 0.5rem;
        display: inline-block !important;
        transition: transform 0.3s;
    }
    
    .shadow-1e1f .surface-first-aa47.fn-active-98fa > .active-complex-eaca::after {
        transform: rotate(180deg) !important;
    }
}

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


/* 响应式图片样式 */
.gas-882b,
.block-fe85 {
    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;
}

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

.overlay-8cfd 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;
}

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

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

.breadcrumb-7a64::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.box-6500.selected-06b7/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;
}

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

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

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

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

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

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

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

.purple-9e49 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.item_mini_3ef7:hover .carousel_outer_4a2b {
    transform: translateX(5px);
}

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

.caption-8651::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.box-6500.selected-06b7/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;
}

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

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

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

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

.pagination-warm-b7e1 {
    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);
}

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

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

/* 响应式设计 */
@media (max-width: 768px) {
    .breadcrumb-7a64 {
        padding: 3rem 0;
    }
    
    .frame-3f7b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .widget_bright_69b2 {
        padding: 1.5rem;
    }
    
    .disabled_1462 {
        font-size: 2.5rem;
    }
    
    .menu_bottom_a650 {
        font-size: 1.3rem;
    }
    
    .caption-8651 {
        padding: 2rem 1rem;
    }
    
    .panel-e5d0 {
        font-size: 1.8rem;
    }
    
    .secondary-46eb {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-7a64 {
        padding: 2rem 0;
    }
    
    .widget_bright_69b2 {
        padding: 1.2rem;
    }
    
    .disabled_1462 {
        font-size: 2rem;
    }
    
    .menu_bottom_a650 {
        font-size: 1.2rem;
    }
    
    .box-5cdb {
        gap: 0.3rem;
    }
    
    .sidebar_d616 {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .caption-8651 {
        padding: 1.5rem 1rem;
    }
    
    .panel-e5d0 {
        font-size: 1.6rem;
    }
}

.overlay-8cfd .box-0b08 {
    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;
}

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

/* PC端横向显示 */
@media (min-width: 992px) {
    .medium_f0ea {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .medium_f0ea .dark-8baa.badge-5f91 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .medium_f0ea .modal-4bf5 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .medium_f0ea {
        gap: 2rem;
    }
    
    .medium_f0ea .dark-8baa.badge-5f91 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .medium_f0ea {
        gap: 2.5rem;
    }
    
    .medium_f0ea .dark-8baa.badge-5f91 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

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

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

.modal-4bf5:hover::before {
    left: 100%;
}

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

.modal-4bf5 h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.modal-4bf5 p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-4bf5 .box-0b08 {
    background-color: #FF6F00;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.modal-4bf5 .box-0b08:hover {
    background-color: #E65100;
    transform: scale(1.05);
}

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

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

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

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

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

.button-35ff 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;
}

.button-35ff 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;
}

.button-35ff 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);
}

.button-35ff li:hover::before {
    transform: scaleY(1);
}

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

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

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

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

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

/* 导航菜单当前页面高亮 - 已禁用 */
/* .hover-70d1 a[href*=".hover_b8cb"] {
    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) {
    .overlay-8cfd {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .overlay-8cfd h1 {
        font-size: 1.75rem;
    }
    
    .modal-4bf5 {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .message_c1e1 {
        font-size: 2rem;
    }
    
    .fast_b40b {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .fast_b40b::before {
        border-radius: 17px;
    }
    
    .button-35ff li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .link-21be {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .active_be9f {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .dark-8baa img,
    .badge-5f91 img {
        max-width: 100%;
        height: auto;
    }
    
    .gas-882b,
    .block-fe85 {
        max-width: 100%;
    }
}

/* 小屏幕额外保护 */
@media (max-width: 480px) {
    .gas-882b,
    .block-fe85 {
        margin: 0.75rem auto;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

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

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

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

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

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

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

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

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

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

.input-warm-0981 {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Game Specs (usado para dados dos jogadores) */
.breadcrumb-hovered-6f96 {
    margin: 0;
}

.breadcrumb-hovered-6f96 dt {
    color: #FFEB3B;
    font-weight: 600;
    margin-top: 0.75rem;
}

.breadcrumb-hovered-6f96 dd {
    color: white;
    margin: 0.25rem 0 0 0;
    line-height: 1.6;
}

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

.feature-over-22bc caption {
    caption-side: top;
    padding: 1rem;
    font-weight: 600;
    color: #FFEB3B;
    text-align: left;
}

.feature-over-22bc 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);
}

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

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

.feature-over-22bc tbody tr.active_outer_5a56 {
    background: rgba(76, 175, 80, 0.15);
}

.feature-over-22bc tbody tr.active_outer_5a56 th,
.feature-over-22bc tbody tr.active_outer_5a56 td {
    background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-right-6f49 {
    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;
}

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

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

.fresh_bee5 {
    padding-left: 2rem;
}

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

.fresh_bee5 strong {
    color: #FFEB3B;
}

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

.article-8e19,
.selected-8d0d,
.article_upper_72ad,
.sort_826e,
.notice_current_27f5 {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.article-8e19 {
    border-left-color: #2196F3;
}

.article-8e19 h3 {
    color: #2196F3;
    margin-top: 0;
}

.selected-8d0d {
    border-left-color: #9C27B0;
}

.selected-8d0d h3 {
    color: #9C27B0;
    margin-top: 0;
}

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

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

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

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

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

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

.article-8e19 p,
.selected-8d0d p,
.article_upper_72ad p,
.sort_826e p,
.notice_current_27f5 p {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.article-8e19 h4,
.selected-8d0d h4,
.article_upper_72ad h4,
.sort_826e h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.article-8e19 ul,
.selected-8d0d ul,
.article_upper_72ad ul,
.sort_826e ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-8e19 li,
.selected-8d0d li,
.article_upper_72ad li,
.sort_826e li {
    margin-bottom: 0.75rem;
}

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

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

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

@media (max-width: 767px) {
    .sidebar-medium-cf13 {
        padding: 1.5rem 0;
    }
    
    .input-8070 {
        padding: 1rem;
    }
    
    .article-8e19,
    .selected-8d0d,
    .article_upper_72ad,
    .sort_826e,
    .notice_current_27f5 {
        padding: 1.5rem;
    }
}

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

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

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

.widget_purple_69b1 {
    margin: 2rem 0;
}

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

.pressed-53a7 {
    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);
}

.dirty-953a {
    text-align: center;
}

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

.widget-837a {
    display: block;
    font-size: 0.9rem;
    color: #FFF9C4;
}

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

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

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

.detail_middle_bc56 .carousel_outer_4a2b {
    font-size: 1.5rem;
    animation: icon-bounce 1.5s infinite;
}

.detail_middle_bc56 .nav_cold_f176 {
    position: relative;
}

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

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

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

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

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

.purple-a66d:hover::after {
    right: 1rem;
}

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

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

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

.feature-6c03 {
    position: relative;
}

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

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

.input_slow_5d76:hover .menu_small_4aff {
    transform: scale(1.05);
}

.fresh-5ad9 {
    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 */
.status_dark_4727 {
    background: linear-gradient(180deg, rgba(141, 110, 99, 0.1) 0%, rgba(109, 76, 65, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem 1.5rem !important;
}

.mask_66ae {
    margin-bottom: 2rem;
}

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

.primary-stale-bed0 {
    color: #FFF9C4;
    font-size: 1.1rem;
}

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

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

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

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

.yellow-763c th.card-2dad {
    text-align: left;
}

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

.yellow-763c tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.yellow-763c tbody tr.thumbnail_69ad {
    background: rgba(76, 175, 80, 0.2);
}

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

.yellow-763c td.north-ff7a {
    text-align: left;
    font-weight: 700;
    color: #fff;
}

.yellow-763c td.tabs-1a13,
.yellow-763c td.soft-a1ff,
.yellow-763c td.card_plasma_dce5 {
    font-weight: 700;
    color: #4CAF50;
}

.yellow-763c td.sort_black_c7d2 {
    font-weight: 700;
    color: #FFEB3B;
}

.yellow-763c td.complex_f837 {
    color: #FF9800;
}

.yellow-763c td.panel_84a8 {
    color: #F44336;
}

.hover-0ca4 {
    margin-top: 2rem;
}

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

.up-4c22.section-2529 {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

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

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

.north_77fa strong {
    color: #4CAF50;
}

/* Success Stories Section */
.widget_6b48 {
    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 */
.element-old-4641 {
    margin: 3rem 0;
}

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

.alert_full_47b2 {
    position: relative;
}

.gold-6ecd {
    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);
}

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

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

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

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

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

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

.layout-0a99 {
    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;
}

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

.layout-0a99.secondary_084f {
    border: 2px solid #4CAF50;
}

.layout-0a99.clean-9a80 {
    border: 2px solid #2196F3;
}

.layout-0a99.paragraph-987c {
    border: 2px solid #FFA726;
}

.layout-0a99.paper-adc3 {
    border: 2px solid #9C27B0;
}

.layout-0a99.aside_fc3d {
    border: 2px solid #00BCD4;
}

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

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

.under-0469 p {
    margin: 0 0 1rem 0;
}

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

.sort-south-2ab5 {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.sort-south-2ab5 li {
    margin-bottom: 0.5rem;
}

.under-0469 .frame_gas_3411 {
    color: #4CAF50;
    font-weight: 600;
}

.under-0469 .hidden-soft-586d {
    color: #FF5722;
    font-weight: 600;
}

.under-0469 .north-e323 {
    color: #FFEB3B;
    font-weight: 600;
}

.main-6da8 {
    margin-top: 3rem;
}

/* Statistics Section */

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

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

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

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

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

.input_2f1c.badge_south_bb41 {
    border: 2px solid #4CAF50;
}

.input_2f1c.large-6f4c {
    border: 2px solid #FFA726;
}

.input_2f1c.icon-6379 {
    border: 2px solid #2196F3;
}

.input_2f1c.pagination-simple-a8ff {
    border: 2px solid #FFEB3B;
}

.input_2f1c.paragraph_steel_dff3 {
    border: 2px solid #9C27B0;
}

.input_2f1c.blue-4e48 {
    border: 2px solid #FF5722;
}

.input_2f1c.hover_orange_b645 {
    border: 2px solid #00BCD4;
}

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

.input_2f1c.badge_south_bb41 .icon_5548 {
    color: #4CAF50;
}

.input_2f1c.large-6f4c .icon_5548 {
    color: #FFA726;
}

.input_2f1c.icon-6379 .icon_5548 {
    color: #2196F3;
}

.input_2f1c.pagination-simple-a8ff .icon_5548 {
    color: #FFEB3B;
}

.input_2f1c.paragraph_steel_dff3 .icon_5548 {
    color: #9C27B0;
}

.input_2f1c.blue-4e48 .icon_5548 {
    color: #FF5722;
}

.input_2f1c.hover_orange_b645 .icon_5548 {
    color: #00BCD4;
}

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

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

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

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

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

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

.panel-16be {}

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

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

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

.active-a563 {
    background: #4CAF50;
    color: #fff;
}

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

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

.yellow-a829:last-child {
    margin-bottom: 0;
}

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

.yellow-a829 .widget-837a {
    color: #FFEB3B;
    font-weight: 600;
}

.yellow-a829 .link-2970 {
    color: #4CAF50;
    font-weight: 700;
}

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

.container_brown_c7b8 {
    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_mini_6815 {
    margin-top: 2rem;
    text-align: center;
}

.panel-hovered-ff6f {
    color: #FFEB3B;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .summary-center-3a4c {
        grid-template-columns: 1fr;
    }
    
    .pressed-53a7 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .widget-2406 {
        grid-template-columns: 1fr;
    }
    
    .image_ce95 {
        grid-template-columns: 1fr;
    }
    
    .yellow-763c {
        font-size: 0.85rem;
    }
    
    .yellow-763c th,
    .yellow-763c td {
        padding: 0.75rem 0.5rem;
    }
    
    .layout-0a99 {
        padding: 1.5rem;
    }
    
    .column_bottom_6f3a {
        font-size: 1.1rem;
    }
    
    .alert_full_47b2 h2 {
        font-size: 2rem;
    }
    
    .hero-a507 {
        font-size: 1rem;
    }
    
    .footer-upper-a2a1 {
        grid-template-columns: 1fr;
    }
    
    .silver_6d3a {
        grid-template-columns: 1fr;
    }
    
    /* 移动端居中 */
    .warm_a125,
    .button-11e9,
    .frame_tiny_cc0a,
    .header_top_9a6f,
    .input_2f1c,
    .short_5a3c {
        text-align: center;
    }
    
    .warm_a125 h1,
    .button-11e9 h3,
    .button-11e9 h4,
    .frame_tiny_cc0a h4,
    .short_5a3c h3 {
        text-align: center;
    }
    
    .warm_a125 p,
    .button-11e9 p,
    .frame_tiny_cc0a p,
    .yellow_1127 p,
    .inner-4993 p,
    .hover_short_e688 p {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .warm_a125 ul,
    .button-11e9 ul,
    .yellow_1127 ul,
    .inner-4993 ul,
    .hover_short_e688 ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .small_4d4c,
    .fresh-1340 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hovered_2f8f {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .widget_purple_69b1 {
        font-size: 0.95rem;
    }
    
    .menu-dirty-0969 {
        font-size: 1.5rem;
    }
    
    .widget-837a {
        font-size: 0.8rem;
    }
    
    .hot_327b {
        font-size: 1.5rem;
    }
    
    .primary-stale-bed0 {
        font-size: 0.95rem;
    }
    
    .yellow-763c {
        font-size: 0.75rem;
    }
    
    .input_2f1c {
        padding: 1.5rem 1rem;
    }
    
    .icon_5548 {
        font-size: 1.8rem;
    }
    
    .header_top_9a6f {
        padding: 1.5rem;
    }
    
    .banner_33a7 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .accent-4204 {
        font-size: 1rem;
    }
    
    .column_bottom_6f3a {
        font-size: 1rem;
    }
    
    .alert_full_47b2 h2 {
        font-size: 1.8rem;
    }
    
    .message_fluid_db0e h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .button-11e9 {
        padding: 1.5rem;
        text-align: center;
    }
    
    .frame_tiny_cc0a {
        padding: 1.2rem;
        text-align: center;
    }
    
    .feature-over-22bc th,
    .feature-over-22bc td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* 移动端强制居中所有标题和区块 */
    .overlay-8cfd,
    .message_fluid_db0e,
    .status_dark_4727,
    .widget_6b48,
    .element-old-4641,
    .solid_694b,
    .motion_54d7 {
        text-align: center;
    }
    
    .mask_66ae,
    .warm_a125,
    .button-11e9,
    .input-warm-0981,
    .footer-upper-a2a1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .warm_a125 h1,
    .button-11e9 h2,
    .button-11e9 h3,
    .button-11e9 h4,
    .frame_tiny_cc0a h4,
    .short_5a3c h3,
    .short_5a3c h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card_rough_5d0f {
        text-align: center;
    }
    
    .card_rough_5d0f h3 {
        text-align: center;
    }
    
    /* 列表内容左对齐但容器居中 */
    .warm_a125 ul,
    .warm_a125 ol,
    .button-11e9 ul,
    .button-11e9 ol,
    .yellow_1127 ul,
    .yellow_1127 ol,
    .inner-4993 ul,
    .inner-4993 ol,
    .hover_short_e688 ul,
    .hover_short_e688 ol,
    .short_5a3c ul,
    .short_5a3c ol {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 表格容器居中 */
    .grid_action_d69d,
    .feature-over-22bc {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 按钮居中 */
    .small_4d4c,
    .fresh-1340,
    .main-6da8 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero visual 居中 */
    .feature-6c03,
    .input_slow_5d76 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 统计卡片居中 */
    .input_2f1c,
    .frame_tiny_cc0a,
    .header_top_9a6f {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Info boxes 居中 */
    .yellow_1127,
    .inner-4993,
    .hover_short_e688,
    .container_4e25 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .yellow_1127 p,
    .inner-4993 p,
    .hover_short_e688 p,
    .container_4e25 p {
        text-align: left;
    }
}

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

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

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

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

.backdrop-hovered-a989 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop-hovered-a989 li {
    margin-bottom: 0.5rem;
}

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

.backdrop-hovered-a989 a:hover {
    color: #FFEB3B;
}

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

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

.gallery-2dc1 {
    margin-top: 1rem;
}

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

.gallery-2dc1 a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.active-up-0d15 .accent-4204 {
    color: #FFEB3B;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.3rem 0;
}

.active-up-0d15 .title-f01f {
    color: #FFF9C4;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.active-up-0d15 .brown_66e4 {
    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 */
.content-f52e {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.content-f52e h3 {
    color: #4CAF50;
}

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

.secondary_172b h3 {
    color: #FF9800;
}

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

.top_086f h3 {
    color: #2196F3;
}

.content-f52e .hard-4bb5,
.secondary_172b .hard-4bb5,
.top_086f .hard-4bb5 {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

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

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

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

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

.widget_6b48 .panel-hovered-ff6f {
    color: #FFEB3B;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Cadastro Page Responsive */
@media (max-width: 991px) {
    .active-up-0d15 {
        margin-bottom: 1rem;
    }
    
    .active-up-0d15 dt,
    .active-up-0d15 .accent-4204,
    .active-up-0d15 .title-f01f,
    .active-up-0d15 .brown_66e4 {
        text-align: center;
    }
    
    .content-f52e,
    .secondary_172b,
    .top_086f {
        text-align: center;
    }
    
    .widget_6b48 .panel-hovered-ff6f {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .active-up-0d15 {
        padding: 1.2rem;
    }
    
    .list-e09e {
        font-size: 2.5rem;
    }
    
    .active-up-0d15 .accent-4204 {
        font-size: 1rem;
    }
    
    .active-up-0d15 .brown_66e4 {
        font-size: 0.85rem;
    }
    
    .content-f52e h3,
    .secondary_172b h3,
    .top_086f h3 {
        font-size: 1.5rem;
    }
    
    .content-f52e .hard-4bb5,
    .secondary_172b .hard-4bb5,
    .top_086f .hard-4bb5 {
        font-size: 1rem;
    }
}

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

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

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

.paragraph-df74 {
    flex: 1;
}

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

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

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

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

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

.feature-32cb {
    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;
}

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

.slider-97f0 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.feature-32cb span:last-child {
    color: #4CAF50;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

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

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

.outline_active_c047 details strong {
    color: #FFEB3B;
}

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

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

/* Responsive Design for E-E-A-T Elements */
@media (max-width: 991px) {
    .accordion-91ae {
        flex-direction: column;
        text-align: center;
    }
    
    .paragraph-df74 {
        text-align: center;
    }
    
    .module_ef2f {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .new_24f8 {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .next_f250 {
        font-size: 0.9rem;
    }
    
    .next_f250 strong {
        font-size: 1rem;
    }
    
    .disabled-center-4080 {
        font-size: 0.85rem;
    }
    
    .disabled-center-4080 small {
        font-size: 0.75rem;
    }
    
    .feature-32cb {
        padding: 0.6rem;
    }
    
    .slider-97f0 {
        font-size: 1.3rem;
    }
    
    .feature-32cb span:last-child {
        font-size: 0.8rem;
    }
}
/* css-noise: 53ae */
.ghost-box-m4 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
