/* {$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;
}

.overlay-fluid-0bd7 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.tabs-9890 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .tabs-9890 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tabs-9890 {
        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 */
.disabled_current_b15f {
    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);
}

.detail-down-c09c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .detail-down-c09c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .pagination_a2fd {
        grid-column: 1;
    }
    
    .backdrop_e91e {
        grid-column: 2;
    }
    
    .paragraph_da85 {
        grid-column: 3;
    }
}

.pagination_a2fd img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.pagination_a2fd:hover img {
    transform: scale(1.05);
}

/* Navigation */
.active_ab17 {
    display: none;
}

@media (min-width: 1024px) {
    .active_ab17 {
        display: block;
    }
}

/* Grouped Navigation */
.backdrop_fast_9112 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.gradient_aca5 {
    position: relative;
}

.summary_f9f8 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.gradient_aca5 .steel-468e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.steel-468e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.tertiary-91bc {
    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;
}

.tertiary-91bc:hover,
.tertiary-91bc.fn-active-a613 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.feature_tall_a26e {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .feature_tall_a26e {
        display: flex;
    }
}

/* Mobile Register Button */
.backdrop_e91e {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .backdrop_e91e {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.text_tiny_9139 {
    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;
}

.text_tiny_9139::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 */
.paragraph_da85 {
    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) {
    .paragraph_da85 {
        display: none;
    }
}

.paragraph_da85 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.paragraph_da85.fn-active-a613 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.paragraph_da85.fn-active-a613 span:nth-child(2) {
    opacity: 0;
}

.paragraph_da85.fn-active-a613 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.wrapper_stale_3990 {
    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;
}

.wrapper_stale_3990.fn-active-a613 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.widget_steel_01fd {
    overflow: hidden;
}

.surface-14a1 {
    list-style: none;
    padding: 0.75rem 0;
}

.gallery-cool-247d {
    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;
}

.gallery-cool-247d:hover,
.gallery-cool-247d.fn-active-a613 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.gallery-cool-247d.content_center_f9c0 {
    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;
}

.gallery-cool-247d.content_center_f9c0::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 */
.info-affa {
    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;
}

.icon_13b8 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.icon_13b8:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.image-lite-14a0 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.image-lite-14a0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.small-c0d0 {
    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;
}

.small-c0d0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.gas-476a {
    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;
}

.tertiary-last-d127 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.tertiary-last-d127:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.badge-steel-d3d5 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.badge-steel-d3d5:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.frame_iron_7f91 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.frame_iron_7f91: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);
}

.current-eb61 {
    font-size: 1em;
    font-weight: 700;
}

.brown-ef40 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.video-815a {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.video-815a::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;
}

