/* {$keywords} - Main Stylesheet */
/* Modern Brazilian Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 深海蓝青绿主题 */
:root {
    /* 背景色系 */
    --primary-bg: #0f172a;      /* 深海蓝 - 主背景 */
    --secondary-bg: #1e293b;     /* 中蓝 - 卡片背景 */
    --tertiary-bg: #334155;     /* 浅蓝 - 悬浮背景 */
    
    /* 强调色系 */
    --accent-color: #06b6d4;     /* 青绿 - 主要CTA */
    --accent-hover: #0891b2;     /* 深青绿 - 悬停状态 */
    --accent-light: #67e8f9;    /* 浅青绿 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #f8fafc;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 淡灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 灰色 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #10b981;   /* 翠绿 - 成功状态 */
    --danger-color: #ef4444;    /* 红色 - 错误状态 */
    --warning-color: #f97316;   /* 橙色 - 警告状态 */
    --info-color: #06b6d4;      /* 青绿 - 信息提示 */
    
    /* 渐变色系 */
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    
    /* Shadows - 深海蓝青绿主题 */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.4);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-vip: 0 0 20px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.shadow_steel_8079 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.background_huge_9a96 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .background_huge_9a96 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .background_huge_9a96 {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Header Styles */
.grid_right_f06c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.feature-medium-ad0a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .feature-medium-ad0a {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .plasma_8661 {
        grid-column: 1;
    }
    
    .clean-95ee {
        grid-column: 2;
    }
    
    .cold_856d {
        grid-column: 3;
    }
}

.plasma_8661 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.plasma_8661:hover img {
    transform: scale(1.05);
}

/* Navigation */
.carousel_basic_578c {
    display: none;
}

@media (min-width: 1024px) {
    .carousel_basic_578c {
        display: block;
    }
}

/* Grouped Navigation */
.section-upper-c511 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.outline_6e54 {
    position: relative;
}

.list-fixed-d9b0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.outline_6e54 .mini-24e5 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.mini-24e5 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.red_a717 {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}

.red_a717:hover,
.red_a717.fn-active-d623 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.easy_01b0 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .easy_01b0 {
        display: flex;
    }
}

