/* {$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;
}

.header_cold_2cc2 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.first-6f1f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .first-6f1f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .first-6f1f {
        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 */
.component_bottom_d757 {
    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);
}

.paper_4aed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .paper_4aed {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .hidden_pink_00b7 {
        grid-column: 1;
    }
    
    .gradient-inner-5220 {
        grid-column: 2;
    }
    
    .message_b5a5 {
        grid-column: 3;
    }
}

.hidden_pink_00b7 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.hidden_pink_00b7:hover img {
    transform: scale(1.05);
}

/* Navigation */
.white_6bf8 {
    display: none;
}

@media (min-width: 1024px) {
    .white_6bf8 {
        display: block;
    }
}

/* Grouped Navigation */
.east-d3f0 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.module_upper_54b1 {
    position: relative;
}

.sidebar_2d0c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.module_upper_54b1 .sidebar_smooth_c7f3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.sidebar_smooth_c7f3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.disabled_29df {
    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;
}

.disabled_29df:hover,
.disabled_29df.fn-active-86d3 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.list-complex-3d6e {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .list-complex-3d6e {
        display: flex;
    }
}

/* Mobile Register Button */
.gradient-inner-5220 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient-inner-5220 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.secondary_under_40e6 {
    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;
}

.secondary_under_40e6::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 */
.message_b5a5 {
    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) {
    .message_b5a5 {
        display: none;
    }
}

.message_b5a5 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.message_b5a5.fn-active-86d3 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.message_b5a5.fn-active-86d3 span:nth-child(2) {
    opacity: 0;
}

.message_b5a5.fn-active-86d3 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.progress_d792 {
    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;
}

.progress_d792.fn-active-86d3 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.carousel_red_cd03 {
    overflow: hidden;
}

.in_77cb {
    list-style: none;
    padding: 0.75rem 0;
}

.lite-c115 {
    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;
}

.lite-c115:hover,
.lite-c115.fn-active-86d3 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.lite-c115.info_green_7c63 {
    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;
}

.lite-c115.info_green_7c63::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 */
.block_paper_6b90 {
    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;
}

.steel-7bdc {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.steel-7bdc:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.hero_f795 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hero_f795:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.center_e6f0 {
    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;
}

.center_e6f0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.layout_up_7abd {
    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;
}

.photo_rough_401a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.photo_rough_401a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.box_wood_042c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.box_wood_042c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.layout-slow-60bf {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.layout-slow-60bf: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);
}

.new_3dd5 {
    font-size: 1em;
    font-weight: 700;
}

.alert-500d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tabs_dda3 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tabs_dda3::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;
}

.active_2182 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .active_2182 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.row-up-2ed8 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.background-23bc {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.container-left-64c5 {
    margin-bottom: 2rem;
}

.copper-33e4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .copper-33e4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-15d2 {
    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);
}

.tertiary_hard_59bd {
    font-size: 1.5rem;
}

.first_953a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pattern_1a0a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.summary-f363 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.summary-f363:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.article_f9a8 {
    text-align: center;
    margin-bottom: 3rem;
}

.blue_7026 {
    margin-bottom: 1rem;
}

.breadcrumb-right-6b70 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.paragraph_slow_cde3 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .paragraph_slow_cde3 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .paragraph_slow_cde3.cold_4404 {
        direction: rtl;
    }
    
    .paragraph_slow_cde3.cold_4404 > * {
        direction: ltr;
    }
}