.filter_in_3aa4 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .filter_in_3aa4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.light_6aca {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.article-green-b7b1 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.message-f410 {
    margin-bottom: 2rem;
}

.last-c8df {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .last-c8df {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_copper_542e {
    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);
}

.background-slow-171d {
    font-size: 1.5rem;
}

.text-short-e3b3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.media_stale_e555 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-cold-e41d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.list-cold-e41d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.container-9278 {
    text-align: center;
    margin-bottom: 3rem;
}

.search-west-3ea8 {
    margin-bottom: 1rem;
}

.secondary-red-5dd9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.dirty_c8ca {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dirty_c8ca {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .dirty_c8ca.iron-9588 {
        direction: rtl;
    }
    
    .dirty_c8ca.iron-9588 > * {
        direction: ltr;
    }
}

.border_bronze_b736 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.border_bronze_b736:first-child {
    margin-top: 0;
}

.filter_tiny_0bca {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.grid_7bca {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.grid_7bca:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.steel_bef4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel_bef4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action_6cd9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.first_a664 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.info_north_1113 {
    list-style: none;
}

.info_north_1113 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_north_1113 li:last-child {
    border-bottom: none;
}

/* Games Features */
.secondary_first_bbd8 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.header_pressed_855e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-tiny-8f58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_63f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.focused_282f {
    margin: 2rem 0;
}

.under_8009 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.north-df6e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.gallery-9ede {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tertiary_dim_1d04 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.header_e35a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_e35a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-2914 {
    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);
}

.outline-2914:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-b2a1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.breadcrumb-iron-1d37 {
    font-size: 1.5rem;
}

.progress-lite-da22 {
    color: var(--accent-color);
    margin: 0;
}

.thumbnail_out_5659 {
    list-style: none;
}

.thumbnail_out_5659 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.thumbnail_out_5659 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.advanced_4baa {
    margin: 2rem 0;
}

.background-right-a2bc {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.iron-b072 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .iron-b072 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-d724 {
    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);
}

.soft_8e39 {
    font-size: 1.25rem;
}

.modal_cool_a8d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.complex-aeaa,
.overlay_4973 {
    text-align: center;
    margin: 2rem 0;
}

.focused_0268,
.cold_07b1 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.mask_up_25ca {
    margin: 2rem 0;
    text-align: center;
}

.north-cda2 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.north-cda2::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;
}

.focus_left_52be {
    position: relative;
    z-index: 1;
}

.content_fast_4457 {
    margin-bottom: 1rem;
}

.widget-c7e9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sort_short_25a7 {
    margin-bottom: 3rem;
}

.icon_selected_5ecf {
    margin-top: 3rem;
}

.text-purple-d358 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .text-purple-d358 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-purple-d358 .footer_copper_542e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-black-f2d5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-under-d0b9 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.button_clean_1d1d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.fast_c4c3 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .fast_c4c3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fast_c4c3 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.component-e791 {
    margin-bottom: 1rem;
}

.gallery_0647 img {
    margin-bottom: 1rem;
}

.logo_action_d7cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-bronze-0cb9 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.texture-medium-432d {
    list-style: none;
}

.texture-medium-432d li {
    margin-bottom: 0.5rem;
}

.texture-medium-432d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.texture-medium-432d a:hover {
    color: var(--accent-color);
}

.backdrop_easy_2713 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mask_5d13 {
    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);
}

.mask_5d13:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.info_small_d8fe {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.info_small_d8fe p {
    margin-bottom: 0.25rem;
}

.basic-8948 {
    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) {
    .basic-8948 {
        flex-direction: row;
    }
}

.inner-e568 {
    text-align: center;
}

@media (min-width: 768px) {
    .inner-e568 {
        text-align: left;
    }
}

.inner-e568 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny-98ea {
    font-size: 0.75rem !important;
}

.notice_fb05 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.selected-657a {
    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);
    }
}

.background-tall-3978 {
    animation: fadeInUp 0.6s ease-out;
}

.box_smooth_abcc {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.focus-3289 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-3289 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.full-8933 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-8933 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_dirty_1ac1 {
    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);
}

.notification_dirty_1ac1 .icon-tiny-8f58 {
    font-size: 1.25rem;
}

.notification_dirty_1ac1 .steel-010e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.list-gold-36ee {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .list-gold-36ee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-9e0d {
    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);
}

.main-9e0d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary_inner_627b {
    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);
}

.primary-mini-c8c3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.text_f197 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow-9bf8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_752c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_752c .hover_63f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_752c .hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-2551 {
    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);
}

.layout-action-0999 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.layout-action-0999 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.layout-action-0999 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.progress-2677 {
    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);
}

.wood-1129 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.narrow_e572 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.narrow_e572 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.narrow_e572 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);
}

.narrow_e572 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.narrow_e572 input::placeholder {
    color: var(--text-muted);
}

.up_e2d3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.full_bc4e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.full_bc4e input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.feature-orange-ba3e {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.feature-orange-ba3e:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.iron-b072 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron-b072 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-d724 {
    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);
}

.east-d724 .soft_8e39 {
    font-size: 1.25rem;
}

.east-d724 .modal_cool_a8d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.pagination-b2f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-897c {
    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);
}

.wide-897c .icon-tiny-8f58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-897c .hover_63f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide-897c .hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-paper-57de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink_2972 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pink_2972 .aside_e798 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink_2972 .tiny_4427 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_3104 {
    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);
}

.yellow_6801 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .yellow_6801 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_3293 {
    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);
}

.hero_3293:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_dirty_4baf {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.logo_8448 {
    flex: 1;
}

.modal_16a7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.text_south_faa2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.first-3140 {
    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);
}

.first-3140:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.slider_wide_9860 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_wide_9860 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_top_c355 {
    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);
}

.summary_top_c355:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-top-6d32 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_3349 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery_e921 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.white_cb19 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.down_bef8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-9d98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_west_f53f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_west_f53f .prev-177c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_west_f53f .mini-895f {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-right-9992 {
    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);
}

.carousel_light_d864 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_332b {
    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);
}

.container_332b .icon-tiny-8f58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_332b .hover_63f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_332b .hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-269c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-269c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm_9c3b {
    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);
}

.warm_9c3b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.advanced-9984 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced-9984 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_old_26e7 {
    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);
}

.hidden_old_26e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop-dim-d110 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-0b00 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.north-df6e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.solid-28f8 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.search-3aec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_3a89 {
    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);
}

.avatar_3a89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down-be3c {
    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);
}

.blue-e848 {
    flex: 1;
}

.message_middle_c314 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.component-1e9c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.static-a184 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under_c6f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-8865 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-8865 .aside_e798 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid-8865 .tiny_4427 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_4973 {
    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);
}

.column_8f8a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_8f8a {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.row_outer_7f57 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row_outer_7f57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark_114d {
    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);
}