/* Mobile Register Button */
.clean-95ee {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .clean-95ee {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.slider_05e8 {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.slider_05e8::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.cold_856d {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .cold_856d {
        display: none;
    }
}

.cold_856d span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.cold_856d.fn-active-d623 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.cold_856d.fn-active-d623 span:nth-child(2) {
    opacity: 0;
}

.cold_856d.fn-active-d623 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.title-tiny-26f3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.title-tiny-26f3.fn-active-d623 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.avatar_ebf8 {
    overflow: hidden;
}

.highlight-a48f {
    list-style: none;
    padding: 0.75rem 0;
}

.button-up-2f2e {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9rem;
}

.button-up-2f2e:hover,
.button-up-2f2e.fn-active-d623 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.button-up-2f2e.outer_afe3 {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    font-weight: 700;
    text-align: center;
    justify-content: center;
    margin: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.button-up-2f2e.outer_afe3::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Button Styles */
.heading-c630 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.brown-5aea {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.brown-5aea:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.accent_fac8 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.accent_fac8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.notice_d629 {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.25rem;
}

.notice_d629:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.video_3ae6 {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.5rem;
}

.column_70ad {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.column_70ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.summary-ff1d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.summary-ff1d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.image_3148 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.image_3148:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.backdrop-large-ee3b {
    font-size: 1em;
    font-weight: 700;
}

.down-bb53 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.top_2222 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.top_2222::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.image_steel_d045 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .image_steel_d045 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.heading-right-67e0 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wide-7755 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.sidebar_hard_a8c9 {
    margin-bottom: 2rem;
}

.hero_bottom_1ca6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero_bottom_1ca6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_1c9a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.thumbnail_left_7f06 {
    font-size: 1.5rem;
}

.aside_center_f922 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.bronze-868a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden-1834 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.hidden-1834:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.search-fae0 {
    text-align: center;
    margin-bottom: 3rem;
}

.notice-middle-46f3 {
    margin-bottom: 1rem;
}

.huge_3427 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.static_2b8a {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .static_2b8a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .static_2b8a.texture-5a36 {
        direction: rtl;
    }
    
    .static_2b8a.texture-5a36 > * {
        direction: ltr;
    }
}

.upper_0c99 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.upper_0c99:first-child {
    margin-top: 0;
}

.popup-copper-bc85 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight_f0d1 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.highlight_f0d1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.frame-1f83 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-1f83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced_df03 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo_active_b6cd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame-38b1 {
    list-style: none;
}

.frame-38b1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-38b1 li:last-child {
    border-bottom: none;
}

/* Games Features */
.link-61a5 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shade-db8d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.liquid-a20e {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_5e04 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.clean_67b2 {
    margin: 2rem 0;
}

.widget_82ca {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hovered-33a0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.aside-298a {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.module_gas_25f5 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.logo-fluid-7d8e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-fluid-7d8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel_1c27 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.steel_1c27:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-0cb9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.highlight-bottom-bf1f {
    font-size: 1.5rem;
}

.list_9596 {
    color: var(--accent-color);
    margin: 0;
}

.south_c06b {
    list-style: none;
}

.south_c06b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.south_c06b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.summary-a7c7 {
    margin: 2rem 0;
}

.narrow-548c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.focus_5a17 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .focus_5a17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-prev-4984 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 208, 132, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.brown_0f40 {
    font-size: 1.25rem;
}

.shade_glass_b32d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.text-selected-e484,
.row-copper-7f13 {
    text-align: center;
    margin: 2rem 0;
}

.dynamic-efee,
.summary-4d3f {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.heading-542f {
    margin: 2rem 0;
    text-align: center;
}

.paragraph-solid-f7ff {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.paragraph-solid-f7ff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sidebar-a086 {
    position: relative;
    z-index: 1;
}

.dim_2f94 {
    margin-bottom: 1rem;
}

.orange_f15d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-df3d {
    margin-bottom: 3rem;
}

.small-11dd {
    margin-top: 3rem;
}

.thick_e7c2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .thick_e7c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_e7c2 .hero_1c9a {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.clean-9448 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thick-be56 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.summary-380e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.notification-59cf {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .notification-59cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification-59cf {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.paragraph_first_13cc {
    margin-bottom: 1rem;
}

.aside-inner-0e4c img {
    margin-bottom: 1rem;
}

.current-633d {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-mini-ebc0 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.old-927e {
    list-style: none;
}

.old-927e li {
    margin-bottom: 0.5rem;
}

.old-927e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.old-927e a:hover {
    color: var(--accent-color);
}

.grid-6d24 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.advanced-06e3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.advanced-06e3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.status-6273 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.status-6273 p {
    margin-bottom: 0.25rem;
}

.summary-bottom-23cd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .summary-bottom-23cd {
        flex-direction: row;
    }
}

.slider-gas-f7ae {
    text-align: center;
}

@media (min-width: 768px) {
    .slider-gas-f7ae {
        text-align: left;
    }
}

.slider-gas-f7ae p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.module-1de5 {
    font-size: 0.75rem !important;
}

.title-2db7 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.shade-8029 {
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.sidebar-5ebf {
    animation: fadeInUp 0.6s ease-out;
}

.detail-8b2a {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.grid-red-cf46 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-red-cf46 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.slider-0cef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-0cef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-9676 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-9676 .liquid-a20e {
    font-size: 1.25rem;
}

.pattern-9676 .sort_586e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.nav_1100 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .nav_1100 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-e3f5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.grid-e3f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_hot_5048 {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-accent);
}

.backdrop-c854 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.black_8209 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-4585 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-eff1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered-eff1 .feature_5e04 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hovered-eff1 .overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_center_be6d {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over_4490 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.over_4490 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.over_4490 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.fast-14ff {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.surface-5902 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prev-9c11 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prev-9c11 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.prev-9c11 input {
    padding: 1rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.prev-9c11 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.prev-9c11 input::placeholder {
    color: var(--text-muted);
}

.tag-8408 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.stale_d540 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.stale_d540 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.solid-b0a3 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.solid-b0a3:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.focus_5a17 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_5a17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-prev-4984 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.disabled-prev-4984 .brown_0f40 {
    font-size: 1.25rem;
}

.disabled-prev-4984 .shade_glass_b32d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.panel-6595 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas_6d8d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gas_6d8d .liquid-a20e {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas_6d8d .feature_5e04 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas_6d8d .overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-brown-3bf2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim_abf3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dim_abf3 .photo_649d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dim_abf3 .background-complex-b56a {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_pro_bd85 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_large_3272 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_large_3272 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-fixed-cdfe {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.description-fixed-cdfe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid_7440 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.title_a546 {
    flex: 1;
}

.message_current_7cd4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-purple-25a6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.border-large-b8de {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.border-large-b8de:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.label_focused_e06d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_focused_e06d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_5e7a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.green_5e7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-hot-5094 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-large-a03a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture_d24f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shadow_rough_2a76 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element-4fc5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_103b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft_82b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.soft_82b4 .right_97ad {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.soft_82b4 .clean_8edd {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-current-23bd {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-549b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid-9dff {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fluid-9dff .liquid-a20e {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-9dff .feature_5e04 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid-9dff .overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered_3aa9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered_3aa9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft_7d3b {
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--info-color);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.soft_7d3b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.south_676c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_676c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-pressed-4e4f {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-pressed-4e4f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old_d090 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_down_8ed0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hovered-33a0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.notification-action-4111 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.medium_9cce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-2912 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.input-2912:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-9ad0 {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}

.input_ced8 {
    flex: 1;
}

.active_2992 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card-narrow-c975 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.background-0c41 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-6bf3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_1b14 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_1b14 .photo_649d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_1b14 .background-complex-b56a {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-copper-7f13 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-plasma-fea6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-plasma-fea6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.thick_5fe0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_5fe0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze-0c2e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze-0c2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_pink_1edf {
    font-size: 2rem;
    flex-shrink: 0;
}

.fresh_293b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-1b7e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.nav-627d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paper-ec64 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_928a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.center_6ab3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.last_c2f6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade_light_9b83 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-549b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid-9dff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fluid-9dff .feature_5e04 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fluid-9dff .overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_down_8d62 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.box-down-6de7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box-down-6de7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box-down-6de7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-bronze-b8db {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.text-bronze-b8db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next-96b4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.image_399f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hard-54b3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tag_bff6 {
    padding: 1.5rem;
}

.hovered_d29c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.large_ef1d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.large_ef1d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.large_ef1d li:last-child {
    border-bottom: none;
}

.large_ef1d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.form-14ad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-14ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_f531 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.full_f531:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-468a {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-9507 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.surface-06a4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.west_de41 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter_gold_286c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_a7da {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description-0eda {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-39a9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-e34e {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_1962 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.layout_narrow_aaba {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-hard-47af {
    text-align: center;
}

.advanced_a2f2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_purple_7108 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.green-2e47 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused-a029 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused-a029 .feature_5e04 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focused-a029 .overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-mini-bb7a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-mini-bb7a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-mini-bb7a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_d534 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.paper_d534:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-first-ce9f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.selected-79ee {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_5e04 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.row_c116 {
    padding: 1.5rem;
}

.overlay-tiny-a887 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup_368b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup_368b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.popup_368b li:last-child {
    border-bottom: none;
}

.popup_368b li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.old_3f83 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.warm-819c {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.warm-819c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-e3d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-9c50 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.detail_hot_5048 {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.backdrop-c854 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.black_8209 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_cb44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow_6b36 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pink-656e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer_8359 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card_pressed_c71e {
    display: flex;
    gap: 1rem;
}

.card_pressed_c71e .focus-8c1e {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.button_narrow_b4ad {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.module_c65d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.progress_83e4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress_83e4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.progress_83e4 li:last-child {
    border-bottom: none;
}

.progress_83e4 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.wrapper-af1a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-af1a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-af1a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-e6d9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.backdrop-e6d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full-216f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.preview_b750 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.right_97ad {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.layout-13c6 {
    font-size: 1rem;
}

.tabs_cbf7 {
    padding: 1.5rem;
}

.clean_8edd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.cool-5ca1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cool-5ca1 .feature-hard-47af {
    text-align: center;
}

.cool-5ca1 .background_purple_7108 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.cool-5ca1 .in-5197 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.notice_short_c0eb {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.notice_short_c0eb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.outline_ce92 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_ce92 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_81e6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hero_81e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_a8e2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_0fc9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focused_770f {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_d8d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-mini-2334 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-active-40b8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.in-9e47 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-wood-1f6e {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.logo_6390 {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo_6390.breadcrumb_6723 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.logo_6390.primary_orange_25d4 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.logo_6390.module_e395 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.logo_6390.stale_5c42 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.logo_6390.header-b0c7 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.small_ecf0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard_a8e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_e931 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static-8277 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus-brown-3bf2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-brown-3bf2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.focus-brown-3bf2 li:last-child {
    border-bottom: none;
}

.focus-brown-3bf2 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.outline_middle_8cc8 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline_middle_8cc8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline_middle_8cc8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small-5daf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.small-5daf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small-5daf.lite_fa54 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .small-5daf.lite_fa54 {
        grid-column: span 3;
    }
}

.over_d7cb {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.small-5daf.lite_fa54 .over_d7cb {
    background: rgba(6, 182, 212, 0.1);
}

.paragraph-simple-2560 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pattern_88ba {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.small-5daf.lite_fa54 .pattern_88ba {
    color: var(--info-color);
}

.tiny_afdb {
    padding: 1.5rem;
    text-align: center;
}

.mask_24a2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.small-5daf.lite_fa54 .mask_24a2 {
    color: var(--info-color);
}

.slider-south-21b6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hidden_gas_250e {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
}

/* Platform Page Specific Styles */
.right-94c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-94c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_new_0ee9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper_new_0ee9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_light_6035 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas_6d8d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.brown_0f40 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_a3af {
    flex: 1;
}

.narrow-548c {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget_e97a {
    color: var(--text-gray);
    line-height: 1.6;
}

.main-0ffe {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.up-ccd9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.card-plasma-7134 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shade-8029 {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sort-eaf8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-eaf8 .feature-hard-47af {
    text-align: center;
}

.sort-eaf8 .advanced_a2f2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.sort-eaf8 .background_purple_7108 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon_2ffd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_new_87f3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-pink-7fd6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard_851a {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-ba1c {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_3ec9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bottom-7da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-inner-fb83 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern-inner-fb83 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern-inner-fb83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-b357 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-b357:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-lower-1086 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.outline_9249 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-hot-f060 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.frame-6f41 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frame-6f41.column-9c13 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.frame-6f41.heading-cb71 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.frame-6f41.accent_clean_2347 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.heading-old-e6b9 {
    padding: 1.5rem;
    text-align: center;
}

.description_e936 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient-9509 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gradient-9509 .heading_6550 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.center_1676 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.center_1676:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.primary_a106 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.dark_7f66 {
    text-align: center;
}

.dark_7f66 .advanced_a2f2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.dark_7f66 .background_purple_7108 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.info-center-737b { text-align: center; }
.frame_ead9 { text-align: left; }
.module-a207 { text-align: right; }

.popup-259b { margin-bottom: 0; }
.outline_soft_6238 { margin-bottom: 0.5rem; }
.dim-34d1 { margin-bottom: 1rem; }
.input-west-fdf3 { margin-bottom: 1.5rem; }
.sidebar_3922 { margin-bottom: 2rem; }

.outline-first-5b7d { margin-top: 0; }
.large-9c78 { margin-top: 0.5rem; }
.input-b7dd { margin-top: 1rem; }
.link_stone_6232 { margin-top: 1.5rem; }
.feature_copper_f204 { margin-top: 2rem; }

.fn-hidden-d623 { display: none; }
.fn-visible-d623 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .top_2222 {
        padding: 6rem 0 3rem;
    }
    
    .image_steel_d045 {
        text-align: center;
    }
    
    .static_2b8a {
        text-align: center;
    }
    
    .hero_bottom_1ca6 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .grid_right_f06c,
    .title-tiny-26f3,
    .paragraph-solid-f7ff,
    .summary-380e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .top_2222 {
        background: none;
    }
}

/* Providers Section */
.shadow_a4fc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-a771 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-a771 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade-a771 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-a945 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.alert-a945:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown_0843 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter_tiny_83a7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slider_up_ed3a {
    list-style: none;
    padding: 0;
}

.slider_up_ed3a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.slider_up_ed3a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.iron_3b66 {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron_3b66 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hard_0bb1 {
    padding: var(--section-padding);
}

.thick_c20a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_c20a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-e43c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary-e43c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hover-pro-f516 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.progress_1da7 {
    display: flex;
    flex-direction: column;
}

.in-16ce {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.progress-893d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.advanced_4a86 {
    color: var(--accent-color);
}

.photo-wide-afc3 {
    font-size: 1.25rem;
}

.media_eb13 {
    margin-bottom: 1rem;
}

.media_eb13 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.caption-a27c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.disabled-404a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.feature-hard-47af {
    text-align: center;
}

.advanced_a2f2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_purple_7108 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.chip-top-ace4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-44a2 {
    margin: 2rem 0;
}

.box-d4e8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.box-d4e8 .liquid-a20e {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_f559 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tooltip-east-8ead {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.tooltip-east-8ead:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main-01b2 {
    font-size: 2rem;
}

.backdrop-4d6e {
    display: flex;
    flex-direction: column;
}

.input-east-6005 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.nav-fecd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.surface_bc62 {
    padding: var(--section-padding);
}

.tag_57e5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tag_57e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag_57e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_ba12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    transition: var(--transition-normal);
}

.block_ba12:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block_ba12 .advanced_a2f2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.block_ba12 .background_purple_7108 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.block_ba12 .search_a47e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.shade_light_b7cd {
    margin-top: 4rem;
}

.hovered-d00f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.purple-e976 {
    overflow-x: auto;
}

.search-motion-0fda {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.search-motion-0fda thead {
    background: var(--accent-color);
}

.search-motion-0fda th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.search-motion-0fda td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.search-motion-0fda tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.search-motion-0fda tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.surface_ee65 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_0d99 {
    max-width: 900px;
    margin: 0 auto;
}

.action-4bbb {
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.action-4bbb:hover {
    border-color: var(--accent-color);
}

.right_7606 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.right_7606 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.orange_911e {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.action-4bbb.fn-active-d623 .orange_911e {
    transform: rotate(45deg);
}

.backdrop-steel-ad83 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.action-4bbb.fn-active-d623 .backdrop-steel-ad83 {
    max-height: 1000px;
}

.backdrop-steel-ad83 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.secondary_full_a7ba {
    padding: var(--section-padding);
}

.over_4490 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.frame-orange-9fed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_lower_e34b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_lower_e34b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tall_eaf4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink_4068 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.motion_6599 {
    font-size: 2rem;
}

.sidebar-white-3e2f {
    color: var(--text-white);
    margin: 0;
}

.advanced_11fb {
    list-style: none;
    padding: 0;
}

.advanced_11fb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced_11fb li:last-child {
    border-bottom: none;
}

.soft-4dd3 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.soft-4dd3 p {
    color: var(--success-color);
    margin: 0;
}

.primary-fast-98d4 {
    margin-top: 3rem;
}

.module_c65d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tooltip-small-ba55 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tooltip-small-ba55 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.backdrop-925f {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.column_f7a2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop-925f p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.panel_8093 {
    padding: var(--section-padding);
}

.gold_f3f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold_f3f0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-576c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop-576c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.detail_b09e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hovered-997c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.media_fa56 {
    flex: 1;
}

.box_f87b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.slow_7e2f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.yellow-34fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer-b382 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outer-b382:last-child {
    border-bottom: none;
}

/* Comparison Section */
.overlay-glass-a0e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.wood_bf0f {
    padding: var(--section-padding);
}

.section-a935 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.complex_2548 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex_2548 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_south_caf8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south-01d0, .hidden-1bd8, .active-b808 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.active-b808 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 0.75rem;
}

/* Terms Section */
.tabs_cool_7252 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh_0fc5 {
    margin: 2rem 0;
}

.section-918e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_0bb7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mask_rough_6824 {
    list-style: none;
    padding: 0;
}

.mask_rough_6824 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.mask_rough_6824 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mask_rough_6824 li:last-child {
    border-bottom: none;
}

.green-a012 {
    text-align: center;
    margin-top: 2rem;
}

.info_fresh_2262 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.status_a79a {
    padding: var(--section-padding);
}

.slow_71d8 {
    margin: 2rem 0;
}

.alert-ccb1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    gap: 1.5rem;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .alert-ccb1 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.alert-ccb1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.rough_933b {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.gallery_e684 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.tabs-0626 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer_fast_c685 {
    flex: 1;
}

.status-gold-f3df {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notice-5b27 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.photo_cde8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.article-up-d88b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .article-up-d88b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.huge_084f {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.huge_084f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.huge_084f .advanced_a2f2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.huge_084f .background_purple_7108 {
    color: var(--text-gray);
    font-size: 1rem;
}

.label_e822 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_current_af87 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.backdrop_current_af87 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.under-488e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .under-488e {
        grid-template-columns: 1fr 1fr;
    }
}

.heading_bottom_e6aa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_easy_cfea {
    margin-bottom: 1.5rem;
}

.heading_easy_cfea label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.heading_easy_cfea input,
.heading_easy_cfea select {
    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;
}

.heading_easy_cfea input:focus,
.heading_easy_cfea select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hover_e1c3 {
    width: 100%;
    margin-top: 1rem;
}

.rough_c3de {
    display: flex;
    align-items: center;
}

.sidebar-cool-f86b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.menu_gold_faa7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.grid-8d8e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.fresh_cb0e {
    color: var(--text-gray);
}

.shade-bright-954a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.title-tall-d989 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning-color);
}

.title-tall-d989 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.gas-3df3 {
    margin-top: 3rem;
}

.tertiary-6cf8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.box-0335 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_bright_102b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.hero_out_ce5e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero_out_ce5e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.solid-b077 {
    padding: var(--section-padding);
}

.top-90c7 {
    margin: 2rem 0;
}

.image-d9e6 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.secondary-b8f4 {
    padding: 1rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
}

.secondary-b8f4:hover, .secondary-b8f4.fn-active-d623 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.center-d66f {
    display: none;
}

.center-d66f.fn-active-d623 {
    display: block;
}

.surface_089c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_narrow_c738 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled-8aec h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.disabled-8aec ul {
    list-style: none;
    padding: 0;
}

.disabled-8aec ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.disabled-8aec ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.list-hard-7242 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    color: var(--text-gray);
}

/* Historical Data Section */
.steel_414d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-hard-90ca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_4921 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.preview-49d9 {
    color: var(--accent-color);
    margin: 0;
}

.overlay-cold-191c {
    display: flex;
    gap: 1.5rem;
}

.mask-hovered-7bb6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask-hot-d8a9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.panel-orange-5337 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel-orange-5337.block-f4fe {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.panel-orange-5337.media_6d95 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.panel-orange-5337.form-1f0e {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.progress-stone-cf8f {
    margin-top: 2rem;
}

.notification-34ae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.action_6415 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .action_6415 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-87b5 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.main_8b4c {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.item-a0f3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.south_faab {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

/* Responsible Gaming Section */
.small_8e68 {
    padding: var(--section-padding);
}

.huge-0ac6 {
    margin: 2rem 0;
}

.heading-up-22fe {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.info_b704 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.gradient-hot-2cea {
    list-style: none;
    padding: 0;
}

.gradient-hot-2cea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-left: 1.5rem;
    position: relative;
}

.gradient-hot-2cea li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.gradient-hot-2cea li:last-child {
    border-bottom: none;
}

.container_ca47 {
    margin: 2rem 0;
}

.mask_dark_56a8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.row-da72 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .row-da72 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fixed_50bf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-4f39 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph-gold-e095 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.item_slow_52ee {
    margin-top: 2rem;
}

.message_current_7cd4 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.gallery-73d6 {
    list-style: none;
    padding: 0;
}

.plasma-181d {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.plasma-181d a {
    color: var(--accent-color);
    text-decoration: none;
}

.plasma-181d a:hover {
    text-decoration: underline;
}

.hidden-7c0f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.border-focused-6d00 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-cba4 {
    margin: 2rem 0;
}

.pattern-e618 {
    margin-bottom: 3rem;
}

.pattern-e618 .footer_0bb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form_focused_7529 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search_0bf6 {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.search_0bf6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.basic_67ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .basic_67ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-cb65 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.warm-ff25 {
    padding: var(--section-padding);
}

.hover-cold-54cd {
    margin: 2rem 0;
}

.container_yellow_0329 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture_selected_77da {
    overflow-x: auto;
    margin: 2rem 0;
}

.tertiary_38c5 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.static_7f80 {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.last-ebab {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.pagination_down_8513 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pagination_down_8513 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first-00a4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first-00a4 .liquid-a20e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.first-00a4 .feature_5e04 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wide_4dcb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.description-a3b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_purple_85a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_purple_85a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_187d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.background_187d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.stone-8e25 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.surface_62db {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper-hot-082a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border_e1f6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.banner_top_275a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pagination-active-751d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_f127 {
    color: var(--text-white);
    font-weight: 600;
}

.easy_2075 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cold_8734 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cold_8734 .focus-8c1e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask_mini_b65e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mask_mini_b65e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-64f3 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover-64f3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover-64f3 .advanced_a2f2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover-64f3 .background_purple_7108 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dirty_c49f {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-e680 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.mask-e680 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.paper-ec64 {
    margin: 2rem 0;
}

.picture_928a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.picture_928a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.center_6ab3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal_d31a {
    flex: 1;
}

.last_c2f6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade_light_9b83 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.disabled-549b {
    margin: 2rem 0;
}

.fluid-9dff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-9dff .feature_5e04 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.fluid-9dff .overlay-tiny-a887 {
    color: var(--text-gray);
    margin: 0;
}

.hero_down_8d62 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.hero_down_8d62 .dynamic-efee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.wide_4dcb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.mini-9ad0 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.input_ced8 {
    flex: 1;
}

.card-narrow-c975 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.background-0c41 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.detail_hot_5048 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.widget-medium-0779 {
    flex: 1;
}

.backdrop-c854 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.black_8209 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.pink-656e {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.outer_8359 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.card_pressed_c71e {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.card_pressed_c71e .focus-8c1e {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.button_narrow_b4ad {
    margin-top: 2rem;
}

.button_narrow_b4ad .module_c65d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.preview-orange-1574 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_narrow_aaba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .layout_narrow_aaba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_narrow_aaba .feature-hard-47af {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-2e47 {
    margin: 2rem 0;
}

.focused-a029 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Game Features Section */
.widget-ebb9 {
    padding: var(--section-padding);
}

.row_c116 {
    margin-top: 1rem;
}

.popup_368b {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.popup_368b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.popup_368b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.wrapper-6a9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_blue_f633 {
    margin: 2rem 0;
}

.grid-current-f01c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.fluid_dfac {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.summary_5df9 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.alert_2dd7 {
    margin: 2rem 0;
}

.label-steel-9c30 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.label-steel-9c30 .footer_0bb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar_d425 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .avatar_d425 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.huge-7f63 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.huge-42e1 {
    color: var(--text-white);
    font-weight: 600;
}

.image-e3d2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.filter_8783 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.filter_8783 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.main_8767 {
    padding: var(--section-padding);
}

.complex_cef6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.complex_cef6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.fast-f1a6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fast-f1a6 .column_f7a2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fast-f1a6 .caption_45bb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.paper_203d {
    flex: 1;
}

.border-left-db59 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal_0dcf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal_0dcf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.modal_0dcf li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hovered-d1dc {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hovered-d1dc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hovered-d1dc strong {
    color: var(--warning-color);
}

/* Slots Section */
.link_db6d {
    padding: var(--section-padding);
}

.element-4fc5 {
    margin: 2rem 0;
}

/* Table Games Section */
.mask-ec49 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_103b {
    margin: 2rem 0;
}

.soft_82b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.soft_82b4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.soft_82b4 .right_97ad {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.soft_82b4 .clean_8edd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar-current-23bd {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.sidebar-current-23bd .dynamic-efee {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.bright-35d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_bronze_9421 {
    margin: 2rem 0;
}

.grid-plasma-5db3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_3f13 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.soft_620f {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner_e4cd {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.banner_e4cd:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.banner_e4cd.fn-active-d623 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-lower-9709 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.warm-fc01 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm-fc01 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.nav-9a67 {
    padding: var(--section-padding);
}

.accent_4f70 {
    margin: 2rem 0;
}

.orange_5549 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.orange_5549:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .orange_5549 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.preview_orange_e5e0 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.carousel_abbe {
    flex: 1;
}

.breadcrumb-fresh-9944 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-inner-ad95 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.lite-9853 {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.short-12b4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-iron-43ff {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mask_a259 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wrapper-fast-972c {
    padding: 0.875rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.wrapper-fast-972c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dirty-5f9f {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.search-4381 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-4381 strong {
    color: var(--accent-color);
}

/* New Games Section */
.sidebar_07b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.rough_beff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .rough_beff {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rough_beff {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-8a2b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.modal-8a2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.short_be3b {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--warning-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.module_bottom_a4a7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.background-old-56b0 {
    font-size: 2rem;
}

.chip_62b8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.list_d297 {
    flex: 1;
}

.content_9af5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.frame_ea56 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shadow_hovered_4414 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.basic_0cf0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dropdown-4242 {
    padding: 0.375rem 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
}

.description-white-716c {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-normal);
    display: block;
}

.description-white-716c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hidden-64aa {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-45ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-rough-00aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .image-rough-00aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_advanced_c975 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wood_9bb0 {
    color: var(--text-white);
    font-weight: 600;
}

.form_center_2df2 {
    color: var(--accent-color);
    font-weight: 600;
}

.media_ee84 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.media_ee84 strong {
    color: var(--accent-color);
}

/* Security Section */
.brown-762f {
    padding: var(--section-padding);
}

/* Benefits Section */
.background-thick-457d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.pagination_71ca {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.filter-red-7f7e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver-c649 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.notification-light-989d {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .notification-light-989d {
        flex-direction: column;
        gap: 1rem;
    }
}

.notification-light-989d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notification-light-989d .detail_hot_5048 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.notification-light-989d .widget-medium-0779 {
    flex: 1;
}

.notification-light-989d .backdrop-c854 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.notification-light-989d .black_8209 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.accent-38a8 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-38a8 .narrow-548c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent-38a8 .panel-6595 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-38a8 .panel-6595 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent-38a8 .panel-6595 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.small-ecae {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.notification_purple_abaf {
    padding: var(--section-padding);
}

.clean-4d3a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .clean-4d3a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-a311 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.advanced-a311:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.advanced-a311 .active-advanced-0e98 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-a311 .hovered_d158 {
    flex: 1;
}

.advanced-a311 .photo_649d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.advanced-a311 .outline-dim-033d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table-wood-1c2b {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-wood-1c2b .pagination-green-15c2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table-wood-1c2b .backdrop_first_9f8b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.table-wood-1c2b .backdrop_first_9f8b li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-wood-1c2b .backdrop_first_9f8b li:last-child {
    border-bottom: none;
}

.table-wood-1c2b .backdrop_first_9f8b li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.table-wood-1c2b .backdrop_first_9f8b li strong {
    color: var(--text-white);
}

.tooltip_6ff8 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.tooltip_6ff8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tooltip_6ff8 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.dim_82c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-ef7a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hard-ef7a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link-a9d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-a9d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.basic-06de {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card_hot_06e7 {
    font-size: 2rem;
}

.outline-thick-ff45 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.box-huge-9d61 {
    flex: 1;
}

.border_33db {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border_33db li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.border_33db li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.medium-e100 {
    margin-top: 3rem;
}

.heading-up-22fe {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.info_b704 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-hot-2cea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-hot-2cea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.gradient-hot-2cea li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.gradient-hot-2cea li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.widget-complex-6cae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_c4d8 {
    margin: 2rem 0;
}

.secondary_iron_adee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.secondary_iron_adee .footer_0bb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary-8186 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tertiary-8186 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active_e53c {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.active_e53c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.outline_9354 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-advanced-780c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.sort-2198 {
    padding: var(--section-padding);
}

.label_green_2196 {
    margin: 2rem 0;
}

.south-ceea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .south-ceea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-ceea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-d844 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article-d844:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer_rough_7a45 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.grid-active-5378 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.element_bebd {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.element_bebd.sort_0553 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dirty-8856 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.orange_cdc9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tag-hard-85fd {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-1797 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.status-ccf4 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.status-ccf4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status-ccf4 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.backdrop_lower_066c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop_2a22 {
    margin: 2rem 0;
}

.south-afe2 {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .south-afe2 {
        flex-direction: column;
        gap: 1rem;
    }
}

.south-afe2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.south-afe2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.container_5cb9 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.search_fluid_e330 {
    flex: 1;
}

.widget_upper_b6cf {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.background-a532 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-a532 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_lite_2559 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-thick-9cd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-0f5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paragraph-0f5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_6997 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.active_over_17e4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-f5df {
    flex: 1;
}

.carousel-4f99 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.avatar_glass_da33 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture_4696 {
    margin-top: 2rem;
    text-align: center;
}

.description_418a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_418a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.outline_ce92 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_ce92 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_81e6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hero_81e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_81e6 .title-468a {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_81e6 .chip-9507 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.hero_81e6 .surface-06a4 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.hero_81e6 .west_de41 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.box-wood-ed70 {
    padding: var(--section-padding);
}

.disabled_0fc9 .slider-918b {
    flex: 1;
}

/* Promo Calendar Section */
.complex_783b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-e87a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-e87a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_paper_e68d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_2e63 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.aside_liquid_d8c5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge_b293 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bright-03be {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.down_31b0 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.filter-bd3b {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.filter-bd3b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.filter-bd3b strong {
    color: var(--accent-color);
}

/* Requirements Section */
.icon_full_cf50 {
    padding: var(--section-padding);
}

.progress-1d68 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .progress-1d68 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_purple_571d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_b0ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.border_1e77 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border_1e77 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-60d0 {
    margin-top: 3rem;
}

.banner-60d0 .heading-up-22fe {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.banner-60d0 .info_b704 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner-60d0 .gradient-hot-2cea {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.banner-60d0 .gradient-hot-2cea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.banner-60d0 .gradient-hot-2cea li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.banner-60d0 .gradient-hot-2cea li strong {
    color: var(--warning-color);
}

.fluid-2aa7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fluid-2aa7 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.hidden-dynamic-259f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone_274b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stone_274b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-slow-3276 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout-slow-3276 .footer_0bb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hot_1965 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled_5e5a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.disabled_5e5a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.surface_1388 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-2ba5 {
    flex: 1;
}

.progress_full_f9d2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.complex-c3f8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.background-purple-4415 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.row_fixed_b747 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.silver_79e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .silver_79e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old_6ebd {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.old_6ebd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade_5bcc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link-64e5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop_current_af87 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper_11d5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.upper_11d5 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.background_huge_9a96 { width:100%; max-width:1200px; padding:0 16px; box-sizing:border-box; }
* { box-sizing:border-box; }

img, video, svg { max-width:100%; height:auto; display:block; }
.hidden-1834, .highlight_f0d1 { max-width:100%; height:auto; }

.heading-c630, .notice_d629, .video_3ae6 { white-space:normal; }

.image_steel_d045,
.static_2b8a,
.right-94c4,
.outline_ce92,
.disabled-549b,
.pattern-inner-fb83 {
  flex-wrap:wrap;
}

[class*="grid"],
.silver_79e5,
.south-ceea,
.thick_e7c2 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.top_2222 img,
.static_2b8a img,
.bronze-868a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.heading-right-67e0, .wide-7755,
.notice-middle-46f3, .huge_3427 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.purple-e976 { width:100%; overflow-x:auto; }
.purple-e976 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.shade-a771 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .shade-a771 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.alert-a945 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.tag_57e5,
.filter-689f,
.hero-fcf2,
.photo_b525,
.article-up-d88b,
.silver_79e5,
.south-ceea,
.thick_e7c2,
.primary_a106,
.accent_4f70,
.shade-a771 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .tag_57e5,
  .filter-689f,
  .hero-fcf2,
  .photo_b525,
  .article-up-d88b,
  .silver_79e5,
  .south-ceea,
  .thick_e7c2,
  .primary_a106,
  .accent_4f70,
  .shade-a771 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.block_ba12,
.huge_084f,
.old_6ebd,
.hero_1c9a,
.article-d844,
.dark_7f66,
.orange_5549,
.alert-a945 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.shadow_9f83,
.detail-2fac,
.sidebar-9e01 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.shadow_9f83 > *,
.detail-2fac > *,
.sidebar-9e01 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 84be */
.promo-block-g2 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.2;
}
