/* {$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;
}

.shade_dim_4d8e {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.full_d8f1 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .full_d8f1 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .full_d8f1 {
        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 */
.gradient-fba0 {
    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);
}

.outline-30cc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .outline-30cc {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .header_green_572a {
        grid-column: 1;
    }
    
    .background-c049 {
        grid-column: 2;
    }
    
    .content_liquid_4192 {
        grid-column: 3;
    }
}

.header_green_572a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.header_green_572a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.copper_8d7f {
    display: none;
}

@media (min-width: 1024px) {
    .copper_8d7f {
        display: block;
    }
}

/* Grouped Navigation */
.carousel-right-60dc {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.layout_ffa1 {
    position: relative;
}

.popup-b182 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.layout_ffa1 .item-4ad8 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.item-4ad8 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.thumbnail-mini-60e8 {
    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;
}

.thumbnail-mini-60e8:hover,
.thumbnail-mini-60e8.fn-active-cbbc {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.component_b61c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .component_b61c {
        display: flex;
    }
}

/* Mobile Register Button */
.background-c049 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .background-c049 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.progress-down-0796 {
    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;
}

.progress-down-0796::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 */
.content_liquid_4192 {
    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) {
    .content_liquid_4192 {
        display: none;
    }
}

.content_liquid_4192 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.content_liquid_4192.fn-active-cbbc span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.content_liquid_4192.fn-active-cbbc span:nth-child(2) {
    opacity: 0;
}

.content_liquid_4192.fn-active-cbbc span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.status-focused-67e8 {
    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;
}

.status-focused-67e8.fn-active-cbbc {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.next-002a {
    overflow: hidden;
}

.heading_pink_be2d {
    list-style: none;
    padding: 0.75rem 0;
}

.sidebar_b951 {
    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;
}

.sidebar_b951:hover,
.sidebar_b951.fn-active-cbbc {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.sidebar_b951.title_d684 {
    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;
}

.sidebar_b951.title_d684::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 */
.brown-80f7 {
    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;
}

.sort-pink-ac38 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.sort-pink-ac38:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.gradient-advanced-92d7 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.gradient-advanced-92d7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.summary-2089 {
    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;
}

.summary-2089:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.container_static_36c6 {
    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;
}

.pagination-b24e {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pagination-b24e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.black_3929 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.black_3929:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.aside_8b98 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.aside_8b98: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);
}

.tabs_orange_202a {
    font-size: 1em;
    font-weight: 700;
}

.card_6477 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.list_cold_154b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.list_cold_154b::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;
}

.link_fast_dc59 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .link_fast_dc59 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.icon_877a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sidebar-c39b {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.breadcrumb_4c24 {
    margin-bottom: 2rem;
}

.paragraph_south_22f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .paragraph_south_22f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-advanced-0609 {
    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);
}

.tiny_6d17 {
    font-size: 1.5rem;
}

.photo_current_308d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wide-d12a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dirty_d52f {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.dirty_d52f:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.preview-advanced-6c2b {
    text-align: center;
    margin-bottom: 3rem;
}

.input_lite_0c97 {
    margin-bottom: 1rem;
}

.button-4267 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pattern-copper-dd6e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pattern-copper-dd6e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .pattern-copper-dd6e.chip-7c3e {
        direction: rtl;
    }
    
    .pattern-copper-dd6e.chip-7c3e > * {
        direction: ltr;
    }
}

.icon_0346 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.icon_0346:first-child {
    margin-top: 0;
}

.wide-b618 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.primary-96ab {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.primary-96ab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.avatar_9ced {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_9ced {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up-e795 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.overlay_over_3ffa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.article_84b6 {
    list-style: none;
}

.article_84b6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article_84b6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.hot-ef24 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.purple_b0be {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info_faed {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy_66ac {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.notification-out-b7be {
    margin: 2rem 0;
}

.filter-tiny-4bed {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.disabled_16f0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.secondary-0843 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.header-d8d0 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.liquid-986c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid-986c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-steel-fbcb {
    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);
}

.badge-steel-fbcb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden_slow_6227 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.nav_be2c {
    font-size: 1.5rem;
}

.table-top-5ecd {
    color: var(--accent-color);
    margin: 0;
}

.article_fa89 {
    list-style: none;
}

.article_fa89 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.article_fa89 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.cold-62de {
    margin: 2rem 0;
}

.article-8e63 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.column_cold_99f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .column_cold_99f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_c205 {
    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);
}

.pro-965f {
    font-size: 1.25rem;
}

.copper-487e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.sidebar_active_1dce,
.bright-e855 {
    text-align: center;
    margin: 2rem 0;
}

.avatar-tiny-0344,
.outer-82d5 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.sort_steel_cde7 {
    margin: 2rem 0;
    text-align: center;
}

.outline-e5f6 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outline-e5f6::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;
}

.tag_advanced_1a10 {
    position: relative;
    z-index: 1;
}

.widget_basic_10a2 {
    margin-bottom: 1rem;
}

.pattern-6d8d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steel-9a09 {
    margin-bottom: 3rem;
}

.text-basic-f5cc {
    margin-top: 3rem;
}

.pagination_plasma_623c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pagination_plasma_623c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_plasma_623c .disabled-advanced-0609 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_b20c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.motion-f22f {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.paragraph_upper_3dc8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.clean-6612 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .clean-6612 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean-6612 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dark-56c2 {
    margin-bottom: 1rem;
}

.column_4aa9 img {
    margin-bottom: 1rem;
}

.highlight_befe {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean-c6b3 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.paper-2663 {
    list-style: none;
}

.paper-2663 li {
    margin-bottom: 0.5rem;
}

.paper-2663 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.paper-2663 a:hover {
    color: var(--accent-color);
}

.form_new_35f9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cold-fb9f {
    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);
}

.cold-fb9f:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.gradient-ef00 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.gradient-ef00 p {
    margin-bottom: 0.25rem;
}

.gallery-1249 {
    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) {
    .gallery-1249 {
        flex-direction: row;
    }
}

.gallery-orange-838c {
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-orange-838c {
        text-align: left;
    }
}

.gallery-orange-838c p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.liquid_41c4 {
    font-size: 0.75rem !important;
}

.sidebar_f0e6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb_action_bf2a {
    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);
    }
}

.table-b2d3 {
    animation: fadeInUp 0.6s ease-out;
}

.slider_0988 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.tiny-1497 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-1497 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.active_bright_9d21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_bright_9d21 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-stone-9ea3 {
    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);
}

.container-stone-9ea3 .info_faed {
    font-size: 1.25rem;
}

.container-stone-9ea3 .center-10f7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.search-d16d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .search-d16d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left-640b {
    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);
}

.left-640b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-4744 {
    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);
}

.notification_prev_e02c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tall_d2b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-f4e2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-b965 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus-b965 .easy_66ac {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus-b965 .chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_complex_6442 {
    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);
}

.component_large_2c74 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.component_large_2c74 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.component_large_2c74 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.last-ab3b {
    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);
}