.dark_114d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-last-f3dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail_149d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.grid_3cbe {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop-8137 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.orange_df5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-dim-fea2 {
    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-6e6d {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-8bf5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice-pressed-3a90 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_light_d864 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_332b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.container_332b .hover_63f8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_332b .hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_c9f1 {
    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);
}

.aside_4d86 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_4d86 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_4d86 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_pressed_fb07 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.breadcrumb_pressed_fb07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-7390 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.input_down_f7c1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.stale-ea95 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.shade_b28f {
    padding: 1.5rem;
}

.form-8b3e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.chip-b1bb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-b1bb 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;
}

.chip-b1bb li:last-child {
    border-bottom: none;
}

.chip-b1bb li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.pattern_silver_c6c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_silver_c6c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out_8d07 {
    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);
}

.out_8d07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-123f {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-f687 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-50fe {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.background_orange_d77d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.blue_a19f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-756c {
    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);
}

.smooth_4453 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver-35e6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool-59fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-tall-3072 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-64aa {
    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);
}

.aside-center-e4e2 {
    text-align: center;
}

.north_2e16 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-slow-42d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-fast-bafa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-66c2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-66c2 .hover_63f8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-66c2 .hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-c92e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .next-c92e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .next-c92e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-1462 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview-1462:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight_3cb4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tall_8704 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover_63f8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.alert-clean-d84e {
    padding: 1.5rem;
}

.hard_0e73 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pink-b91d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink-b91d 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;
}

.pink-b91d li:last-child {
    border-bottom: none;
}

.pink-b91d li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.tabs_paper_f2bb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.panel_c05a {
    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);
}

.panel_c05a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_middle_b8ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.orange_9861 {
    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);
}

.summary_inner_627b {
    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;
}

.primary-mini-c8c3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text_f197 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_7a99 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-f9b1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.status_26d3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature_5bb2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.block-cc14 {
    display: flex;
    gap: 1rem;
}

.block-cc14 .overlay-3156 {
    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;
}

.simple_a400 {
    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);
}

.summary_paper_23b6 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list_d859 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_d859 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;
}

.list_d859 li:last-child {
    border-bottom: none;
}

.list_d859 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.sidebar_1b32 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar_1b32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar_1b32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_light_777e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort_light_777e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header-easy-c8b3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.down-f6b6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.prev-177c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.east_8a2b {
    font-size: 1rem;
}

.nav-full-1f6a {
    padding: 1.5rem;
}

.mini-895f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.block-af6b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.block-af6b .aside-center-e4e2 {
    text-align: center;
}

.block-af6b .modal-slow-42d7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.block-af6b .picture-c72d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar-b596 {
    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);
}

.sidebar-b596:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.form_bronze_dd34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_bronze_dd34 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_6c7e {
    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);
}

.link_6c7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-gas-ddf1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs-9083 {
    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);
}

.orange-c444 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-wood-b3b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pressed-6127 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-center-70a5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary-focused-5c06 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma_88a2 {
    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);
}

.popup-stale-11e6 {
    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;
}

.popup-stale-11e6.fixed_d2ea {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.popup-stale-11e6.full-d8ef {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.popup-stale-11e6.element_5e34 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.popup-stale-11e6.breadcrumb_black_ffa2 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.popup-stale-11e6.bronze-68e4 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.badge_fluid_bbe3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.top_6c2d {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_da34 {
    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);
}

.right-21bb {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.background-paper-57de {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-paper-57de 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;
}

.background-paper-57de li:last-child {
    border-bottom: none;
}

.background-paper-57de li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.box_purple_1e4c {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box_purple_1e4c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box_purple_1e4c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green-b337 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.green-b337:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green-b337.hover_f7b3 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .green-b337.hover_f7b3 {
        grid-column: span 3;
    }
}

.row-tiny-1a89 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.green-b337.hover_f7b3 .row-tiny-1a89 {
    background: rgba(6, 182, 212, 0.1);
}

.hidden-small-2b5b {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-new-7052 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.green-b337.hover_f7b3 .feature-new-7052 {
    color: var(--info-color);
}

.clean_46c2 {
    padding: 1.5rem;
    text-align: center;
}

.new-4c6e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.green-b337.hover_f7b3 .new-4c6e {
    color: var(--info-color);
}

.slider-liquid-c761 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dim_536c {
    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 */
.pagination-dynamic-20b6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-dynamic-20b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-362b {
    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);
}

.west-362b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo-upper-e32d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-897c {
    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);
}

.soft_8e39 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-fc77 {
    flex: 1;
}

.background-right-a2bc {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel-373a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-focused-ef99 {
    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);
}

.new_8108 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pink-d69e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-657a {
    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);
}

.glass-2d25 {
  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);
}

.glass-2d25 .aside-center-e4e2 {
    text-align: center;
}

.glass-2d25 .north_2e16 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.glass-2d25 .modal-slow-42d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.form-cold-2080 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-fa62 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_4636 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inner-995d {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-3d9e {
    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);
}

.right-2ce7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed_9d29 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-49e5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-49e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-49e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_a6b6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gold_a6b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-red-a04a {
    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);
}