.info-in-b7ac {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.info-in-b7ac:first-child {
    margin-top: 0;
}

.form_left_cdea {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.item-8f82 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.item-8f82:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.form-5599 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-5599 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-selected-08fb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption-simple-41a0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description_current_9952 {
    list-style: none;
}

.description_current_9952 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_current_9952 li:last-child {
    border-bottom: none;
}

/* Games Features */
.image-upper-6cac {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.surface-thick-206d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.thumbnail-961b {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_b7e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.slider_hard_4d83 {
    margin: 2rem 0;
}

.border_e9a4 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.border_3260 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.advanced-584d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.notification-mini-c638 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.disabled-a7de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-a7de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame_997c {
    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);
}

.frame_997c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_south_339e {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature_white_81f4 {
    font-size: 1.5rem;
}

.shade_motion_6ae1 {
    color: var(--accent-color);
    margin: 0;
}

.slow-4e7f {
    list-style: none;
}

.slow-4e7f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.slow-4e7f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.list-liquid-3b1d {
    margin: 2rem 0;
}

.new_57b0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.dropdown_4936 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .dropdown_4936 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_large_f0e3 {
    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);
}

.north-c732 {
    font-size: 1.25rem;
}

.focus-slow-bee4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.aside_stale_0a60,
.pattern_north_1f94 {
    text-align: center;
    margin: 2rem 0;
}

.banner-top-dc6c,
.out_8edb {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.section-ce58 {
    margin: 2rem 0;
    text-align: center;
}

.list_59f5 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.list_59f5::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;
}

.breadcrumb_dark_9954 {
    position: relative;
    z-index: 1;
}

.light-7119 {
    margin-bottom: 1rem;
}

.outline_d77d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo-b1da {
    margin-bottom: 3rem;
}

.hover_easy_49ea {
    margin-top: 3rem;
}

.element-d3d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .element-d3d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-d3d6 .cool-15d2 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_inner_c956 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.text_9fc0 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.avatar-ea42 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.section_9745 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .section_9745 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section_9745 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.yellow-e62e {
    margin-bottom: 1rem;
}

.pro_759b img {
    margin-bottom: 1rem;
}

.footer_bottom_7377 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-ba56 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.dirty_777f {
    list-style: none;
}

.dirty_777f li {
    margin-bottom: 0.5rem;
}

.dirty_777f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dirty_777f a:hover {
    color: var(--accent-color);
}

.over-1414 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo_e2f3 {
    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);
}

.logo_e2f3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.active-bronze-2b31 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.active-bronze-2b31 p {
    margin-bottom: 0.25rem;
}

.red_977c {
    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) {
    .red_977c {
        flex-direction: row;
    }
}

.description-b94d {
    text-align: center;
}

@media (min-width: 768px) {
    .description-b94d {
        text-align: left;
    }
}

.description-b94d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge_wide_d6e9 {
    font-size: 0.75rem !important;
}

.preview-8e61 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.steel_288b {
    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);
    }
}

.left-0fd6 {
    animation: fadeInUp 0.6s ease-out;
}

.detail-east-c791 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.west_f719 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .west_f719 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.video_62b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_62b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_28a4 {
    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);
}

.border_28a4 .thumbnail-961b {
    font-size: 1.25rem;
}

.border_28a4 .shadow-fe63 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.alert-026a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert-026a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-slow-d47d {
    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);
}

.wrapper-slow-d47d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-6f4f {
    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);
}

.cold_3981 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.top-2a1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-8a8c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_cc0f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo_cc0f .green_b7e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo_cc0f .secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_167a {
    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);
}

.search_2b67 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.search_2b67 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.search_2b67 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.slider-da6f {
    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_gas_2341 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shadow_37c7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shadow_37c7 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shadow_37c7 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);
}

.shadow_37c7 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.shadow_37c7 input::placeholder {
    color: var(--text-muted);
}

.status_3fbf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.container-selected-2868 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.container-selected-2868 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.first-5744 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.first-5744:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.dropdown_4936 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_4936 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_large_f0e3 {
    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);
}

.row_large_f0e3 .north-c732 {
    font-size: 1.25rem;
}

.row_large_f0e3 .focus-slow-bee4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.search_78a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-advanced-3990 {
    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);
}

.active-advanced-3990 .thumbnail-961b {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-advanced-3990 .green_b7e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-advanced-3990 .secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_762c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_67d2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.column_67d2 .new_336b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.column_67d2 .accordion_lite_0e45 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_short_9de8 {
    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);
}

.wrapper-lite-c231 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-lite-c231 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_df35 {
    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_df35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev-e03d {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dirty_c373 {
    flex: 1;
}

.sidebar-2453 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary_mini_4fd7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tabs-ee3c {
    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);
}

.tabs-ee3c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.avatar_paper_9fae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_paper_9fae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_83d7 {
    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);
}

.search_83d7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused_5362 {
    font-size: 2rem;
    flex-shrink: 0;
}

.center_f338 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table_dark_abb1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.avatar-motion-6464 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outer-2058 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-e199 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_90f5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section_90f5 .fluid_2e78 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_90f5 .grid-wide-c800 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_08d5 {
    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);
}

.orange-266d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-c3a6 {
    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);
}

.texture-c3a6 .thumbnail-961b {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture-c3a6 .green_b7e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture-c3a6 .secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-f027 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-f027 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_7cc3 {
    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);
}

.search_7cc3:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.texture-dynamic-c956 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-dynamic-c956 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-hard-7ad2 {
    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);
}

.accordion-hard-7ad2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_pressed_39e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-1533 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.border_3260 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.preview_bdcd {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shade_east_9c06 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-d58b {
    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);
}

.hidden-d58b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_17d5 {
    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);
}

.yellow_a021 {
    flex: 1;
}

.label-active-620d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card_a258 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.widget_644e {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-7d02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-clean-a9fc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-clean-a9fc .new_336b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-clean-a9fc .accordion_lite_0e45 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_north_1f94 {
    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);
}

.tertiary_d8d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_d8d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.section-f1b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-f1b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick-b007 {
    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);
}

.thick-b007:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down_710f {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple_d97c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last_a425 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focused_9e60 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.frame_action_898c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search_afae {
    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);
}