.pattern-4265 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bright-0470 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bright-0470 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bright-0470 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);
}

.bright-0470 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.bright-0470 input::placeholder {
    color: var(--text-muted);
}

.inner_2ae8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-upper-0e78 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.banner-upper-0e78 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.picture-594b {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.picture-594b:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.column_cold_99f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_cold_99f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_c205 {
    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);
}

.center_c205 .pro-965f {
    font-size: 1.25rem;
}

.center_c205 .copper-487e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.sidebar-purple-576a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_3c98 {
    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);
}

.cool_3c98 .info_faed {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool_3c98 .easy_66ac {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_3c98 .chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone_1f89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_huge_4047 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_huge_4047 .photo-2689 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form_huge_4047 .white-3218 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_over_eef1 {
    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);
}

.under_ab62 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .under_ab62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-mini-4f1d {
    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);
}

.status-mini-4f1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module-837f {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.description_7af6 {
    flex: 1;
}

.summary_action_e4bb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.video-west-ee9c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wood-2f82 {
    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);
}

.wood-2f82:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.heading_5949 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_5949 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_fb2c {
    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);
}

.tertiary_fb2c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower_f9f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_bronze_5709 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active-edac {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accent_795e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.iron-9e69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_74e8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-ed4a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-ed4a .link_mini_f47e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-ed4a .lite_8d21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-static-39a5 {
    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);
}

.static-154e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_2d98 {
    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);
}

.status_2d98 .info_faed {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_2d98 .easy_66ac {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_2d98 .chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_d450 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_d450 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static_cefd {
    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);
}

.static_cefd:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.wide_8ca1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide_8ca1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-advanced-efba {
    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);
}

.tertiary-advanced-efba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_tiny_1a12 {
    font-size: 2rem;
    flex-shrink: 0;
}

.full_c96b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.disabled_16f0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.progress_a87c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.accordion_right_7da3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-d8d5 {
    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);
}

.message-d8d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-1976 {
    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);
}

.paper-c4b5 {
    flex: 1;
}

.cool-7be6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-pro-2e40 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.description-81e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-7b49 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-warm-87bf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-warm-87bf .photo-2689 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient-warm-87bf .white-3218 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-e855 {
    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);
}

.glass_aac8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_aac8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.widget-cold-279d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-cold-279d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide-e260 {
    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);
}

.wide-e260:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-d575 {
    font-size: 2rem;
    flex-shrink: 0;
}