.shadow_ee6d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.modal_2b83 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.pagination-793f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pagination-793f.hover-in-3afd {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.pagination-793f.carousel_cold_ad49 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.pagination-793f.red_0a3e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.section_3775 {
    padding: 1.5rem;
    text-align: center;
}

.full_6204 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-static-e423 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.slider-static-e423 .current_fb7e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.sidebar-965a {
    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);
}

.sidebar-965a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.chip-inner-1123 {
  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);
}

.south_6344 {
    text-align: center;
}

.south_6344 .north_2e16 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.south_6344 .modal-slow-42d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tooltip-hovered-0f1e { text-align: center; }
.notice_8039 { text-align: left; }
.column-liquid-68c5 { text-align: right; }

.media_focused_66ca { margin-bottom: 0; }
.text-1869 { margin-bottom: 0.5rem; }
.tabs_c111 { margin-bottom: 1rem; }
.background-out-44ea { margin-bottom: 1.5rem; }
.stale-34fe { margin-bottom: 2rem; }

.hot-85d8 { margin-top: 0; }
.border_7435 { margin-top: 0.5rem; }
.detail_yellow_2376 { margin-top: 1rem; }
.feature_easy_0d2c { margin-top: 1.5rem; }
.grid-e95e { margin-top: 2rem; }

.fn-hidden-a613 { display: none; }
.fn-visible-a613 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .video-815a {
        padding: 6rem 0 3rem;
    }
    
    .filter_in_3aa4 {
        text-align: center;
    }
    
    .dirty_c8ca {
        text-align: center;
    }
    
    .last-c8df {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .disabled_current_b15f,
    .wrapper_stale_3990,
    .north-cda2,
    .button_clean_1d1d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .video-815a {
        background: none;
    }
}

/* Providers Section */
.thumbnail_c8c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white_a1f1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white_a1f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .white_a1f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_0808 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.easy_0808:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.detail_697a {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-purple-a07f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.aside_paper_c94f {
    list-style: none;
    padding: 0;
}

.aside_paper_c94f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.aside_paper_c94f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.menu_glass_b0e1 {
    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);
}

.menu_glass_b0e1 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.tertiary-49ce {
    padding: var(--section-padding);
}

.paragraph_wide_bf17 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_wide_bf17 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top_4744 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.top_4744:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.west-a227 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cold-6946 {
    display: flex;
    flex-direction: column;
}

.current-34b2 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.narrow_221b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.card-623d {
    color: var(--accent-color);
}

.row-5805 {
    font-size: 1.25rem;
}

.simple-c281 {
    margin-bottom: 1rem;
}

.simple-c281 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.south_cd6b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.component_white_d60f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.aside-center-e4e2 {
    text-align: center;
}

.north_2e16 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-slow-42d7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.preview_out_b0b2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_9b61 {
    margin: 2rem 0;
}

.info_warm_d7e4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info_warm_d7e4 .icon-tiny-8f58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-4d8e {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-basic-2bae {
    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;
}

.carousel-basic-2bae:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification_down_d134 {
    font-size: 2rem;
}

.fast_fc82 {
    display: flex;
    flex-direction: column;
}

.progress-first-5870 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.rough_cc61 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.backdrop-east-4efb {
    padding: var(--section-padding);
}

.message_center_15c8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .message_center_15c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_center_15c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-d228 {
    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);
}

.bottom-d228:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bottom-d228 .north_2e16 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.bottom-d228 .modal-slow-42d7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.bottom-d228 .static_83f0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.warm-78d3 {
    margin-top: 4rem;
}

.avatar-e109 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.box_copper_4918 {
    overflow-x: auto;
}

.hero_hard_167e {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero_hard_167e thead {
    background: var(--accent-color);
}

.hero_hard_167e th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.hero_hard_167e td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_hard_167e tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.hero_hard_167e tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.sort-inner-50e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_dacf {
    max-width: 900px;
    margin: 0 auto;
}

.clean-2eaa {
    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);
}

.clean-2eaa:hover {
    border-color: var(--accent-color);
}

.sidebar-218c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.sidebar-218c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.column_gas_d67f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.clean-2eaa.fn-active-a613 .column_gas_d67f {
    transform: rotate(45deg);
}

.lite_2860 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.clean-2eaa.fn-active-a613 .lite_2860 {
    max-height: 1000px;
}

.lite_2860 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.liquid-9b51 {
    padding: var(--section-padding);
}

.layout-action-0999 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.row_1502 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next-8134 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next-8134 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary_abe1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-77f6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.inner_2620 {
    font-size: 2rem;
}

