/* {$keywords} - Global Styles */
/* Ultra Modern Global Styles with Neon Effects */

/* Accessibility Improvements */
.steel-99b1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States - 霓虹发光 */
*:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
}

/* Custom Scrollbar - 霓虹样式 */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 1, 24, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff006e, #8338ec, #06ffa5);
    border-radius: 10px;
    border: 2px solid rgba(10, 1, 24, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #06ffa5, #3a86ff, #ff006e);
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.8);
}

/* Selection - 霓虹高亮 */
::selection {
    background: rgba(6, 255, 165, 0.3);
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

::-moz-selection {
    background: rgba(6, 255, 165, 0.3);
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

/* Skip Link */
.label-red-49ea {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: var(--primary-bg);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.label-red-49ea:focus {
    top: 6px;
}

/* Loading States */
.fn-loading-bd33 {
    position: relative;
    color: transparent;
}

.fn-loading-bd33::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error States */
.fn-error-bd33 {
    color: var(--danger-color);
    border-color: var(--danger-color);
}

.bronze_7d5a {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Success States */
.fn-success-bd33 {
    color: var(--success-color);
    border-color: var(--success-color);
}

.slider_orange_7f24 {
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Warning States */
.fn-warning-bd33 {
    color: var(--warning-color);
    border-color: var(--warning-color);
}

.block-9108 {
    color: var(--warning-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Form Elements */
.last_489c {
    margin-bottom: 1.5rem;
}

.footer-simple-e067 {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
}

.row-full-d9bd,
.outline_pink_9490,
.modal_left_76d7 {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.row-full-d9bd:focus,
.outline_pink_9490:focus,
.modal_left_76d7:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(240, 193, 89, 0.1);
}

.row-full-d9bd::placeholder,
.outline_pink_9490::placeholder {
    color: var(--text-muted);
}

.detail_05c1,
.dirty_4c59 {
    width: auto;
    margin-right: 0.5rem;
}

/* Card Components - 玻璃拟态 */
.backdrop-2207 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(6, 255, 165, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.backdrop-2207::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 255, 165, 0.1), transparent);
    transition: var(--transition-normal);
}

.backdrop-2207:hover::before {
    left: 100%;
}

.backdrop-2207:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.4);
    border-color: rgba(6, 255, 165, 0.5);
}

.bright-9872 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thick-27bc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

.badge-0871 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.thick-c5b4 {
    margin-bottom: 1rem;
}

.info_95e6 {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badge Components - 霓虹徽章 */
.block_cold_3bdf {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.3);
    border: 2px solid;
}

.paper_e807 {
    background: rgba(6, 255, 165, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

.dynamic_9f80 {
    background: rgba(6, 255, 165, 0.1);
    color: var(--success-color);
    border-color: var(--success-color);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

.popup-brown-819c {
    background: rgba(255, 190, 11, 0.1);
    color: var(--warning-color);
    border-color: var(--warning-color);
    text-shadow: 0 0 10px rgba(255, 190, 11, 0.8);
}

.container_484d {
    background: rgba(255, 0, 110, 0.1);
    color: var(--danger-color);
    border-color: var(--danger-color);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.8);
}

.image_fluid_d350 {
    background: transparent;
    border: 1px solid currentColor;
}

/* Alert Components */
.fn-alert-bd33 {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.full_6b2f {
    background: rgba(0, 208, 132, 0.1);
    color: var(--success-color);
    border-left-color: var(--success-color);
}

.column_835d {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border-left-color: var(--warning-color);
}

.dirty_14d2 {
    background: rgba(207, 46, 46, 0.1);
    color: var(--danger-color);
    border-left-color: var(--danger-color);
}

.lower_154e {
    background: rgba(240, 193, 89, 0.1);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

/* Modal Components */
.menu-orange-2e39 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.menu-orange-2e39.fn-active-bd33 {
    opacity: 1;
    visibility: visible;
}

.accordion_3d53 {
    background: var(--secondary-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.menu-orange-2e39.fn-active-bd33 .accordion_3d53 {
    transform: scale(1);
}

.background_gold_a080 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.orange-febf {
    color: var(--accent-color);
    margin: 0;
}

.accordion_north_a9d7 {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.accordion_north_a9d7:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

/* Tooltip Components */
.content-3c25 {
    position: relative;
    display: inline-block;
}

.content-3c25::before,
.content-3c25::after {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.content-3c25::before {
    content: attr(data-tooltip);
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-bg);
    color: var(--text-white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    margin-bottom: 5px;
}

.content-3c25::after {
    content: '';
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--secondary-bg);
}

.content-3c25:hover::before,
.content-3c25:hover::after {
    opacity: 1;
}

/* Dropdown Components */
.bronze-7d33 {
    position: relative;
    display: inline-block;
}

.photo_rough_947e {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.photo_rough_947e:hover {
    border-color: var(--accent-color);
}

.pagination_pressed_9ccb {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    margin-top: 5px;
}

.bronze-7d33.fn-active-bd33 .pagination_pressed_9ccb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dark-a4ff {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-dark-a4ff:last-child {
    border-bottom: none;
}

.menu-dark-a4ff:hover {
    background: rgba(240, 193, 89, 0.1);
    color: var(--accent-color);
}

/* Tab Components */
.stone_127c {
    margin-bottom: 2rem;
}

.aside_slow_5e52 {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.photo_501d {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 2px solid transparent;
    font-weight: 600;
}

.photo_501d:hover,
.photo_501d.fn-active-bd33 {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.link_pressed_d475 {
    display: none;
}

.link_pressed_d475.fn-active-bd33 {
    display: block;
}

/* Progress Components */
.breadcrumb-large-08a9 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    height: 8px;
    overflow: hidden;
}

.card-wood-def8 {
    background: var(--primary-gradient);
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

/* Spinner Components - 霓虹旋转 */
.tabs-3195 {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(6, 255, 165, 0.2);
    border-top: 4px solid var(--accent-color);
    border-right: 4px solid var(--neon-purple);
    border-bottom: 4px solid var(--neon-pink);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: 20px auto;
    box-shadow: 0 0 30px rgba(6, 255, 165, 0.5);
}

.focus_clean_da05 {
    width: 25px;
    height: 25px;
    border-width: 3px;
}

.module_6c42 {
    width: 75px;
    height: 75px;
    border-width: 6px;
}

/* Breadcrumb Components */
.icon_lower_aeeb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.center-86e8 {
    color: var(--text-gray);
}

.center-86e8:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.center-86e8.fn-active-bd33 {
    color: var(--accent-color);
}

.thumbnail_06bf {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.thumbnail_06bf:hover {
    color: var(--accent-color);
}

/* Pagination Components */
.carousel_wood_8797 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.item-steel-b945 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.item-steel-b945:hover,
.item-steel-b945.fn-active-bd33 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.item-steel-b945.fn-disabled-bd33 {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Utilities */
@media (max-width: 639px) {
    .bottom-bf5b { display: none !important; }
    .east_2ee7 { display: block !important; }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .preview_new_a373 { display: none !important; }
    .item-easy-6ec0 { display: block !important; }
}

@media (min-width: 1024px) {
    .item_middle_0f7d { display: none !important; }
    .pagination_liquid_d2fe { display: block !important; }
}

/* Print Utilities */
@media print {
    .surface-9e56 { display: none !important; }
    .dark_bb69 { display: block !important; }
}

/* 现代化动画关键帧 */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(6, 255, 165, 0.8),
            0 0 20px rgba(6, 255, 165, 0.6),
            0 0 30px rgba(6, 255, 165, 0.4);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(6, 255, 165, 1),
            0 0 40px rgba(6, 255, 165, 0.8),
            0 0 60px rgba(6, 255, 165, 0.6);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* 动画工具类 */
.tertiary_left_6772 {
    animation: neonPulse 2s ease-in-out infinite;
}

.mini-b580 {
    animation: float 3s ease-in-out infinite;
}

.breadcrumb_ec38 {
    animation: slideInLeft 0.6s ease-out;
}

.image-b4fe {
    animation: slideInRight 0.6s ease-out;
}

.hot_c4e6 {
    animation: scaleIn 0.5s ease-out;
}

/* Hover特效工具类 */
.element-wood-dcea {
    transition: all 0.3s ease;
}

.element-wood-dcea:hover {
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.6);
    transform: translateY(-5px);
}

.full-87b3 {
    transition: all 0.3s ease;
}

.full-87b3:hover {
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.8);
    color: var(--accent-color);
}
/* css-noise: c868 */
.promo-block-z5 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