.static_c5c1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.alert_outer_c26a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.left_cc63 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.title-easy-c8d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_f492 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption-7018 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface_active_303f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_lower_2861 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static-154e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_2d98 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status_2d98 .easy_66ac {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status_2d98 .chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.description-6035 {
    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);
}

.outline-cold-b74f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline-cold-b74f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline-cold-b74f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide-ba7e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wide-ba7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-liquid-e993 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_d35b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.blue-3a3a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tertiary_green_713a {
    padding: 1.5rem;
}

.plasma-cab6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.brown-930b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brown-930b 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;
}

.brown-930b li:last-child {
    border-bottom: none;
}

.brown-930b li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.search-lower-3166 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-lower-3166 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_5d88 {
    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);
}

.article_5d88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-action-f9d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-tiny-1cfe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.easy-d0db {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.first-f0e3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.cool-e70b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_glass_c0ed {
    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);
}

.media_7b36 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-e77b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_down_e526 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-white-ccfe {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.info_afb2 {
    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);
}

.current-4d27 {
    text-align: center;
}

.border-e5a0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_last_a9f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature_gold_4db0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold-9f91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-9f91 .easy_66ac {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold-9f91 .chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.in_7ac8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .in_7ac8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in_7ac8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_rough_7a07 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.filter_rough_7a07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-9865 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.box_a80b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.easy_66ac {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.aside_red_fdf9 {
    padding: 1.5rem;
}

.chip-old-ce1e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget_c826 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_c826 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;
}

.widget_c826 li:last-child {
    border-bottom: none;
}

.widget_c826 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.caption-rough-d6be {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.list-38e8 {
    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);
}

.list-38e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow_a108 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-basic-4274 {
    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);
}

.modal-4744 {
    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;
}

.notification_prev_e02c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_d2b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button_next_39c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-south-66b7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.link-fa93 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.basic_3d4b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.label_c62b {
    display: flex;
    gap: 1rem;
}

.label_c62b .soft-f694 {
    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;
}

.message-full-27c9 {
    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);
}

.liquid-0cca {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.logo-prev-eb9f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-prev-eb9f 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;
}

.logo-prev-eb9f li:last-child {
    border-bottom: none;
}

.logo-prev-eb9f li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.avatar_upper_879b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar_upper_879b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar_upper_879b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-bright-3629 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.aside-bright-3629:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_997e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.badge-fd42 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.link_mini_f47e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.slider_simple_ae00 {
    font-size: 1rem;
}

.chip-north-ffe9 {
    padding: 1.5rem;
}

.lite_8d21 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.element-pink-c706 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.element-pink-c706 .current-4d27 {
    text-align: center;
}

.element-pink-c706 .box_last_a9f8 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.element-pink-c706 .input_9307 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.static-ad41 {
    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);
}

.static-ad41:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.pink-d0fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-d0fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_rough_28ac {
    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);
}

.block_rough_28ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag_short_f412 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_1bb5 {
    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);
}

.nav_in_c39f {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-b178 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide_8ff9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft_6650 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus_motion_883c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-prev-5ffa {
    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);
}

.old-3ad2 {
    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;
}

.old-3ad2.hot_4b00 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.old-3ad2.label_7c48 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.old-3ad2.last_f5d5 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.old-3ad2.gas-a655 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.old-3ad2.action_041d {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.detail-1a43 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.white-97d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-a37a {
    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);
}

.active-9ba4 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.stone_1f89 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_1f89 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;
}

.stone_1f89 li:last-child {
    border-bottom: none;
}

.stone_1f89 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.plasma-200c {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .plasma-200c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma-200c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-orange-46f6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-orange-46f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-orange-46f6.sidebar-56ef {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .gradient-orange-46f6.sidebar-56ef {
        grid-column: span 3;
    }
}

.under_dd03 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.gradient-orange-46f6.sidebar-56ef .under_dd03 {
    background: rgba(6, 182, 212, 0.1);
}

.badge-122f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.steel_51c9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.gradient-orange-46f6.sidebar-56ef .steel_51c9 {
    color: var(--info-color);
}

.red-05ee {
    padding: 1.5rem;
    text-align: center;
}

.filter_0e3a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gradient-orange-46f6.sidebar-56ef .filter_0e3a {
    color: var(--info-color);
}

.detail_motion_3e0a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hard_460c {
    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 */
.summary_mini_4a12 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_mini_4a12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-eeda {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph-eeda:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full_4ded {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_3c98 {
    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);
}

.pro-965f {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_85a6 {
    flex: 1;
}

.article-8e63 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-new-335e {
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced-a5f0 {
    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);
}

.pattern-basic-12cf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-black-45a2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb_action_bf2a {
    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);
}

.title-11c4 {
  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);
}

.title-11c4 .current-4d27 {
    text-align: center;
}

.title-11c4 .border-e5a0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.title-11c4 .box_last_a9f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.title-4143 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header_fast_5a5c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-middle-0720 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.up_df9a {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_7c5f {
    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);
}

.static_37c1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_aa75 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_4f23 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow_4f23 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_4f23 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-center-b820 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shade-center-b820:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_easy_1dfd {
    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);
}

.search-basic-ddc2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.video_current_47c0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.slider-new-4240 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-new-4240.notification-pro-5bd4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.slider-new-4240.last-e35d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.slider-new-4240.table-action-1784 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.thumbnail_iron_05bc {
    padding: 1.5rem;
    text-align: center;
}

.gallery_8f90 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gold_304c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gold_304c .tertiary_dd1f {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.action_45b7 {
    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);
}

.action_45b7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.item-08e6 {
  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);
}