.tooltip_3feb {
    color: var(--text-white);
    margin: 0;
}

.container_pressed_ee84 {
    list-style: none;
    padding: 0;
}

.container_pressed_ee84 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container_pressed_ee84 li:last-child {
    border-bottom: none;
}

.caption_advanced_8dc2 {
    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);
}

.caption_advanced_8dc2 p {
    color: var(--success-color);
    margin: 0;
}

.hidden-844a {
    margin-top: 3rem;
}

.summary_paper_23b6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.action-e348 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .action-e348 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-e6e1 {
    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);
}

.block-dirty-7867 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tooltip-e6e1 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.inner_b334 {
    padding: var(--section-padding);
}

.surface_basic_fd92 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_basic_fd92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_8fb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.heading_8fb0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-south-10f4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.focused-3d2f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.menu_warm_c7e5 {
    flex: 1;
}

.thick_7f7e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.module-7fa2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.secondary_df13 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-current-0f57 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-current-0f57:last-child {
    border-bottom: none;
}

/* Comparison Section */
.detail-cc2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.aside-east-8556 {
    padding: var(--section-padding);
}

.info_last_6c0a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.action_f93f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action_f93f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-9bd2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty-b4a7, .search_down_99d1, .tertiary_013f {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tertiary_013f {
    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 */
.orange_cfa4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-916e {
    margin: 2rem 0;
}

.active_advanced_88dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-medium-35ff {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.nav_2a87 {
    list-style: none;
    padding: 0;
}

.nav_2a87 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;
}

.nav_2a87 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.nav_2a87 li:last-child {
    border-bottom: none;
}

.outer-d4f8 {
    text-align: center;
    margin-top: 2rem;
}

.preview_17b8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.bright-472e {
    padding: var(--section-padding);
}

.icon_0f27 {
    margin: 2rem 0;
}

.full_4969 {
    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) {
    .full_4969 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.full_4969:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_slow_c6ca {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.label-motion-45dc {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.green_f353 {
    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;
}

.pagination-ff23 {
    flex: 1;
}

.component_3cef {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.smooth_2e75 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tertiary_967e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.next-5553 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .next-5553 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.current_3589 {
    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);
}

.current_3589:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.current_3589 .north_2e16 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current_3589 .modal-slow-42d7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pagination_87e9 {
    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);
}

.alert-e6e7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.alert-e6e7 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.surface-aeb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .surface-aeb8 {
        grid-template-columns: 1fr 1fr;
    }
}

.container_copper_2879 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_6339 {
    margin-bottom: 1.5rem;
}

.content_6339 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.content_6339 input,
.content_6339 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;
}

.content_6339 input:focus,
.content_6339 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.stone-5878 {
    width: 100%;
    margin-top: 1rem;
}

.accent_west_c3c8 {
    display: flex;
    align-items: center;
}

.notice_ed85 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.wood_65a4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.action_62f1 {
    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;
}

.over_1a25 {
    color: var(--text-gray);
}

.element_4709 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.selected-6298 {
    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);
}

.selected-6298 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.badge-4c50 {
    margin-top: 3rem;
}

.border-f10d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.dropdown-last-3da0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_complex_7dbc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.border_wood_25b7 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border_wood_25b7:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.texture_pink_903d {
    padding: var(--section-padding);
}

.smooth_b390 {
    margin: 2rem 0;
}

.nav-5d50 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.video_57b0 {
    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;
}

.video_57b0:hover, .video_57b0.fn-active-a613 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tooltip_c79f {
    display: none;
}

.tooltip_c79f.fn-active-a613 {
    display: block;
}

.status-bright-c985 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_dfe4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.nav-244c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.nav-244c ul {
    list-style: none;
    padding: 0;
}

.nav-244c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.nav-244c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.card-dim-c067 {
    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 */
.dropdown_410d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_light_8038 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-b335 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pink_f42b {
    color: var(--accent-color);
    margin: 0;
}

.box-tiny-9624 {
    display: flex;
    gap: 1.5rem;
}

.filter_short_00b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper-4b3b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.texture-upper-6ce4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.texture-upper-6ce4.breadcrumb-1624 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.texture-upper-6ce4.shadow-aa70 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.texture-upper-6ce4.footer-28a2 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.smooth_89cf {
    margin-top: 2rem;
}

.article-df2e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.container-4275 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .container-4275 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-3a61 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.aside-gas-4c69 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.background-f493 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer_orange_b647 {
    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 */
.shade_f43d {
    padding: var(--section-padding);
}

.notice_selected_5e94 {
    margin: 2rem 0;
}

.gradient-prev-fa45 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.backdrop-blue-b9d8 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.backdrop-lower-3360 {
    list-style: none;
    padding: 0;
}

.backdrop-lower-3360 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;
}

.backdrop-lower-3360 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.backdrop-lower-3360 li:last-child {
    border-bottom: none;
}

.mask_4699 {
    margin: 2rem 0;
}

.white_4024 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border-liquid-e6ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .border-liquid-e6ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pressed_4cb8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_b969 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-dark-56f0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.element_blue_5bce {
    margin-top: 2rem;
}

.modal_16a7 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.icon-41b8 {
    list-style: none;
    padding: 0;
}

.column-west-e120 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.column-west-e120 a {
    color: var(--accent-color);
    text-decoration: none;
}

.column-west-e120 a:hover {
    text-decoration: underline;
}

.grid-0f2c {
    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 */
.right_ed1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-stale-d821 {
    margin: 2rem 0;
}

.bronze_289d {
    margin-bottom: 3rem;
}

.bronze_289d .gallery-medium-35ff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nav_next_a0e1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.input_8eee {
    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);
}

.input_8eee:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.form-3651 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .form-3651 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion_b5c9 {
    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 */
.box_wood_ea2c {
    padding: var(--section-padding);
}

.media-liquid-de48 {
    margin: 2rem 0;
}

.filter_east_0127 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paragraph_d6fd {
    overflow-x: auto;
    margin: 2rem 0;
}

.blue-755e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.gas_a79f {
    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;
}

.lite-46cb {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.table-d9c7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .table-d9c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-a871 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-a871 .icon-tiny-8f58 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pro-a871 .hover_63f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent_short_24ad {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.text-mini-6ec6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_paper_bfc1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_paper_bfc1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_477f {
    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;
}

.texture_477f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.header_a575 {
    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);
}

.full_35a7 {
    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;
}

.pattern-hovered-ff41 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.info_e93f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.full_7d68 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.gradient-paper-02d4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.title-old-4f47 {
    color: var(--text-white);
    font-weight: 600;
}

.logo_first_8fd8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.medium_2b9e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.medium_2b9e .overlay-3156 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.description_dim_9336 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .description_dim_9336 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-2d59 {
    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);
}

.backdrop-2d59:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.backdrop-2d59 .north_2e16 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop-2d59 .modal-slow-42d7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.element_right_fc91 {
    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);
}

.preview-9664 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.preview-9664 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.orange_df5a {
    margin: 2rem 0;
}

.paragraph-dim-fea2 {
    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);
}

.paragraph-dim-fea2:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.description-6e6d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.iron-08ec {
    flex: 1;
}

.card-8bf5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice-pressed-3a90 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.carousel_light_d864 {
    margin: 2rem 0;
}

.container_332b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_332b .hover_63f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.container_332b .hard_0e73 {
    color: var(--text-gray);
    margin: 0;
}

.hero_c9f1 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.hero_c9f1 .focused_0268 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.accent_short_24ad {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.down-be3c {
    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;
}

.blue-e848 {
    flex: 1;
}

.component-1e9c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.static-a184 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.summary_inner_627b {
    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;
}

.icon-soft-4338 {
    flex: 1;
}

.primary-mini-c8c3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.text_f197 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.status_26d3 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.feature_5bb2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.block-cc14 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.block-cc14 .overlay-3156 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.simple_a400 {
    margin-top: 2rem;
}

.simple_a400 .summary_paper_23b6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.avatar-76e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-64aa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop-64aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-64aa .aside-center-e4e2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-fast-bafa {
    margin: 2rem 0;
}

.aside-66c2 {
    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 */
.active-fresh-128c {
    padding: var(--section-padding);
}

.alert-clean-d84e {
    margin-top: 1rem;
}

.pink-b91d {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pink-b91d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pink-b91d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.narrow-15f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_light_7012 {
    margin: 2rem 0;
}

.menu-west-d806 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.badge-f9cd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.photo_077a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.message-paper-7e5c {
    margin: 2rem 0;
}

.secondary_d3e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.secondary_d3e6 .gallery-medium-35ff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_ad88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .preview_ad88 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-350e {
    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);
}

.rough-0da4 {
    color: var(--text-white);
    font-weight: 600;
}

.layout-cdb1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.bronze-f4e3 {
    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);
}

.bronze-f4e3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.stale-13a9 {
    padding: var(--section-padding);
}

.notice_pressed_6cb1 {
    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;
}

.notice_pressed_6cb1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.progress-432f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-432f .block-dirty-7867 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-432f .basic-6470 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.preview-a596 {
    flex: 1;
}

.feature-pink-96aa {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.picture_db34 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture_db34 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.picture_db34 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.copper-ff73 {
    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);
}

.copper-ff73 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.copper-ff73 strong {
    color: var(--warning-color);
}

/* Slots Section */
.purple-e4f1 {
    padding: var(--section-padding);
}

.down_bef8 {
    margin: 2rem 0;
}

/* Table Games Section */
.red-b98f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-9d98 {
    margin: 2rem 0;
}

.modal_west_f53f {
    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);
}

.modal_west_f53f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.modal_west_f53f .prev-177c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_west_f53f .mini-895f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus-right-9992 {
    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);
}

