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

/* ========== Header和导航样式（从index.hot-4b42移植） ========== */

/* Header CTA Button Enhancement */
.hovered-f933.tertiary_bronze_faab {
    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;
}

.hovered-f933.tertiary_bronze_faab: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;
}

.hovered-f933.tertiary_bronze_faab .upper_882d {
    position: relative;
    z-index: 2;
}

.hovered-f933.tertiary_bronze_faab .secondary_lower_fbb2 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    animation: arrow-slide 1s infinite;
}

.hovered-f933.tertiary_bronze_faab::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;
}

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

/* ========== Header和导航样式（从index.hot-4b42移植） ========== */

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

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

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

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

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

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

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

.widget_wood_1c31 {
    z-index: 1002;
}

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

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

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

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

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

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

.action_c437 .pro-a9bc {
    cursor: pointer;
}

.action_c437 .pro-a9bc::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.action_c437 .out-36ca {
    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) {
    .action_c437 .liquid_5815:hover .out-36ca {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

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

.action_c437 .out-36ca li {
    margin: 0;
    list-style: none;
}

.action_c437 .out-36ca a {
    padding: 0.75rem 1.25rem;
    color: #FFF9C4;
    white-space: nowrap;
}

.action_c437 .out-36ca a:hover {
    background: rgba(255, 167, 38, 0.2);
    color: #FFEB3B;
}

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

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

.summary_7ba9.fn-active-257b {
    background: rgba(255, 167, 38, 0.5);
}

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

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


/* 响应式图片样式 */
.upper-814e,
.carousel_over_9e36 {
    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;
}

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

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

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

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

.short-478b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.border-a666.main-6148/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;
}

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

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

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

.filter-5207:hover::before {
    left: 100%;
}

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

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

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

.outline-d7df {
    text-align: center;
}

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

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

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

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

.notice-warm-a5e4 {
    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;
}

.notice-warm-a5e4::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;
}

.notice-warm-a5e4:hover::before {
    left: 100%;
}

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

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

.notice-warm-a5e4:hover .title_gas_2629 {
    transform: translateX(5px);
}

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

.search_hard_2f6c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.border-a666.main-6148/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;
}

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

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

.iron-12f8 {
    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;
}

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

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

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