.module-3b6b {
    text-align: center;
}

.module-3b6b .border-e5a0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.module-3b6b .box_last_a9f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.center-9af2 { text-align: center; }
.border_8ff0 { text-align: left; }
.hard_663d { text-align: right; }

.header_71a7 { margin-bottom: 0; }
.tooltip-steel-b6d9 { margin-bottom: 0.5rem; }
.next_e78d { margin-bottom: 1rem; }
.pattern-0120 { margin-bottom: 1.5rem; }
.chip-341e { margin-bottom: 2rem; }

.media-7a6a { margin-top: 0; }
.advanced_75f5 { margin-top: 0.5rem; }
.thick-0e2d { margin-top: 1rem; }
.bottom-eda1 { margin-top: 1.5rem; }
.column-next-b085 { margin-top: 2rem; }

.fn-hidden-cbbc { display: none; }
.fn-visible-cbbc { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .list_cold_154b {
        padding: 6rem 0 3rem;
    }
    
    .link_fast_dc59 {
        text-align: center;
    }
    
    .pattern-copper-dd6e {
        text-align: center;
    }
    
    .paragraph_south_22f0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .gradient-fba0,
    .status-focused-67e8,
    .outline-e5f6,
    .paragraph_upper_3dc8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .list_cold_154b {
        background: none;
    }
}

/* Providers Section */
.thumbnail_huge_532e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_68fb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_68fb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_68fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge-5c07 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.huge-5c07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input-6e0d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pattern_hard_8c44 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.south-018e {
    list-style: none;
    padding: 0;
}

.south-018e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.south-018e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.up-c401 {
    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);
}

.up-c401 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.green-d98b {
    padding: var(--section-padding);
}

.column_hard_c322 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_hard_c322 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-cd3d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail-cd3d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.link-a12d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hero_motion_cbc4 {
    display: flex;
    flex-direction: column;
}

.shadow-e226 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.north-7726 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.disabled-left-5870 {
    color: var(--accent-color);
}

.container-last-6681 {
    font-size: 1.25rem;
}

.avatar_fresh_36a1 {
    margin-bottom: 1rem;
}

.avatar_fresh_36a1 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.surface-d9a4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.main-paper-2890 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.current-4d27 {
    text-align: center;
}

.border-e5a0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_last_a9f8 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.notification-cold-38d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark_fd49 {
    margin: 2rem 0;
}

.next-1426 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.next-1426 .info_faed {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-hot-f77c {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mask_9f62 {
    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;
}

.mask_9f62:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top-6739 {
    font-size: 2rem;
}

.border-inner-30e6 {
    display: flex;
    flex-direction: column;
}

.solid_a908 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dirty-c2d9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.component_selected_d262 {
    padding: var(--section-padding);
}

.east-18e4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .east-18e4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east-18e4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-c576 {
    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);
}

.right-c576:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.right-c576 .border-e5a0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.right-c576 .box_last_a9f8 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.right-c576 .media-clean-c752 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.card_new_5620 {
    margin-top: 4rem;
}

.gas-c10f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.header_9aaa {
    overflow-x: auto;
}

.header-focused-964c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.header-focused-964c thead {
    background: var(--accent-color);
}

.header-focused-964c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.header-focused-964c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.header-focused-964c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.header-focused-964c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.new-bdb8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip-7e00 {
    max-width: 900px;
    margin: 0 auto;
}

.next_e066 {
    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);
}

.next_e066:hover {
    border-color: var(--accent-color);
}

.fixed_b3fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.fixed_b3fa h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.content_5dbb {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.next_e066.fn-active-cbbc .content_5dbb {
    transform: rotate(45deg);
}

.pressed-e208 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.next_e066.fn-active-cbbc .pressed-e208 {
    max-height: 1000px;
}

.pressed-e208 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.label-plasma-0279 {
    padding: var(--section-padding);
}

.component_large_2c74 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.thumbnail_4a54 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-ef06 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small-ef06 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table-next-8806 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west-7630 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.selected-d9aa {
    font-size: 2rem;
}

.wood_fb15 {
    color: var(--text-white);
    margin: 0;
}

.container-wide-330e {
    list-style: none;
    padding: 0;
}

.container-wide-330e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-wide-330e li:last-child {
    border-bottom: none;
}

.thick-de1e {
    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);
}