.focus-right-9992 .focused_0268 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.under-ce2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-07d1 {
    margin: 2rem 0;
}

.wrapper-simple-83e1 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_27ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-4203 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.layout_pink_4b8e {
    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);
}

.layout_pink_4b8e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.layout_pink_4b8e.fn-active-a613 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-under-061c {
    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);
}

.summary_433d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary_433d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.footer_copper_0b63 {
    padding: var(--section-padding);
}

.basic-396d {
    margin: 2rem 0;
}

.cool_69d6 {
    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);
}

.cool_69d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .cool_69d6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.icon-2f51 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tooltip_ae58 {
    flex: 1;
}

.sidebar_36fa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dropdown-left-c328 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.next-2e05 {
    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;
}

.wrapper_be8e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.summary-blue-0e6e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.advanced-451c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item_45e3 {
    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;
}

.item_45e3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article-1858 {
    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);
}

.block_purple_abff {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_purple_abff strong {
    color: var(--accent-color);
}

/* New Games Section */
.aside_afbf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth_8182 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .smooth_8182 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .smooth_8182 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_fe73 {
    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;
}

.thick_fe73:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-3a05 {
    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;
}

.hard_3ac6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.focus_ac20 {
    font-size: 2rem;
}

.container_78d7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.new_b1dc {
    flex: 1;
}

.background-focused-7489 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.box_bb71 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.paragraph_fixed_f307 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.text_bottom_50ae {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-90a0 {
    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;
}

.hero_b247 {
    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;
}

.hero_b247:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.silver-dc35 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-orange-10c3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.selected-ae0b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .selected-ae0b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-1c46 {
    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);
}

.out_c22c {
    color: var(--text-white);
    font-weight: 600;
}

.banner-7332 {
    color: var(--accent-color);
    font-weight: 600;
}

.filter-gold-5140 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.filter-gold-5140 strong {
    color: var(--accent-color);
}

/* Security Section */
.pattern-5e2e {
    padding: var(--section-padding);
}

/* Benefits Section */
.soft_3d86 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.bronze-ecb5 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.media-bf15 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-tiny-683a {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.status_1a6b {
    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) {
    .status_1a6b {
        flex-direction: column;
        gap: 1rem;
    }
}

.status_1a6b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.status_1a6b .summary_inner_627b {
    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;
}

.status_1a6b .icon-soft-4338 {
    flex: 1;
}

.status_1a6b .primary-mini-c8c3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.status_1a6b .text_f197 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.filter-88f6 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-88f6 .background-right-a2bc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-88f6 .pagination-b2f9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-88f6 .pagination-b2f9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.filter-88f6 .pagination-b2f9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.selected-6f17 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.light-378d {
    padding: var(--section-padding);
}

.warm_b6cf {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .warm_b6cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_33ff {
    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);
}

.tooltip_33ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tooltip_33ff .outline_93f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_33ff .fast_9f35 {
    flex: 1;
}

.tooltip_33ff .aside_e798 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_33ff .layout-first-18bd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.bronze_fedf {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_fedf .modal_f468 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bronze_fedf .container_1d5b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.bronze_fedf .container_1d5b 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);
}

.bronze_fedf .container_1d5b li:last-child {
    border-bottom: none;
}

.bronze_fedf .container_1d5b 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;
}