.caption-31d3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal_e9d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary-stone-e983 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-266d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-c3a6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.texture-c3a6 .green_b7e0 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.texture-c3a6 .secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-8efb {
    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);
}

.middle-ba6c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle-ba6c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle-ba6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick-22c3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thick-22c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-abf0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fluid_c8ec {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar-focused-a24b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.element_green_09fb {
    padding: 1.5rem;
}

.border_top_68f2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail-pressed-5b15 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail-pressed-5b15 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;
}

.thumbnail-pressed-5b15 li:last-child {
    border-bottom: none;
}

.thumbnail-pressed-5b15 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.left_8562 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left_8562 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-c148 {
    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);
}

.dynamic-c148:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-glass-9f97 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-last-c3ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.image_inner_6730 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.popup_8119 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.motion-eac7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_east_72b1 {
    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_e994 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-1a1e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-slow-499f {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue_954b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-east-91f2 {
    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);
}

.alert-0ba9 {
    text-align: center;
}

.warm_1005 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag-70dc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip_c4f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_4c84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_4c84 .green_b7e0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold_4c84 .secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_east_0d4e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent_east_0d4e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accent_east_0d4e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_7481 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider_7481:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_brown_8eb6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.white_104b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.green_b7e0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gradient-selected-3658 {
    padding: 1.5rem;
}

.secondary-e4ce {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block_bottom_6a08 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_bottom_6a08 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;
}

.block_bottom_6a08 li:last-child {
    border-bottom: none;
}

.block_bottom_6a08 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.photo_b2b8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.paragraph_hard_61ce {
    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);
}

.paragraph_hard_61ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_west_9446 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-hovered-b766 {
    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);
}

.thumbnail-6f4f {
    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;
}

.cold_3981 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.top-2a1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_next_b83e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim-6fb8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-b225 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel-f5ee {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.right-8b4e {
    display: flex;
    gap: 1rem;
}

.right-8b4e .dropdown-63f3 {
    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;
}

.header-basic-4b6f {
    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);
}

.blue-3e32 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.info_white_7ebb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info_white_7ebb 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;
}

.info_white_7ebb li:last-child {
    border-bottom: none;
}

.info_white_7ebb li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.paragraph_0b9e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph_0b9e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph_0b9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_selected_6cc0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon_selected_6cc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-upper-16f0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-last-9631 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fluid_2e78 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.selected_3b80 {
    font-size: 1rem;
}

.aside_solid_ccbe {
    padding: 1.5rem;
}

.grid-wide-c800 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.block_437c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.block_437c .alert-0ba9 {
    text-align: center;
}

.block_437c .tag-70dc {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.block_437c .action-7512 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.paragraph_44c7 {
    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);
}

.paragraph_44c7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.wrapper_full_b58b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_full_b58b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-54d0 {
    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);
}

.medium-54d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-51ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_new_af3a {
    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);
}

.tooltip_action_3825 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-light-bfa3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.down-8a6e {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_b79b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer_advanced_a0a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table-cold-17f0 {
    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);
}

.border_3bfe {
    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;
}

.border_3bfe.focus_c2a0 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.border_3bfe.hero-6eaf {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.border_3bfe.focus_e7ec {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.border_3bfe.menu_3d88 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.border_3bfe.backdrop-d555 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tag_blue_9f92 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone_6a3c {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_easy_5d85 {
    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);
}

.alert-3545 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.old_762c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old_762c 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;
}

.old_762c li:last-child {
    border-bottom: none;
}

.old_762c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.outer_243c {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outer_243c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer_243c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_orange_499e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature_orange_499e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_orange_499e.easy_d2c5 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .feature_orange_499e.easy_d2c5 {
        grid-column: span 3;
    }
}

.copper_3b12 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.feature_orange_499e.easy_d2c5 .copper_3b12 {
    background: rgba(6, 182, 212, 0.1);
}

.nav_red_6563 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-161d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.feature_orange_499e.easy_d2c5 .detail-161d {
    color: var(--info-color);
}

.progress_c7be {
    padding: 1.5rem;
    text-align: center;
}

.first-479f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature_orange_499e.easy_d2c5 .first-479f {
    color: var(--info-color);
}

.tertiary_7471 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.focus_yellow_673e {
    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 */
.column-advanced-28cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-advanced-28cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim-ff6e {
    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);
}

.dim-ff6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description_5c94 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-advanced-3990 {
    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);
}

.north-c732 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_pink_9431 {
    flex: 1;
}

.new_57b0 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-57c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_west_bc83 {
    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);
}

.popup_9ae4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.simple-1def {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.steel_288b {
    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);
}

.container-700b {
  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);
}

.container-700b .alert-0ba9 {
    text-align: center;
}