.thick-de1e p {
    color: var(--success-color);
    margin: 0;
}

.tag-mini-5dee {
    margin-top: 3rem;
}

.liquid-0cca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.wood-fc9a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wood-fc9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-white-53be {
    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);
}

.old_dd60 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.main-white-53be p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.hidden_b0d2 {
    padding: var(--section-padding);
}

.surface-1a79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-1a79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_prev_5962 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover_prev_5962:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.focus_f56b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-plasma-718e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.grid-selected-2769 {
    flex: 1;
}

.thumbnail_b89a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.breadcrumb_0819 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.message-2e83 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-bronze-8984 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary-bronze-8984:last-child {
    border-bottom: none;
}

/* Comparison Section */
.breadcrumb-center-7321 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.wrapper_new_459a {
    padding: var(--section-padding);
}

.middle_8c68 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hover_4bdd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_4bdd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_brown_a17b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_5dee, .focus-stale-cf99, .summary_hard_6d7f {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.summary_hard_6d7f {
    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 */
.inner-99ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out-7278 {
    margin: 2rem 0;
}

.slow-af38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_6197 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dim_b004 {
    list-style: none;
    padding: 0;
}

.dim_b004 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;
}

.dim_b004 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.dim_b004 li:last-child {
    border-bottom: none;
}

.module-complex-da25 {
    text-align: center;
    margin-top: 2rem;
}

.logo-6783 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.picture-3f85 {
    padding: var(--section-padding);
}

.dim_b470 {
    margin: 2rem 0;
}

.simple_e666 {
    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) {
    .simple_e666 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.simple_e666:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_active_25ac {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.dropdown_a025 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.border-smooth-ee7c {
    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;
}

.action-57f5 {
    flex: 1;
}

.heading-light-bcf5 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.thumbnail_easy_2ca4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.summary-7a28 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.article_small_c1f8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .article_small_c1f8 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.element-next-7336 {
    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);
}

.element-next-7336:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-next-7336 .border-e5a0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-next-7336 .box_last_a9f8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.active_7877 {
    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);
}

.panel-huge-7ffd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.panel-huge-7ffd strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.pressed-6ff4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .pressed-6ff4 {
        grid-template-columns: 1fr 1fr;
    }
}

.paper-1c13 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_clean_922f {
    margin-bottom: 1.5rem;
}

.table_clean_922f label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.table_clean_922f input,
.table_clean_922f 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;
}

.table_clean_922f input:focus,
.table_clean_922f select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.frame_b13d {
    width: 100%;
    margin-top: 1rem;
}

.dynamic-3752 {
    display: flex;
    align-items: center;
}

.tiny-10d6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.form_dd35 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.status_over_6542 {
    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;
}

.picture-c83e {
    color: var(--text-gray);
}

.sidebar-north-f7c0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.progress-small-2f08 {
    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);
}

.progress-small-2f08 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.backdrop-wide-592e {
    margin-top: 3rem;
}

.east-7a5c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.lite_3e2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_e3cf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gas_083e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas_083e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.column-bright-932b {
    padding: var(--section-padding);
}

.easy-1d09 {
    margin: 2rem 0;
}

.heading_full_e6d4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.small_74f4 {
    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;
}