.bronze_fedf .container_1d5b li strong {
    color: var(--text-white);
}

.main-out-ba27 {
    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);
}

.main-out-ba27 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main-out-ba27 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.status_1df1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-bc98 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .frame-bc98 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fast_58e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fast_58e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.easy_0a66 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper-6712 {
    font-size: 2rem;
}

.list-645b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.icon-aaf0 {
    flex: 1;
}

.heading-smooth-0545 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-smooth-0545 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.heading-smooth-0545 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.texture-5858 {
    margin-top: 3rem;
}

.gradient-prev-fa45 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.backdrop-blue-b9d8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop-lower-3360 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop-lower-3360 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.backdrop-lower-3360 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.backdrop-lower-3360 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.media_pressed_094b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-focused-1088 {
    margin: 2rem 0;
}

.surface_under_9830 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.surface_under_9830 .gallery-medium-35ff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo_pink_f945 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo_pink_f945 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-down-59c3 {
    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);
}

.focus-down-59c3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.gallery_mini_9d3d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.component-2a2b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.row_17e7 {
    padding: var(--section-padding);
}

.thumbnail-1eb6 {
    margin: 2rem 0;
}

.last-3e03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .last-3e03 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last-3e03 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_narrow_34fc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag_narrow_34fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.status-eb6f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status_9900 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.down-798e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.down-798e.header_a6a1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.advanced-e6b2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.carousel-f554 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.detail_1ef4 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button-4511 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.box-middle-2efe {
    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);
}