.layout-plasma-3a87 {
    font-size: 0.9rem;
    color: #e9ecef;
    opacity: 0.8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .short-478b {
        padding: 3rem 0;
    }
    
    .text_dim_84b9 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-5207 {
        padding: 1.5rem;
    }
    
    .carousel_00d9 {
        font-size: 2.5rem;
    }
    
    .notice_fixed_3789 {
        font-size: 1.3rem;
    }
    
    .search_hard_2f6c {
        padding: 2rem 1rem;
    }
    
    .wrapper_e502 {
        font-size: 1.8rem;
    }
    
    .filter-outer-fbcd {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .short-478b {
        padding: 2rem 0;
    }
    
    .filter-5207 {
        padding: 1.2rem;
    }
    
    .carousel_00d9 {
        font-size: 2rem;
    }
    
    .notice_fixed_3789 {
        font-size: 1.2rem;
    }
    
    .picture_silver_be7a {
        gap: 0.3rem;
    }
    
    .bottom_5c6e {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .search_hard_2f6c {
        padding: 1.5rem 1rem;
    }
    
    .wrapper_e502 {
        font-size: 1.6rem;
    }
}

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

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

/* PC端横向显示 */
@media (min-width: 992px) {
    .overlay-simple-fff2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .overlay-simple-fff2 .hard_e10c.accordion_current_ba01 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        display: flex;
    }
    
    .overlay-simple-fff2 .list_narrow_6185 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 大屏幕横向显示 */
@media (min-width: 1200px) {
    .overlay-simple-fff2 {
        gap: 2rem;
    }
    
    .overlay-simple-fff2 .hard_e10c.accordion_current_ba01 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* 超大屏幕横向显示 */
@media (min-width: 1400px) {
    .overlay-simple-fff2 {
        gap: 2.5rem;
    }
    
    .overlay-simple-fff2 .hard_e10c.accordion_current_ba01 {
        flex: 0 0 calc(50% - 1.25rem);
        max-width: calc(50% - 1.25rem);
    }
}

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

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

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

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

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

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

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

.list_narrow_6185 .pink-f98d {
    background-color: #FF6F00;
    color: #ffffff;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.list_narrow_6185 .pink-f98d:hover {
    background-color: #E65100;
    transform: scale(1.05);
}

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

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

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

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

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

.copper-c413 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;
}

.copper-c413 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;
}

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

.copper-c413 li:hover::before {
    transform: scaleY(1);
}

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

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

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

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

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

/* 导航菜单当前页面高亮 - 已禁用 */
/* .gradient_gold_4e42 a[href*=".photo-silver-8ee2"] {
    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) {
    .box_glass_0aae {
        padding: 1.5rem 0;
        border-radius: 15px;
        margin: 0.5rem 0;
    }
    
    .box_glass_0aae h1 {
        font-size: 1.75rem;
    }
    
    .list_narrow_6185 {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .tall-fd73 {
        font-size: 2rem;
    }
    
    .message-ed79 {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .message-ed79::before {
        border-radius: 17px;
    }
    
    .copper-c413 li {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .inner_6397 {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .image_12d8 {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* 移动端防止图片溢出 */
    body {
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    section img {
        max-width: 100%;
        height: auto;
    }
    
    .hard_e10c img,
    .accordion_current_ba01 img {
        max-width: 100%;
        height: auto;
    }
    
    .upper-814e,
    .carousel_over_9e36 {
        max-width: 100%;
    }
}

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

/* ========== Footer 样式（从 index.hot-4b42 移植） ========== */

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

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

.overlay-over-6bfa h4 {
    color: #F44336;
    margin-top: 0;
}

.overlay-over-6bfa p,
.overlay-over-6bfa ul {
    color: white;
    line-height: 1.8;
}

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

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

/* FAQ Section (从 index.hot-4b42) */
.left-9823 {
    padding: 4rem 0;
    background: rgba(78, 52, 46, 0.5);
}

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

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

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

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

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

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

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

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

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

.preview-c5f8 li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.gallery-62b1 h4 {
    color: #2196F3;
    margin-top: 0;
}

.gallery-62b1 p {
    margin-bottom: 0;
    color: white;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-fb40 tbody tr.preview_down_d572 {
    background: rgba(76, 175, 80, 0.15);
}

.block-fb40 tbody tr.preview_down_d572 th,
.block-fb40 tbody tr.preview_down_d572 td {
    background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

.action-2e82 {
    color: #F44336;
    font-weight: 700;
}

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

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

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

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

.card-prev-8e20 {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

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

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

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

.heading_up_63dc {
    padding-left: 2rem;
}

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

.heading_up_63dc strong {
    color: #FFEB3B;
}

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

.pro_c86d,
.avatar_08c4,
.preview-699e,
.blue_ccc0,
.motion-e1d7 {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

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

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

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

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

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

.preview-699e h3 {
    color: #F44336;
    margin-top: 0;
}

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

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

.motion-e1d7 {
    border-left-color: #FFA726;
}

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

.pro_c86d p,
.avatar_08c4 p,
.preview-699e p,
.blue_ccc0 p,
.motion-e1d7 p {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
}

.pro_c86d h4,
.avatar_08c4 h4,
.preview-699e h4,
.blue_ccc0 h4 {
    color: #FFEB3B;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
}

.pro_c86d ul,
.avatar_08c4 ul,
.preview-699e ul,
.blue_ccc0 ul {
    color: white;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.pro_c86d li,
.avatar_08c4 li,
.preview-699e li,
.blue_ccc0 li {
    margin-bottom: 0.75rem;
}

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

.preview-699e a:hover {
    text-decoration: underline;
}

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

@media (max-width: 767px) {
    .title_9912 {
        padding: 1.5rem 0;
    }
    
    .widget_brown_cf2c {
        padding: 1rem;
    }
    
    .pro_c86d,
    .avatar_08c4,
    .preview-699e,
    .blue_ccc0,
    .motion-e1d7 {
        padding: 1.5rem;
    }
}

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

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

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

.module-b380 {
    margin: 2rem 0;
}

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

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

.avatar_cool_bffa {
    text-align: center;
}

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

.tag-smooth-572b {
    display: block;
    font-size: 0.9rem;
    color: #FFF9C4;
}

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

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

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

.clean-7f8b .title_gas_2629 {
    font-size: 1.5rem;
    animation: icon-bounce 1.5s infinite;
}

.clean-7f8b .upper_882d {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.hidden_bb90 {
    position: relative;
}

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

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

.logo-dim-d945:hover .focused_6d4e {
    transform: scale(1.05);
}

.title-orange-ccb5 {
    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 */
.fast_0f12 {
    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;
}

.avatar_7813 {
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.pressed-da90 th.footer_advanced_45f6 {
    text-align: left;
}

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

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

.pressed-da90 tbody tr.icon-selected-dad6 {
    background: rgba(76, 175, 80, 0.2);
}

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

.pressed-da90 td.blue_6965 {
    text-align: left;
    font-weight: 700;
    color: #fff;
}

.pressed-da90 td.wood-19e8,
.pressed-da90 td.notification_53f0,
.pressed-da90 td.status_b17d {
    font-weight: 700;
    color: #4CAF50;
}

.pressed-da90 td.nav_ae69 {
    font-weight: 700;
    color: #FFEB3B;
}

.pressed-da90 td.image-c9bc {
    color: #FF9800;
}

.pressed-da90 td.popup_wood_79f9 {
    color: #F44336;
}

.logo_9c3d {
    margin-top: 2rem;
}

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

.image-a289.down_39c6 {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.menu-over-cb6d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.modal-e52e strong {
    color: #4CAF50;
}

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

/* FAQ Section */
.left-9823 {
    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 */
.nav-center-b535 {
    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);
}

.green-3d2b {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.tag-bb19.status-946a {
    border: 2px solid #4CAF50;
}

.tag-bb19.background-full-0984 {
    border: 2px solid #2196F3;
}

.tag-bb19.heading-brown-b7e8 {
    border: 2px solid #FFA726;
}

.tag-bb19.chip-2436 {
    border: 2px solid #9C27B0;
}

.tag-bb19.label_a8f6 {
    border: 2px solid #00BCD4;
}

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

.logo-1d3e {
    color: #FFF9C4;
    line-height: 1.7;
}

.logo-1d3e p {
    margin: 0 0 1rem 0;
}

.logo-1d3e p:last-child {
    margin-bottom: 0;
}

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

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

.logo-1d3e .alert-7915 {
    color: #4CAF50;
    font-weight: 600;
}

.logo-1d3e .highlight_selected_6ffd {
    color: #FF5722;
    font-weight: 600;
}

.logo-1d3e .lite-582a {
    color: #FFEB3B;
    font-weight: 600;
}

.paragraph-wide-5fa6 {
    margin-top: 3rem;
}

/* Statistics Section */

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

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

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

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

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

.summary_cde2.shadow-a86d {
    border: 2px solid #4CAF50;
}

.summary_cde2.element-east-2ab8 {
    border: 2px solid #FFA726;
}

.summary_cde2.full-1ef9 {
    border: 2px solid #2196F3;
}

.summary_cde2.info_8fb8 {
    border: 2px solid #FFEB3B;
}

.summary_cde2.cool-0c80 {
    border: 2px solid #9C27B0;
}

.summary_cde2.bottom_432c {
    border: 2px solid #FF5722;
}

.summary_cde2.huge-bccf {
    border: 2px solid #00BCD4;
}

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

.summary_cde2.shadow-a86d .large_0648 {
    color: #4CAF50;
}

.summary_cde2.element-east-2ab8 .large_0648 {
    color: #FFA726;
}

.summary_cde2.full-1ef9 .large_0648 {
    color: #2196F3;
}

.summary_cde2.info_8fb8 .large_0648 {
    color: #FFEB3B;
}

.summary_cde2.cool-0c80 .large_0648 {
    color: #9C27B0;
}

.summary_cde2.bottom_432c .large_0648 {
    color: #FF5722;
}

.summary_cde2.huge-bccf .large_0648 {
    color: #00BCD4;
}

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

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

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

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

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

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

.progress-small-0845 {}

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

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

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

.dim_eed9 {
    background: #4CAF50;
    color: #fff;
}

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

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

.fluid-e688:last-child {
    margin-bottom: 0;
}

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

.fluid-e688 .tag-smooth-572b {
    color: #FFEB3B;
    font-weight: 600;
}

.fluid-e688 .popup-0eda {
    color: #4CAF50;
    font-weight: 700;
}

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

.black-9edb {
    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;
}

.column-cool-944f {
    margin-top: 2rem;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .motion_1275 {
        grid-template-columns: 1fr;
    }
    
    .in_368a {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .shade-gas-bfd8 {
        grid-template-columns: 1fr;
    }
    
    .warm_7945 {
        grid-template-columns: 1fr;
    }
    
    .pressed-da90 {
        font-size: 0.85rem;
    }
    
    .pressed-da90 th,
    .pressed-da90 td {
        padding: 0.75rem 0.5rem;
    }
    
    .tag-bb19 {
        padding: 1.5rem;
    }
    
    .sidebar-46d2 {
        font-size: 1.1rem;
    }
    
    .green-3d2b h2 {
        font-size: 2rem;
    }
    
    .widget-huge-e869 {
        font-size: 1rem;
    }
    
    .button-fast-a3c2 {
        grid-template-columns: 1fr;
    }
    
    .large-0790 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端居中 */
    .up_498d,
    .tiny_024e,
    .heading_4bb1,
    .frame-c42f,
    .summary_cde2,
    .preview-c5f8 {
        text-align: center;
    }
    
    .up_498d h1,
    .tiny_024e h3,
    .tiny_024e h4,
    .heading_4bb1 h4,
    .preview-c5f8 h3 {
        text-align: center;
    }
    
    .up_498d p,
    .tiny_024e p,
    .heading_4bb1 p,
    .gallery-62b1 p,
    .accent-b5a3 p,
    .overlay-over-6bfa p {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .up_498d ul,
    .tiny_024e ul,
    .gallery-62b1 ul,
    .accent-b5a3 ul,
    .overlay-over-6bfa ul {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .accordion_bottom_8e26,
    .brown_cd81 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .box_fixed_885d {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .module-b380 {
        font-size: 0.95rem;
    }
    
    .short_144d {
        font-size: 1.5rem;
    }
    
    .tag-smooth-572b {
        font-size: 0.8rem;
    }
    
    .tabs-722b {
        font-size: 1.5rem;
    }
    
    .large-9126 {
        font-size: 0.95rem;
    }
    
    .pressed-da90 {
        font-size: 0.75rem;
    }
    
    .summary_cde2 {
        padding: 1.5rem 1rem;
    }
    
    .large_0648 {
        font-size: 1.8rem;
    }
    
    .frame-c42f {
        padding: 1.5rem;
    }
    
    .accent-f600 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dim-ad18 {
        font-size: 1rem;
    }
    
    .sidebar-46d2 {
        font-size: 1rem;
    }
    
    .green-3d2b h2 {
        font-size: 1.8rem;
    }
    
    .surface_over_fdab h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .tiny_024e {
        padding: 1.5rem;
        text-align: center;
    }
    
    .heading_4bb1 {
        padding: 1.2rem;
        text-align: center;
    }
    
    .block-fb40 th,
    .block-fb40 td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* 移动端强制居中所有标题和区块 */
    .box_glass_0aae,
    .surface_over_fdab,
    .fast_0f12,
    .pro_a17b,
    .alert_63ce,
    .left-9823,
    .nav-center-b535 {
        text-align: center;
    }
    
    .avatar_7813,
    .up_498d,
    .tiny_024e,
    .orange-c473,
    .button-fast-a3c2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .up_498d h1,
    .tiny_024e h2,
    .tiny_024e h3,
    .tiny_024e h4,
    .heading_4bb1 h4,
    .preview-c5f8 h3,
    .preview-c5f8 h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .disabled_0786 {
        text-align: center;
    }
    
    .disabled_0786 h3 {
        text-align: center;
    }
    
    /* 列表内容左对齐但容器居中 */
    .up_498d ul,
    .up_498d ol,
    .tiny_024e ul,
    .tiny_024e ol,
    .gallery-62b1 ul,
    .gallery-62b1 ol,
    .accent-b5a3 ul,
    .accent-b5a3 ol,
    .overlay-over-6bfa ul,
    .overlay-over-6bfa ol,
    .preview-c5f8 ul,
    .preview-c5f8 ol {
        text-align: left;
        display: inline-block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 表格容器居中 */
    .primary_abc3,
    .block-fb40 {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 按钮居中 */
    .accordion_bottom_8e26,
    .brown_cd81,
    .paragraph-wide-5fa6 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero visual 居中 */
    .hidden_bb90,
    .logo-dim-d945 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 统计卡片居中 */
    .summary_cde2,
    .heading_4bb1,
    .frame-c42f {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Info boxes 居中 */
    .gallery-62b1,
    .accent-b5a3,
    .overlay-over-6bfa,
    .cool_5d1b {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-62b1 p,
    .accent-b5a3 p,
    .overlay-over-6bfa p,
    .cool_5d1b p {
        text-align: left;
    }
}

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

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

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

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

.static-5a0a ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-5a0a li {
    margin-bottom: 0.5rem;
}

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

.static-5a0a a:hover {
    color: #FFEB3B;
}

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

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

.blue-ae32 {
    margin-top: 1rem;
}

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

.blue-ae32 a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.pink-2cc2 .dim-ad18 {
    color: #FFEB3B;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.3rem 0;
}

.pink-2cc2 .logo-pro-539e {
    color: #FFF9C4;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

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

.footer_out_ace9 h3 {
    color: #4CAF50;
}

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

.card_9d1a h3 {
    color: #FF9800;
}

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

.active-cool-c70f h3 {
    color: #2196F3;
}

.footer_out_ace9 .fixed_639a,
.card_9d1a .fixed_639a,
.active-cool-c70f .fixed_639a {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

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

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

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

.pro_a17b .column-cool-944f {
    background: rgba(78, 52, 46, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

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

/* Cadastro Page Responsive */
@media (max-width: 991px) {
    .pink-2cc2 {
        margin-bottom: 1rem;
    }
    
    .pink-2cc2 dt,
    .pink-2cc2 .dim-ad18,
    .pink-2cc2 .logo-pro-539e,
    .pink-2cc2 .slow_4063 {
        text-align: center;
    }
    
    .footer_out_ace9,
    .card_9d1a,
    .active-cool-c70f {
        text-align: center;
    }
    
    .pro_a17b .box_7e14 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .pink-2cc2 {
        padding: 1.2rem;
    }
    
    .picture_bcbd {
        font-size: 2.5rem;
    }
    
    .pink-2cc2 .dim-ad18 {
        font-size: 1rem;
    }
    
    .pink-2cc2 .slow_4063 {
        font-size: 0.85rem;
    }
    
    .footer_out_ace9 h3,
    .card_9d1a h3,
    .active-cool-c70f h3 {
        font-size: 1.5rem;
    }
    
    .footer_out_ace9 .fixed_639a,
    .card_9d1a .fixed_639a,
    .active-cool-c70f .fixed_639a {
        font-size: 1rem;
    }
}

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

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

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

.popup-under-0c75 {
    flex: 1;
}

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

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

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

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

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

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

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

.icon-3e08 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

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

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

.photo-06fd details div {
    padding: 1rem 1.5rem 1.5rem;
}

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

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

.photo-06fd details p {
    margin: 0.8rem 0;
}

.photo-06fd details strong {
    color: #FFEB3B;
}

.photo-06fd details a {
    color: #4CAF50;
    text-decoration: underline;
}

.photo-06fd details a:hover {
    color: #66BB6A;
}

/* Responsive Design for E-E-A-T Elements */
@media (max-width: 991px) {
    .border-a28c {
        flex-direction: column;
        text-align: center;
    }
    
    .popup-under-0c75 {
        text-align: center;
    }
    
    .row-7dcb {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .box_white_40e7 {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .accordion_cool_8844 {
        font-size: 0.9rem;
    }
    
    .accordion_cool_8844 strong {
        font-size: 1rem;
    }
    
    .prev_245f {
        font-size: 0.85rem;
    }
    
    .prev_245f small {
        font-size: 0.75rem;
    }
    
    .accordion_55af {
        padding: 0.6rem;
    }
    
    .icon-3e08 {
        font-size: 1.3rem;
    }
    
    .accordion_55af span:last-child {
        font-size: 0.8rem;
    }
}
/* css-noise: d46a */
.shadow-element-u9 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