.small_74f4:hover, .small_74f4.fn-active-cbbc {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.west-0085 {
    display: none;
}

.west-0085.fn-active-cbbc {
    display: block;
}

.border-gas-e9a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_e14a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.popup-1d98 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.popup-1d98 ul {
    list-style: none;
    padding: 0;
}

.popup-1d98 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.popup-1d98 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.text-plasma-081f {
    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 */
.hot-0128 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_e87f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm-d148 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon_upper_4913 {
    color: var(--accent-color);
    margin: 0;
}

.background-dynamic-73db {
    display: flex;
    gap: 1.5rem;
}

.small-65e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.carousel_39bf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.gallery-hovered-219d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.gallery-hovered-219d.highlight_825c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.gallery-hovered-219d.text-fc08 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.gallery-hovered-219d.summary-purple-87c7 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.input-glass-2b72 {
    margin-top: 2rem;
}

.old-6e77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.progress-lower-06ff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .progress-lower-06ff {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-3670 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.list-e5d3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dropdown_e94e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.image-in-88f9 {
    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 */
.picture-liquid-a2c6 {
    padding: var(--section-padding);
}

.action-3015 {
    margin: 2rem 0;
}

.paper-3da1 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.plasma_34ae {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.paper-d655 {
    list-style: none;
    padding: 0;
}

.paper-d655 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;
}

.paper-d655 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.paper-d655 li:last-child {
    border-bottom: none;
}

.widget_complex_c435 {
    margin: 2rem 0;
}

.dark_67b9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.grid_dark_c389 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_dark_c389 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_slow_83b6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-40da {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture_2bbe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hard-9640 {
    margin-top: 2rem;
}

.summary_action_e4bb {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.table-cc67 {
    list-style: none;
    padding: 0;
}

.tabs_577c {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tabs_577c a {
    color: var(--accent-color);
    text-decoration: none;
}

.tabs_577c a:hover {
    text-decoration: underline;
}

.fresh_5d30 {
    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 */
.component-abb9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_cold_cbb2 {
    margin: 2rem 0;
}

.light-3800 {
    margin-bottom: 3rem;
}

.light-3800 .out_6197 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.steel_cfd8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.summary_e014 {
    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);
}

.summary_e014:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.card-fresh-9453 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .card-fresh-9453 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-white-734d {
    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 */
.widget_fresh_c616 {
    padding: var(--section-padding);
}

.tabs_d8d7 {
    margin: 2rem 0;
}

.disabled_0572 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.overlay_old_c463 {
    overflow-x: auto;
    margin: 2rem 0;
}

.active-6790 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.description-pro-7aaa {
    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;
}

.heading_3872 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.content_5504 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .content_5504 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-pink-40fd {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-pink-40fd .info_faed {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.box-pink-40fd .easy_66ac {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface_b2f3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.preview-thick-cb3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-a41d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-a41d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_379c {
    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;
}

.avatar_379c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dropdown-8a23 {
    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);
}

.video_665b {
    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;
}

.up-ef42 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.menu-3f49 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.form_3816 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.copper_c5a1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_645d {
    color: var(--text-white);
    font-weight: 600;
}

.smooth_be27 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.silver-f734 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.silver-f734 .soft-f694 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.image-71e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image-71e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-a856 {
    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);
}

.notification-a856:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification-a856 .border-e5a0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-a856 .box_last_a9f8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.button-8b2b {
    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);
}

.footer_2481 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.footer_2481 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.title-easy-c8d0 {
    margin: 2rem 0;
}

.aside_f492 {
    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);
}

.aside_f492:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.caption-7018 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wide_cc88 {
    flex: 1;
}

.surface_active_303f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_lower_2861 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.static-154e {
    margin: 2rem 0;
}

.status_2d98 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_2d98 .easy_66ac {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.status_2d98 .chip-old-ce1e {
    color: var(--text-gray);
    margin: 0;
}

.description-6035 {
    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);
}

.description-6035 .avatar-tiny-0344 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.surface_b2f3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.cool-1976 {
    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;
}

.paper-c4b5 {
    flex: 1;
}

.feature-pro-2e40 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.description-81e0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.modal-4744 {
    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;
}

.notification_f9f6 {
    flex: 1;
}

.notification_prev_e02c {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.tall_d2b9 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.link-fa93 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.basic_3d4b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.label_c62b {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.label_c62b .soft-f694 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message-full-27c9 {
    margin-top: 2rem;
}

.message-full-27c9 .liquid-0cca {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.new_4dbf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_afb2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .info_afb2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_afb2 .current-4d27 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_gold_4db0 {
    margin: 2rem 0;
}

.cold-9f91 {
    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 */
.new-948e {
    padding: var(--section-padding);
}

.aside_red_fdf9 {
    margin-top: 1rem;
}

.widget_c826 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.widget_c826 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.widget_c826 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.module_orange_c114 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper-05e5 {
    margin: 2rem 0;
}

.stone-0c8f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.form_light_1aa3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.surface_glass_965c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.block_slow_00cd {
    margin: 2rem 0;
}

.blue-64a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.blue-64a9 .out_6197 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.element-stale-4490 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .element-stale-4490 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-cac6 {
    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);
}

.filter-hard-3596 {
    color: var(--text-white);
    font-weight: 600;
}

.warm_1014 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.card-5067 {
    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);
}

.card-5067 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.footer_c9f2 {
    padding: var(--section-padding);
}

.module_8834 {
    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;
}

.module_8834:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.description_1ffb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_1ffb .old_dd60 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_1ffb .pattern-up-4f9c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.main_steel_0e8c {
    flex: 1;
}

.pro_5e73 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.center_822b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center_822b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.center_822b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tertiary-motion-0f63 {
    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);
}

.tertiary-motion-0f63 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tertiary-motion-0f63 strong {
    color: var(--warning-color);
}

/* Slots Section */
.notification_top_05f4 {
    padding: var(--section-padding);
}

.iron-9e69 {
    margin: 2rem 0;
}

/* Table Games Section */
.tertiary-d752 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_74e8 {
    margin: 2rem 0;
}

.wrapper-ed4a {
    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);
}

.wrapper-ed4a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper-ed4a .link_mini_f47e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-ed4a .lite_8d21 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.header-static-39a5 {
    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);
}

.header-static-39a5 .avatar-tiny-0344 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.top_3aa3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_out_45ab {
    margin: 2rem 0;
}

.list-a331 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over-da9b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice-hovered-c850 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.accordion_e17a {
    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);
}

.accordion_e17a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.accordion_e17a.fn-active-cbbc {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced_1b54 {
    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);
}

.black-4275 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black-4275 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.preview_c85c {
    padding: var(--section-padding);
}

.modal_pro_e6e1 {
    margin: 2rem 0;
}

.purple-1b97 {
    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);
}

.purple-1b97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .purple-1b97 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.notification_dfd7 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.hover-0073 {
    flex: 1;
}

.tooltip-787a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail_out_33c7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accent_095b {
    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;
}

.disabled_cold_ea4d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.main-mini-4a56 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blue_9caf {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.alert-huge-8ec3 {
    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;
}

.alert-huge-8ec3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.overlay-fluid-a1e9 {
    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);
}

.layout_paper_1127 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_paper_1127 strong {
    color: var(--accent-color);
}

/* New Games Section */
.table-5a98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full-617e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .full-617e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .full-617e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale-1c3a {
    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;
}

.stale-1c3a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.silver_c374 {
    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;
}

.title_984b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.table-b474 {
    font-size: 2rem;
}

.hero_south_4f10 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.basic-4f9e {
    flex: 1;
}

.list-0482 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.tiny_74d3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-over-7ad1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal-fresh-b71e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.outline-940e {
    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;
}

.iron-3293 {
    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;
}

.iron-3293:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.input-229b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-974d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-af26 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .disabled-af26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_cf0c {
    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);
}

.active_028f {
    color: var(--text-white);
    font-weight: 600;
}

.module-hard-b0ed {
    color: var(--accent-color);
    font-weight: 600;
}

.wood_1b7a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.wood_1b7a strong {
    color: var(--accent-color);
}

/* Security Section */
.top-f623 {
    padding: var(--section-padding);
}

/* Benefits Section */
.sort_191e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.tertiary-fixed-42cf {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.component-center-bae6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old_be8f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.title_current_99ff {
    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) {
    .title_current_99ff {
        flex-direction: column;
        gap: 1rem;
    }
}

.title_current_99ff:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.title_current_99ff .modal-4744 {
    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;
}

.title_current_99ff .notification_f9f6 {
    flex: 1;
}

.title_current_99ff .notification_prev_e02c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.title_current_99ff .tall_d2b9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.smooth-dcb3 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth-dcb3 .article-8e63 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth-dcb3 .sidebar-purple-576a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smooth-dcb3 .sidebar-purple-576a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.smooth-dcb3 .sidebar-purple-576a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.frame_1adf {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.chip_9699 {
    padding: var(--section-padding);
}

.surface-0bdc {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .surface-0bdc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_e6e4 {
    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);
}

.hero_e6e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.hero_e6e4 .box-pro-6c9e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_e6e4 .image-steel-5489 {
    flex: 1;
}

.hero_e6e4 .photo-2689 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero_e6e4 .fast-1503 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.header-pink-4c92 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-pink-4c92 .complex-0bb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.header-pink-4c92 .card-68e4 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.header-pink-4c92 .card-68e4 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);
}

.header-pink-4c92 .card-68e4 li:last-child {
    border-bottom: none;
}

.header-pink-4c92 .card-68e4 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;
}

.header-pink-4c92 .card-68e4 li strong {
    color: var(--text-white);
}

.highlight_rough_093d {
    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);
}

.highlight_rough_093d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight_rough_093d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.info-rough-ed3b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-yellow-84df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .caption-yellow-84df {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent-soft-4f38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent-soft-4f38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.popup-smooth-9f1e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-gold-aa41 {
    font-size: 2rem;
}

.list_4b2a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.modal-next-fe50 {
    flex: 1;
}

.item-700d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-700d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.item-700d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.element-slow-8f6e {
    margin-top: 3rem;
}

.paper-3da1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.plasma_34ae {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paper-d655 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper-d655 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.paper-d655 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.paper-d655 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.widget_133b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element-3538 {
    margin: 2rem 0;
}

.outer-86dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.outer-86dd .out_6197 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-a17a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .label-a17a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button_tiny_2690 {
    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);
}

.button_tiny_2690:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.thumbnail_14fe {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description-last-7289 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.hidden_lite_c0de {
    padding: var(--section-padding);
}

.wood-e6ec {
    margin: 2rem 0;
}

.dynamic-72ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .dynamic-72ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dynamic-72ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-baca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module-baca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accent_1dc2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.container_0de8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.tertiary_iron_a39b {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tertiary_iron_a39b.link-warm-0995 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gradient_6fa9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.info_short_0eb9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.text_paper_0b71 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media_ba8a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.text-0d09 {
    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);
}

.text-0d09 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.text-0d09 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.bronze_88df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar-lite-4617 {
    margin: 2rem 0;
}

.simple-ed49 {
    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) {
    .simple-ed49 {
        flex-direction: column;
        gap: 1rem;
    }
}

.simple-ed49:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.simple-ed49::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);
}

.tabs_eada {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.carousel_5797 {
    flex: 1;
}

.accent-75ca {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notification_09d1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_09d1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_fixed_f1f9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_2c45 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.steel-a5dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .steel-a5dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_pressed_117f {
    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);
}

.thumbnail-silver-ee9d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-e99e {
    flex: 1;
}

.medium-5cdc {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.yellow-3450 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.message-down-50d2 {
    margin-top: 2rem;
    text-align: center;
}

.photo_static_e680 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo_static_e680 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.pink-d0fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-d0fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_rough_28ac {
    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);
}

.block_rough_28ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block_rough_28ac .slider-action-f9d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_rough_28ac .overlay-tiny-1cfe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.block_rough_28ac .easy-d0db {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.block_rough_28ac .first-f0e3 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hovered_f1cb {
    padding: var(--section-padding);
}

.pagination_1bb5 .detail-fixed-191c {
    flex: 1;
}

/* Promo Calendar Section */
.column-c5d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next-9a6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next-9a6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic_71ed {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-2497 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline-a92b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status_2bac {
    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);
}

.sidebar_6b87 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shadow-e1e5 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.nav_9f6d {
    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);
}

.nav_9f6d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_9f6d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.primary_narrow_1b92 {
    padding: var(--section-padding);
}

.caption_5709 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .caption_5709 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.upper_fda8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_0aeb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-fc8c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-fc8c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.red_003a {
    margin-top: 3rem;
}

.red_003a .paper-3da1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.red_003a .plasma_34ae {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.red_003a .paper-d655 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.red_003a .paper-d655 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.red_003a .paper-d655 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.red_003a .paper-d655 li strong {
    color: var(--warning-color);
}

.logo_b48a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo_b48a strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.background_0d75 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_fluid_6837 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_fluid_6837 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty_be3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_be3c .out_6197 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.stone-9bb9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.picture_6ec7 {
    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);
}

.picture_6ec7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accent_0040 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_center_9371 {
    flex: 1;
}

.block-5d41 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.tooltip_c3e4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.column_608c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.main-last-ea90 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask-8a8a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .mask-8a8a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-a8eb {
    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);
}

.layout-a8eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.link_4934 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article_f520 {
    color: var(--text-gray);
    font-size: 1rem;
}

.panel-huge-7ffd {
    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);
}