.container-700b .warm_1005 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.container-700b .tag-70dc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.chip_brown_9241 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-simple-6b45 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_ccfa {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple-20e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex-5b2b {
    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);
}

.modal_selected_ae82 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower_d9a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary_pressed_084f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary_pressed_084f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary_pressed_084f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-4336 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-4336:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph-23cb {
    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);
}

.easy_e978 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accordion-1324 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.section-new-b869 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-new-b869.tag-564a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.section-new-b869.tabs_tall_68fb {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.section-new-b869.table_inner_e611 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.dirty-54fa {
    padding: 1.5rem;
    text-align: center;
}

.carousel-a614 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.first-cc1a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.first-cc1a .table-center-119d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.notice_green_b8c9 {
    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_green_b8c9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.description-7603 {
  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);
}

.logo-plasma-80da {
    text-align: center;
}

.logo-plasma-80da .warm_1005 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.logo-plasma-80da .tag-70dc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.surface-black-39c8 { text-align: center; }
.small_84b0 { text-align: left; }
.paragraph-ec01 { text-align: right; }

.popup_tiny_ae46 { margin-bottom: 0; }
.summary-e970 { margin-bottom: 0.5rem; }
.filter_57a0 { margin-bottom: 1rem; }
.column_a52f { margin-bottom: 1.5rem; }
.search-south-53d3 { margin-bottom: 2rem; }

.shade-right-9f90 { margin-top: 0; }
.preview-paper-eb82 { margin-top: 0.5rem; }
.cold_7dc3 { margin-top: 1rem; }
.accent_black_0dbb { margin-top: 1.5rem; }
.menu-a234 { margin-top: 2rem; }

.fn-hidden-86d3 { display: none; }
.fn-visible-86d3 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tabs_dda3 {
        padding: 6rem 0 3rem;
    }
    
    .active_2182 {
        text-align: center;
    }
    
    .paragraph_slow_cde3 {
        text-align: center;
    }
    
    .copper-33e4 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .component_bottom_d757,
    .progress_d792,
    .list_59f5,
    .avatar-ea42 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tabs_dda3 {
        background: none;
    }
}

/* Providers Section */
.header_9515 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-advanced-7e91 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-advanced-7e91 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-advanced-7e91 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-7fa7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.selected-7fa7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.in_ee4f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cool-db0e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.label_middle_5235 {
    list-style: none;
    padding: 0;
}

.label_middle_5235 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.label_middle_5235 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.bottom-3ccc {
    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);
}

.bottom-3ccc p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.easy_894d {
    padding: var(--section-padding);
}

.tall-3471 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall-3471 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium_c333 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.medium_c333:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.frame_purple_4893 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.out_470e {
    display: flex;
    flex-direction: column;
}

.picture-2488 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.chip-7c9b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wide-0ad9 {
    color: var(--accent-color);
}

.sort-tiny-a899 {
    font-size: 1.25rem;
}

.frame_in_d37a {
    margin-bottom: 1rem;
}

.frame_in_d37a p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.progress-e3c9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tooltip_6525 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.alert-0ba9 {
    text-align: center;
}