.box-middle-2efe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box-middle-2efe strong {
    color: var(--accent-color);
}

/* Update Log Section */
.feature_f2e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block-ef89 {
    margin: 2rem 0;
}

.grid-gas-4ca8 {
    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) {
    .grid-gas-4ca8 {
        flex-direction: column;
        gap: 1rem;
    }
}

.grid-gas-4ca8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid-gas-4ca8::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);
}

.filter-wood-b984 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.south_e98b {
    flex: 1;
}

.component_light_0cc7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image-9030 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-9030 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.item_c6bb {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-dim-1a65 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wood_4436 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wood_4436 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-focused-2d7b {
    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);
}

.middle_c54a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.avatar_e37e {
    flex: 1;
}

.backdrop_out_597a {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tertiary-ad84 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tall_0a2c {
    margin-top: 2rem;
    text-align: center;
}

.detail-light-6dda {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-light-6dda strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.form_bronze_dd34 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_bronze_dd34 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_6c7e {
    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);
}

.link_6c7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link_6c7e .notice-123f {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_6c7e .secondary-f687 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.link_6c7e .progress-50fe {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.link_6c7e .background_orange_d77d {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.wood_f15e {
    padding: var(--section-padding);
}

.tabs-9083 .content-8af8 {
    flex: 1;
}

/* Promo Calendar Section */
.white-25db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean_b40a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .clean_b40a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-tiny-bc9f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_7800 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.input_new_6631 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hovered_1709 {
    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);
}

.texture-cc17 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.light-f5e7 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tabs-2fb2 {
    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);
}

.tabs-2fb2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-2fb2 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.avatar_87f5 {
    padding: var(--section-padding);
}

.hero_action_8269 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero_action_8269 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel_6525 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-6ff3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-slow-89c9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-slow-89c9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_288f {
    margin-top: 3rem;
}

.logo_288f .gradient-prev-fa45 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.logo_288f .backdrop-blue-b9d8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo_288f .backdrop-lower-3360 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.logo_288f .backdrop-lower-3360 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.logo_288f .backdrop-lower-3360 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.logo_288f .backdrop-lower-3360 li strong {
    color: var(--warning-color);
}

.out-06cf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.out-06cf strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.lower_235b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_0938 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_0938 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-ca26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow-ca26 .gallery-medium-35ff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.grid-9f89 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.motion_b6a7 {
    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);
}

.motion_b6a7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.lower-4806 {
    font-size: 2rem;
    flex-shrink: 0;
}

.small-53d2 {
    flex: 1;
}

.selected-bfd0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.pagination-fee7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.secondary_77c2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.frame-5c37 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper-soft-ad48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .wrapper-soft-ad48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-f78c {
    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);
}

.icon-f78c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.down_60f8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface_liquid_4e86 {
    color: var(--text-gray);
    font-size: 1rem;
}

.alert-e6e7 {
    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);
}

.gallery-522a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gallery-522a strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.tabs-9890 { 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; }
.list-cold-e41d, .grid_7bca { max-width:100%; height:auto; }

.info-affa, .small-c0d0, .gas-476a { white-space:normal; }

.filter_in_3aa4,
.dirty_c8ca,
.pagination-dynamic-20b6,
.form_bronze_dd34,
.carousel_light_d864,
.gallery-49e5 {
  flex-wrap:wrap;
}

[class*="grid"],
.wrapper-soft-ad48,
.last-3e03,
.text-purple-d358 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.video-815a img,
.dirty_c8ca img,
.media_stale_e555 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.light_6aca, .article-green-b7b1,
.search-west-3ea8, .secondary-red-5dd9 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.box_copper_4918 { width:100%; overflow-x:auto; }
.box_copper_4918 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.white_a1f1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .white_a1f1 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.easy_0808 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.message_center_15c8,
.component-87a6,
.carousel_7a1f,
.message_89ec,
.next-5553,
.wrapper-soft-ad48,
.last-3e03,
.text-purple-d358,
.chip-inner-1123,
.basic-396d,
.white_a1f1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .message_center_15c8,
  .component-87a6,
  .carousel_7a1f,
  .message_89ec,
  .next-5553,
  .wrapper-soft-ad48,
  .last-3e03,
  .text-purple-d358,
  .chip-inner-1123,
  .basic-396d,
  .white_a1f1 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.bottom-d228,
.current_3589,
.icon-f78c,
.footer_copper_542e,
.tag_narrow_34fc,
.south_6344,
.cool_69d6,
.easy_0808 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.disabled-yellow-f34e,
.status_slow_46e1,
.soft_0737 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.disabled-yellow-f34e > *,
.status_slow_46e1 > *,
.soft_0737 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 745e */
.ghost-box-u8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