.plasma_0240 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.plasma_0240 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.full_d8f1 { 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; }
.dirty_d52f, .primary-96ab { max-width:100%; height:auto; }

.brown-80f7, .summary-2089, .container_static_36c6 { white-space:normal; }

.link_fast_dc59,
.pattern-copper-dd6e,
.summary_mini_4a12,
.pink-d0fb,
.static-154e,
.shadow_4f23 {
  flex-wrap:wrap;
}

[class*="grid"],
.mask-8a8a,
.dynamic-72ce,
.pagination_plasma_623c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.list_cold_154b img,
.pattern-copper-dd6e img,
.wide-d12a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.icon_877a, .sidebar-c39b,
.input_lite_0c97, .button-4267 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.header_9aaa { width:100%; overflow-x:auto; }
.header_9aaa table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.form_68fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .form_68fb {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.huge-5c07 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.east-18e4,
.focus_2fd9,
.huge_cb78,
.tertiary_e1b5,
.article_small_c1f8,
.mask-8a8a,
.dynamic-72ce,
.pagination_plasma_623c,
.item-08e6,
.modal_pro_e6e1,
.form_68fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .east-18e4,
  .focus_2fd9,
  .huge_cb78,
  .tertiary_e1b5,
  .article_small_c1f8,
  .mask-8a8a,
  .dynamic-72ce,
  .pagination_plasma_623c,
  .item-08e6,
  .modal_pro_e6e1,
  .form_68fb {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.right-c576,
.element-next-7336,
.layout-a8eb,
.disabled-advanced-0609,
.module-baca,
.module-3b6b,
.purple-1b97,
.huge-5c07 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.module_9085,
.stale_ee17,
.pro-aeab {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.module_9085 > *,
.stale_ee17 > *,
.pro-aeab > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 82fa */
.phantom-card-k3 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