.warm_1005 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag-70dc {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.primary-d6e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-iron-d2a1 {
    margin: 2rem 0;
}

.text_611a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.text_611a .thumbnail-961b {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_828d {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.label_bottom_c8a9 {
    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;
}

.label_bottom_c8a9:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.primary-yellow-1505 {
    font-size: 2rem;
}

.fresh-676c {
    display: flex;
    flex-direction: column;
}

.tertiary_hot_9c41 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.link_west_5f18 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.next_4930 {
    padding: var(--section-padding);
}

.east-8f75 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .east-8f75 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east-8f75 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_in_a93f {
    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);
}

.pagination_in_a93f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pagination_in_a93f .warm_1005 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.pagination_in_a93f .tag-70dc {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.pagination_in_a93f .hovered_52f3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.component_0514 {
    margin-top: 4rem;
}

.overlay-3786 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.layout-3325 {
    overflow-x: auto;
}

.gradient_blue_d9cf {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gradient_blue_d9cf thead {
    background: var(--accent-color);
}

.gradient_blue_d9cf th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.gradient_blue_d9cf td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_blue_d9cf tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.gradient_blue_d9cf tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.gradient_129e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_clean_8ecf {
    max-width: 900px;
    margin: 0 auto;
}

.bronze_fd77 {
    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);
}

.bronze_fd77:hover {
    border-color: var(--accent-color);
}

.footer-gas-eaca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.footer-gas-eaca h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.card_7ced {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.bronze_fd77.fn-active-86d3 .card_7ced {
    transform: rotate(45deg);
}

.widget_59a9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.bronze_fd77.fn-active-86d3 .widget_59a9 {
    max-height: 1000px;
}

.widget_59a9 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.preview_342b {
    padding: var(--section-padding);
}

.search_2b67 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.outline_6af7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_pink_8296 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_pink_8296 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav_short_dac6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_8a17 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.up-c090 {
    font-size: 2rem;
}

.shade-d77a {
    color: var(--text-white);
    margin: 0;
}

.item-899b {
    list-style: none;
    padding: 0;
}

.item-899b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-899b li:last-child {
    border-bottom: none;
}

.dim_d974 {
    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);
}

.dim_d974 p {
    color: var(--success-color);
    margin: 0;
}

.tiny_5e25 {
    margin-top: 3rem;
}

.blue-3e32 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tooltip_new_ba7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tooltip_new_ba7c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.under-fdce {
    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);
}

.focused_573f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.under-fdce p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.input_static_ada9 {
    padding: var(--section-padding);
}

.element-bronze-d714 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-bronze-d714 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_3ee2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.rough_3ee2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plasma_7742 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.background-9b1e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.status-hot-4c30 {
    flex: 1;
}

.pagination-last-b015 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.active-e792 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.table-7754 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-ff18 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next-ff18:last-child {
    border-bottom: none;
}

/* Comparison Section */
.badge-c460 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.picture_57b5 {
    padding: var(--section-padding);
}

.main_old_5e2d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.preview_cdb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_cdb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown-755f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_72f6, .outline_f1b1, .content_dirty_390f {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.content_dirty_390f {
    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-gas-0171 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-top-ff6c {
    margin: 2rem 0;
}

.purple-393f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_stale_e028 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mask_down_7c1b {
    list-style: none;
    padding: 0;
}

.mask_down_7c1b 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_down_7c1b li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mask_down_7c1b li:last-child {
    border-bottom: none;
}

.blue_ac69 {
    text-align: center;
    margin-top: 2rem;
}

.footer_last_f290 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.gradient_6ac2 {
    padding: var(--section-padding);
}

.main_046d {
    margin: 2rem 0;
}

.wood_7f94 {
    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) {
    .wood_7f94 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.wood_7f94:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.motion_9daf {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.lower-6690 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pattern-new-7480 {
    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;
}

.hovered-0aff {
    flex: 1;
}

.action-c808 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hovered-17de {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.outline_fluid_0e35 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.fixed_da08 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .fixed_da08 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.container-black-171a {
    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);
}

.container-black-171a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.container-black-171a .warm_1005 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.container-black-171a .tag-70dc {
    color: var(--text-gray);
    font-size: 1rem;
}

.active_d591 {
    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);
}

.wrapper-c62f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.wrapper-c62f strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.thumbnail-4700 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .thumbnail-4700 {
        grid-template-columns: 1fr 1fr;
    }
}

.nav_outer_5de4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout-action-5fdd {
    margin-bottom: 1.5rem;
}

.layout-action-5fdd label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.layout-action-5fdd input,
.layout-action-5fdd 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;
}

.layout-action-5fdd input:focus,
.layout-action-5fdd select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.silver-4d7b {
    width: 100%;
    margin-top: 1rem;
}

.surface_white_817e {
    display: flex;
    align-items: center;
}

.media_dark_9852 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.row_6464 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.column-fast-11e1 {
    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;
}

.tertiary_steel_2486 {
    color: var(--text-gray);
}

.filter_orange_53db {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.component_0f4e {
    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);
}

.component_0f4e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.down_822b {
    margin-top: 3rem;
}

.notice_a444 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.label_c24f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_a25f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.box-hovered-ee15 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.box-hovered-ee15:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tertiary_selected_6c06 {
    padding: var(--section-padding);
}

.full-d2e5 {
    margin: 2rem 0;
}

.heading-b633 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.basic_74ee {
    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;
}

.basic_74ee:hover, .basic_74ee.fn-active-86d3 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.grid-last-b6ff {
    display: none;
}

.grid-last-b6ff.fn-active-86d3 {
    display: block;
}

.column-c463 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_out_3002 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tag_de08 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.tag_de08 ul {
    list-style: none;
    padding: 0;
}

.tag_de08 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tag_de08 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.west_d455 {
    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 */
.hover_selected_8ab5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper_f939 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_basic_1bb4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress-258f {
    color: var(--accent-color);
    margin: 0;
}

.slider_1bf7 {
    display: flex;
    gap: 1.5rem;
}

.hover_53ac {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.highlight_tall_bd58 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.light_3a06 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.light_3a06.lite_5bb7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.light_3a06.hover-gas-56ef {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.light_3a06.dropdown_wide_d138 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.fresh_effb {
    margin-top: 2rem;
}

.border_44a8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hover_5b4c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hover_5b4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-509b {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.hero_static_424a {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hover_7f3a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.row_a600 {
    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 */
.list-slow-a62a {
    padding: var(--section-padding);
}

.picture-68fc {
    margin: 2rem 0;
}

.sort-iron-30e0 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.tall_18a2 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.column_dirty_c576 {
    list-style: none;
    padding: 0;
}

.column_dirty_c576 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;
}

.column_dirty_c576 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.column_dirty_c576 li:last-child {
    border-bottom: none;
}

.lite_b134 {
    margin: 2rem 0;
}

.dark_9d8f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert_pressed_5f0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .alert_pressed_5f0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notification_b129 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_iron_76d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade_liquid_c255 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.footer_8e0d {
    margin-top: 2rem;
}

.sidebar-2453 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.focus-solid-4033 {
    list-style: none;
    padding: 0;
}

.thick_e3e5 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.thick_e3e5 a {
    color: var(--accent-color);
    text-decoration: none;
}

.thick_e3e5 a:hover {
    text-decoration: underline;
}

.gold-8a24 {
    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 */
.feature_8768 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-94ce {
    margin: 2rem 0;
}

.light_7900 {
    margin-bottom: 3rem;
}

.light_7900 .feature_stale_e028 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.layout_d853 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.media-cd2f {
    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);
}

.media-cd2f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.module-gold-75fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .module-gold-75fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_0196 {
    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 */
.hover-action-23ba {
    padding: var(--section-padding);
}

.article-6332 {
    margin: 2rem 0;
}

.short-6ce4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.list-19c5 {
    overflow-x: auto;
    margin: 2rem 0;
}

.thumbnail-bead {
    background: rgba(6, 182, 212, 0.1) !important;
}

.gallery_over_914f {
    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;
}

.preview-2cf4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.focus_0967 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .focus_0967 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_full_dd36 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_full_dd36 .thumbnail-961b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.alert_full_dd36 .green_b7e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-9149 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.description-238a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-4af5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-4af5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas_d9e7 {
    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;
}

.gas_d9e7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.right_52f7 {
    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);
}

.large_d690 {
    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;
}

.texture_wood_6230 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gold_76af {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.bottom_6c9d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.layout-3711 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-hard-86c6 {
    color: var(--text-white);
    font-weight: 600;
}

.badge-orange-53d3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video_5134 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video_5134 .dropdown-63f3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.focus-tiny-994e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-tiny-994e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-8be4 {
    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);
}

.card-8be4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-8be4 .warm_1005 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-8be4 .tag-70dc {
    color: var(--text-gray);
    font-size: 1rem;
}

.icon_4953 {
    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);
}

.texture_180a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.texture_180a strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.frame_action_898c {
    margin: 2rem 0;
}

.search_afae {
    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);
}

.search_afae:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.caption-31d3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.left_6832 {
    flex: 1;
}

.modal_e9d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary-stone-e983 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.orange-266d {
    margin: 2rem 0;
}

.texture-c3a6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-c3a6 .green_b7e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.texture-c3a6 .secondary-e4ce {
    color: var(--text-gray);
    margin: 0;
}

.card-8efb {
    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);
}

.card-8efb .banner-top-dc6c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.footer-9149 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.feature_17d5 {
    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;
}

.yellow_a021 {
    flex: 1;
}

.card_a258 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.widget_644e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.thumbnail-6f4f {
    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;
}

.solid_eda6 {
    flex: 1;
}

.cold_3981 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.top-2a1a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.shade-b225 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.steel-f5ee {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.right-8b4e {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.right-8b4e .dropdown-63f3 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.header-basic-4b6f {
    margin-top: 2rem;
}

.header-basic-4b6f .blue-3e32 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.grid_eace {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-east-91f2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .column-east-91f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-east-91f2 .alert-0ba9 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_c4f9 {
    margin: 2rem 0;
}

.cold_4c84 {
    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 */
.next_7b9b {
    padding: var(--section-padding);
}

.gradient-selected-3658 {
    margin-top: 1rem;
}

.block_bottom_6a08 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.block_bottom_6a08 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.block_bottom_6a08 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.simple-4f72 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_wood_4c62 {
    margin: 2rem 0;
}

.grid-slow-7cde {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.gradient-light-fe14 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.header-clean-a24c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.dynamic_7854 {
    margin: 2rem 0;
}

.highlight-1b06 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.highlight-1b06 .feature_stale_e028 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion-1064 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion-1064 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus_down_08e2 {
    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);
}

.description-ead2 {
    color: var(--text-white);
    font-weight: 600;
}

.item-pink-9a36 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.list-8aa2 {
    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);
}

.list-8aa2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.detail_slow_3c25 {
    padding: var(--section-padding);
}

.complex-a191 {
    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-a191:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.warm-16e0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.warm-16e0 .focused_573f {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-16e0 .preview_next_5a53 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.alert-c971 {
    flex: 1;
}

.selected-98f1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bright_7f52 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright_7f52 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bright_7f52 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tall_eae5 {
    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);
}

.tall_eae5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tall_eae5 strong {
    color: var(--warning-color);
}

/* Slots Section */
.hover-b35a {
    padding: var(--section-padding);
}

.outer-2058 {
    margin: 2rem 0;
}

/* Table Games Section */
.current-1e01 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-e199 {
    margin: 2rem 0;
}

.section_90f5 {
    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);
}

.section_90f5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.section_90f5 .fluid_2e78 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_90f5 .grid-wide-c800 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.shadow_08d5 {
    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);
}

.shadow_08d5 .banner-top-dc6c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.table_7d4c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-1bb2 {
    margin: 2rem 0;
}

.glass-d90f {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_00ea {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.narrow-29dc {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.shadow-large-6561 {
    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);
}

.shadow-large-6561:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.shadow-large-6561.fn-active-86d3 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-1f07 {
    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);
}

.north_831d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north_831d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.motion_98c0 {
    padding: var(--section-padding);
}

.description_new_ceff {
    margin: 2rem 0;
}

.table-old-45d2 {
    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);
}

.table-old-45d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .table-old-45d2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.focus_21e3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.pro_11e2 {
    flex: 1;
}

.list_6fc4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-d90f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.green_dc3d {
    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;
}

.media-2f32 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wrapper_hard_0bdc {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cold_c814 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.block-7a18 {
    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;
}

.block-7a18:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hard_9524 {
    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);
}

.background-f8d5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.background-f8d5 strong {
    color: var(--accent-color);
}

/* New Games Section */
.west-d010 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-east-a4af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .title-east-a4af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title-east-a4af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-yellow-0c2d {
    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;
}

.panel-yellow-0c2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.surface-mini-6aa6 {
    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;
}

.layout_dynamic_9836 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.overlay-b0d3 {
    font-size: 2rem;
}

.liquid_49f3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.carousel-8ef4 {
    flex: 1;
}

.notice-c413 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.menu_mini_e08d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.black_f3c0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sidebar-bb7f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gallery_dynamic_fd58 {
    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;
}

.detail-cbd0 {
    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;
}

.detail-cbd0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header_a96c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-ba68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.action_8218 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .action_8218 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-344f {
    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);
}

.message-lite-a2fa {
    color: var(--text-white);
    font-weight: 600;
}

.filter-motion-2923 {
    color: var(--accent-color);
    font-weight: 600;
}

.primary_upper_532b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.primary_upper_532b strong {
    color: var(--accent-color);
}

/* Security Section */
.progress-8b79 {
    padding: var(--section-padding);
}

/* Benefits Section */
.heading_bottom_1093 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.component-9774 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.panel_277b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down_03ea {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.notification_current_3e88 {
    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_current_3e88 {
        flex-direction: column;
        gap: 1rem;
    }
}

.notification_current_3e88:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notification_current_3e88 .thumbnail-6f4f {
    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_current_3e88 .solid_eda6 {
    flex: 1;
}

.notification_current_3e88 .cold_3981 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.notification_current_3e88 .top-2a1a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.short_962b {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_962b .new_57b0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.short_962b .search_78a0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short_962b .search_78a0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.short_962b .search_78a0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.background-f872 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.new-9560 {
    padding: var(--section-padding);
}

.wood-bd5a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .wood-bd5a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_552d {
    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);
}

.footer_552d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.footer_552d .simple_43f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_552d .shade_light_163f {
    flex: 1;
}

.footer_552d .new_336b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer_552d .link-b180 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.box-d6cc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-d6cc .paragraph_ae69 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.box-d6cc .disabled_center_fabb {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.box-d6cc .disabled_center_fabb 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);
}

.box-d6cc .disabled_center_fabb li:last-child {
    border-bottom: none;
}

.box-d6cc .disabled_center_fabb 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;
}

.box-d6cc .disabled_center_fabb li strong {
    color: var(--text-white);
}

.dim-d529 {
    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);
}

.dim-d529 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dim-d529 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.dim_1d12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-0256 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading-0256 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.soft_e307 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.soft_e307:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.over_b4a6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light_0d34 {
    font-size: 2rem;
}

.solid_49f7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.bottom_dcc2 {
    flex: 1;
}

.small-a55b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-a55b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.small-a55b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cold_b0af {
    margin-top: 3rem;
}

.sort-iron-30e0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tall_18a2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column_dirty_c576 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_dirty_c576 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.column_dirty_c576 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.column_dirty_c576 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.info-ffbd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-e08d {
    margin: 2rem 0;
}

.detail-mini-cd88 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.detail-mini-cd88 .feature_stale_e028 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast_c6df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fast_c6df {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-51ce {
    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);
}

.gallery-51ce:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.focus_c67c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wrapper-west-b451 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.footer-lite-ff04 {
    padding: var(--section-padding);
}

.overlay-2b0b {
    margin: 2rem 0;
}

.table-c443 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .table-c443 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table-c443 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_9e63 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.large_9e63:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.old-b529 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shade-fd53 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.label_dark_aa38 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.label_dark_aa38.pattern-8c01 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary_dim_4e77 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.bronze-39fd {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.modal_db43 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-7dea {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail_d970 {
    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);
}

.detail_d970 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_d970 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.smooth-8e82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_down_0c5a {
    margin: 2rem 0;
}

.menu-center-9a82 {
    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) {
    .menu-center-9a82 {
        flex-direction: column;
        gap: 1rem;
    }
}

.menu-center-9a82:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.menu-center-9a82::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);
}

.row-clean-7397 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.avatar-dirty-6ef3 {
    flex: 1;
}

.modal-static-2a77 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notice_c54e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice_c54e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.link_2760 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_mini_9145 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input_a0df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input_a0df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty_d71b {
    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);
}

.tertiary-pressed-1a05 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail_ae3b {
    flex: 1;
}

.notification-slow-528d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.texture_47df {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dropdown_7779 {
    margin-top: 2rem;
    text-align: center;
}

.hero_hot_030f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hero_hot_030f strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.wrapper_full_b58b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_full_b58b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-54d0 {
    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);
}

.medium-54d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.medium-54d0 .media-glass-9f97 {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium-54d0 .container-last-c3ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.medium-54d0 .image_inner_6730 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.medium-54d0 .popup_8119 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.easy-00c1 {
    padding: var(--section-padding);
}

.accent_new_af3a .inner-dbc1 {
    flex: 1;
}

/* Promo Calendar Section */
.alert-active-d06a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_16c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_16c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module_complex_2765 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-hard-fcd8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.row-small-24cd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table_solid_69e6 {
    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);
}

.list_a6e6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.over_d8ac {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.mask_fb98 {
    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);
}

.mask_fb98 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask_fb98 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.image-east-f475 {
    padding: var(--section-padding);
}

.solid_fb9c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .solid_fb9c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary-hot-7fe1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_a75a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay_stale_8219 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay_stale_8219 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-3df7 {
    margin-top: 3rem;
}

.bright-3df7 .sort-iron-30e0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.bright-3df7 .tall_18a2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bright-3df7 .column_dirty_c576 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.bright-3df7 .column_dirty_c576 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.bright-3df7 .column_dirty_c576 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.bright-3df7 .column_dirty_c576 li strong {
    color: var(--warning-color);
}

.list_south_7039 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.list_south_7039 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.active_0940 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma-381d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma-381d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.silver-5430 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-5430 .feature_stale_e028 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.popup_blue_f9af {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-5ae8 {
    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);
}

.modal-5ae8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.cool-605f {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-bronze-8069 {
    flex: 1;
}

.list-small-8e88 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.primary-3050 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.new_8423 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.outer-6480 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fast-7946 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .fast-7946 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_928f {
    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);
}

.accordion_928f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup_paper_9b05 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status_motion_c249 {
    color: var(--text-gray);
    font-size: 1rem;
}

.wrapper-c62f {
    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);
}

.hard-81a6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hard-81a6 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.first-6f1f { 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; }
.summary-f363, .item-8f82 { max-width:100%; height:auto; }

.block_paper_6b90, .center_e6f0, .layout_up_7abd { white-space:normal; }

.active_2182,
.paragraph_slow_cde3,
.column-advanced-28cb,
.wrapper_full_b58b,
.orange-266d,
.tertiary_pressed_084f {
  flex-wrap:wrap;
}

[class*="grid"],
.fast-7946,
.table-c443,
.element-d3d6 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tabs_dda3 img,
.paragraph_slow_cde3 img,
.pattern_1a0a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.row-up-2ed8, .background-23bc,
.blue_7026, .breadcrumb-right-6b70 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.layout-3325 { width:100%; overflow-x:auto; }
.layout-3325 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.tertiary-advanced-7e91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .tertiary-advanced-7e91 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.selected-7fa7 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.east-8f75,
.border_dark_566c,
.smooth_8af7,
.footer-aa08,
.fixed_da08,
.fast-7946,
.table-c443,
.element-d3d6,
.description-7603,
.description_new_ceff,
.tertiary-advanced-7e91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .east-8f75,
  .border_dark_566c,
  .smooth_8af7,
  .footer-aa08,
  .fixed_da08,
  .fast-7946,
  .table-c443,
  .element-d3d6,
  .description-7603,
  .description_new_ceff,
  .tertiary-advanced-7e91 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.pagination_in_a93f,
.container-black-171a,
.accordion_928f,
.cool-15d2,
.large_9e63,
.logo-plasma-80da,
.table-old-45d2,
.selected-7fa7 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.modal_complex_4818,
.fluid-9aed,
.pro-4bdc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal_complex_4818 > *,
.fluid-9aed > *,
.pro-4bdc > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d708 */
.phantom-card-e9 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
