/* {$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;
}

.card-5711 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hot_a581 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hot_a581 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hot_a581 {
        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 */
.action_bac4 {
    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);
}

.thumbnail-c406 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .thumbnail-c406 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .bottom_ef64 {
        grid-column: 1;
    }
    
    .tabs-10e9 {
        grid-column: 2;
    }
    
    .panel-paper-0b36 {
        grid-column: 3;
    }
}

.bottom_ef64 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.bottom_ef64:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tiny_8b94 {
    display: none;
}

@media (min-width: 1024px) {
    .tiny_8b94 {
        display: block;
    }
}

/* Grouped Navigation */
.focus_f897 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.overlay-fresh-7928 {
    position: relative;
}

.old_11c2 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.overlay-fresh-7928 .row-green-f73c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.row-green-f73c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.background_focused_fa47 {
    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;
}

.background_focused_fa47:hover,
.background_focused_fa47.fn-active-b5f6 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.heading-fluid-c3b6 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .heading-fluid-c3b6 {
        display: flex;
    }
}

/* Mobile Register Button */
.tabs-10e9 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .tabs-10e9 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.column-14d3 {
    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;
}

.column-14d3::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 */
.panel-paper-0b36 {
    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) {
    .panel-paper-0b36 {
        display: none;
    }
}

.panel-paper-0b36 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.panel-paper-0b36.fn-active-b5f6 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.panel-paper-0b36.fn-active-b5f6 span:nth-child(2) {
    opacity: 0;
}

.panel-paper-0b36.fn-active-b5f6 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.stale-6abc {
    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;
}

.stale-6abc.fn-active-b5f6 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.small-af10 {
    overflow: hidden;
}

.avatar_black_815e {
    list-style: none;
    padding: 0.75rem 0;
}

.advanced-b7b4 {
    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;
}

.advanced-b7b4:hover,
.advanced-b7b4.fn-active-b5f6 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.advanced-b7b4.video-pro-cbaa {
    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;
}

.advanced-b7b4.video-pro-cbaa::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 */
.hero_4faf {
    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;
}

.paragraph-up-ba19 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.paragraph-up-ba19:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.lite-f1bc {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.lite-f1bc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hovered-baab {
    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;
}

.hovered-baab:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.notification-91ee {
    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;
}

.silver_642c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.silver_642c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.highlight-5dc5 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.highlight-5dc5:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.menu-advanced-8243 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.menu-advanced-8243: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);
}

.fixed-e9a7 {
    font-size: 1em;
    font-weight: 700;
}

.paper-17d4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.avatar_64b4 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.avatar_64b4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.filter_d24a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .filter_d24a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.content-steel-34fa {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.overlay-610f {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.thumbnail_paper_6d69 {
    margin-bottom: 2rem;
}

.preview-af6a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .preview-af6a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_0649 {
    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);
}

.frame-673b {
    font-size: 1.5rem;
}

.smooth_08da {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.accordion_3bf6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-01e8 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.row-01e8:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.primary_0f3b {
    text-align: center;
    margin-bottom: 3rem;
}

.texture_silver_6bb0 {
    margin-bottom: 1rem;
}

.orange_9228 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.hard-ce79 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hard-ce79 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hard-ce79.shade-0399 {
        direction: rtl;
    }
    
    .hard-ce79.shade-0399 > * {
        direction: ltr;
    }
}

.mask-solid-7baa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.mask-solid-7baa:first-child {
    margin-top: 0;
}

.tooltip-5fc5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-04e4 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.feature-04e4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.frame_5710 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_5710 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass-f12a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary-narrow-46fa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.link-static-4ef1 {
    list-style: none;
}

.link-static-4ef1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-static-4ef1 li:last-child {
    border-bottom: none;
}

/* Games Features */
.content_5b77 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.silver-7a71 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.west_a2ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-418b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.photo-cold-dc26 {
    margin: 2rem 0;
}

.content-under-7eed {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.new-3e80 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.pagination_694f {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.table-slow-692e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.hard-1798 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-1798 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_static_f0d3 {
    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);
}

.list_static_f0d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight-bb16 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer_226d {
    font-size: 1.5rem;
}

.dim-6803 {
    color: var(--accent-color);
    margin: 0;
}

.notice-hard-df08 {
    list-style: none;
}

.notice-hard-df08 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.notice-hard-df08 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.photo_7ef0 {
    margin: 2rem 0;
}

.banner_first_bd2e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.top-4b6d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .top-4b6d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_gas_6fd8 {
    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);
}

.first-75e3 {
    font-size: 1.25rem;
}

.module-silver-bf35 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.cold_a161,
.clean-1e5f {
    text-align: center;
    margin: 2rem 0;
}

.title_ddc5,
.liquid-6019 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.secondary-f5fa {
    margin: 2rem 0;
    text-align: center;
}

.article-next-59f7 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-next-59f7::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;
}

.component_under_8f3a {
    position: relative;
    z-index: 1;
}

.primary_fast_6c33 {
    margin-bottom: 1rem;
}

.highlight-lite-746d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section_bottom_585a {
    margin-bottom: 3rem;
}

.item_short_ad46 {
    margin-top: 3rem;
}

.purple_fd4c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .purple_fd4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple_fd4c .slider_0649 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-9972 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.caption-under-1c0a {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.basic_4f1c {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.simple-3662 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .simple-3662 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-3662 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.caption_e670 {
    margin-bottom: 1rem;
}

.video_pink_8f54 img {
    margin-bottom: 1rem;
}

.pink_c9dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-51e0 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.video-7a94 {
    list-style: none;
}

.video-7a94 li {
    margin-bottom: 0.5rem;
}

.video-7a94 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.video-7a94 a:hover {
    color: var(--accent-color);
}

.item-small-6873 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hidden_6040 {
    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);
}

.hidden_6040:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.filter_7256 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.filter_7256 p {
    margin-bottom: 0.25rem;
}

.badge-5837 {
    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) {
    .badge-5837 {
        flex-direction: row;
    }
}

.summary_small_d8ee {
    text-align: center;
}

@media (min-width: 768px) {
    .summary_small_d8ee {
        text-align: left;
    }
}

.summary_small_d8ee p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.status_motion_8ace {
    font-size: 0.75rem !important;
}

.container-complex-7a7a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.image-e870 {
    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);
    }
}

.input_dae7 {
    animation: fadeInUp 0.6s ease-out;
}

.layout_9e61 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.lower-e613 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower-e613 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.block_d5eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_d5eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_f38a {
    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);
}

.widget_f38a .west_a2ef {
    font-size: 1.25rem;
}

.widget_f38a .wrapper_gas_c27d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary-e5cb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary-e5cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-advanced-7915 {
    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);
}

.hover-advanced-7915:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in_89cd {
    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);
}

.badge_paper_6a13 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dim_76f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_f069 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_1a1f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery_1a1f .container-418b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_1a1f .list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-132d {
    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);
}

.secondary-clean-280d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.secondary-clean-280d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.secondary-clean-280d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.highlight-liquid-d1af {
    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);
}

.short_ba45 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steel-aa56 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.steel-aa56 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.steel-aa56 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);
}

.steel-aa56 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.steel-aa56 input::placeholder {
    color: var(--text-muted);
}

.upper-20d4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.avatar_bb3a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.avatar_bb3a input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.form-eaaa {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.form-eaaa:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.top-4b6d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-4b6d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_gas_6fd8 {
    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);
}

.menu_gas_6fd8 .first-75e3 {
    font-size: 1.25rem;
}

.menu_gas_6fd8 .module-silver-bf35 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.last-7b9a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_stone_de43 {
    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);
}

.form_stone_de43 .west_a2ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_stone_de43 .container-418b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_stone_de43 .list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion_51b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_fd2d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled_fd2d .avatar_small_7001 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled_fd2d .yellow_1652 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_first_2a56 {
    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);
}

.aside_1850 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_1850 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-rough-c49f {
    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);
}

.shade-rough-c49f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-0643 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.liquid_c873 {
    flex: 1;
}

.carousel_center_16e7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hero_f0b5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero_72fb {
    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);
}

.hero_72fb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.modal-under-1441 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-under-1441 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-aceb {
    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);
}

.iron-aceb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info-df74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_soft_6ae8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.text_white_a9b0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.description_3184 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.logo-prev-65aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused-18c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_silver_e73f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info_silver_e73f .middle_04d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info_silver_e73f .outline-5cee {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_b0d3 {
    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);
}

.fixed-610c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_easy_90d7 {
    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);
}

.image_easy_90d7 .west_a2ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_easy_90d7 .container-418b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_easy_90d7 .list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-85b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center-85b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_warm_93c5 {
    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);
}

.photo_warm_93c5:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.nav-7b39 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-7b39 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-focused-2649 {
    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);
}

.section-focused-2649:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade_lower_ce15 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_new_095a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.new-3e80 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.table_4164 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.image-7f54 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-2d43 {
    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);
}

.logo-2d43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-medium-5b59 {
    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);
}

.text_lite_3257 {
    flex: 1;
}

.under-5a6e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.breadcrumb-pink-4d98 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.active-a496 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_9d9e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_498c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_498c .avatar_small_7001 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_498c .yellow_1652 {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean-1e5f {
    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);
}

.texture-bd2f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-bd2f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.feature_tiny_a41b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_tiny_a41b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_75c0 {
    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);
}

.shadow_75c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-2a3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_east_0e04 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-e5d3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.overlay-57d3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.upper-a79d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-old-e51d {
    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);
}

.tag-0863 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cold-b8d0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb-hard-e8e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-610c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_easy_90d7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.image_easy_90d7 .container-418b {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image_easy_90d7 .list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_stale_2521 {
    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);
}

.image_f771 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image_f771 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_f771 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_092f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card_092f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-9220 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs_59f2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.last-d3bb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.solid_2f80 {
    padding: 1.5rem;
}

.alert-e847 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.middle-a641 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.middle-a641 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;
}

.middle-a641 li:last-child {
    border-bottom: none;
}

.middle-a641 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.motion-f66b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-f66b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed-d42e {
    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);
}

.pressed-d42e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-over-1520 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-e3c8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bright-adb9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tag-bottom-a4f6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-south-7b1c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_pro_d56a {
    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);
}

.hot-238d {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_657c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini_6c44 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-c46f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop-up-633b {
    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);
}

.bottom-471b {
    text-align: center;
}

.texture_simple_dfe2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_down_c193 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fast-823c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer-dca3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-dca3 .container-418b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer-dca3 .list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_simple_4c80 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer_simple_4c80 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_simple_4c80 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-1b55 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool-1b55:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_60e7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.iron_4eea {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.container-418b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.image-fc9a {
    padding: 1.5rem;
}

.list-ed55 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.full_fbb8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full_fbb8 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;
}

.full_fbb8 li:last-child {
    border-bottom: none;
}

.full_fbb8 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.sort_511a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery_blue_540c {
    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);
}

.gallery_blue_540c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-38b5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-new-6c86 {
    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);
}

.in_89cd {
    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;
}

.badge_paper_6a13 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dim_76f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_narrow_171c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced-ee2c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.down_d99c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent-e044 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.notice_91c2 {
    display: flex;
    gap: 1rem;
}

.notice_91c2 .hot-27a1 {
    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;
}

.sidebar-selected-2bc9 {
    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);
}

.motion-4f41 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.primary_16be {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary_16be 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;
}

.primary_16be li:last-child {
    border-bottom: none;
}

.primary_16be li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.hero_action_1fd5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero_action_1fd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero_action_1fd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_1af5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.item_1af5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full-551f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-9203 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.middle_04d9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.light_4b57 {
    font-size: 1rem;
}

.wrapper_narrow_8f7d {
    padding: 1.5rem;
}

.outline-5cee {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.image_3a9a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.image_3a9a .bottom-471b {
    text-align: center;
}

.image_3a9a .info_down_c193 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.image_3a9a .footer_b8e5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hidden_2c37 {
    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);
}

.hidden_2c37:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.texture-short-04dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-short-04dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_hard_9b22 {
    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);
}

.carousel_hard_9b22:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form_steel_2392 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-2f3f {
    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);
}

.input_large_7b52 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-new-264c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid-03eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-689e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.lower_185e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-outer-67da {
    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);
}

.video_f9d9 {
    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;
}

.video_f9d9.steel_3779 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.video_f9d9.avatar_f1b0 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.video_f9d9.shade-32dd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.video_f9d9.layout_center_8f1a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.video_f9d9.thumbnail-3684 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.filter-855c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_west_52b1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_cf49 {
    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);
}

.east_3ba9 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.motion_51b8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion_51b8 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;
}

.motion_51b8 li:last-child {
    border-bottom: none;
}

.motion_51b8 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.focused-789f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focused-789f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focused-789f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_c14c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon_c14c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_c14c.image-d9d3 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .icon_c14c.image-d9d3 {
        grid-column: span 3;
    }
}

.badge_advanced_8160 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.icon_c14c.image-d9d3 .badge_advanced_8160 {
    background: rgba(6, 182, 212, 0.1);
}

.gallery_194c {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pattern-smooth-0f12 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.icon_c14c.image-d9d3 .pattern-smooth-0f12 {
    color: var(--info-color);
}

.wrapper-action-345c {
    padding: 1.5rem;
    text-align: center;
}

.sidebar_ed42 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.icon_c14c.image-d9d3 .sidebar_ed42 {
    color: var(--info-color);
}

.wide-9df9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.slow_105e {
    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 */
.purple-fa12 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple-fa12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-2d50 {
    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);
}

.progress-2d50:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_048f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_stone_de43 {
    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);
}

.first-75e3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-3364 {
    flex: 1;
}

.banner_first_bd2e {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-easy-9612 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-ae7a {
    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);
}

.breadcrumb_f4f9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gold-1afb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.image-e870 {
    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);
}

.pagination-5029 {
  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);
}

.pagination-5029 .bottom-471b {
    text-align: center;
}

.pagination-5029 .texture_simple_dfe2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.pagination-5029 .info_down_c193 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.frame_under_01f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-green-57d3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-hard-70ff {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_c193 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-877b {
    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);
}

.popup_steel_471d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_c694 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-dynamic-69b3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .container-dynamic-69b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container-dynamic-69b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_6582 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent_6582:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_smooth_3b4c {
    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-bf6e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hot_8f81 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.inner-e190 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inner-e190.small-e26f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.inner-e190.menu-blue-e9bd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.inner-e190.pattern-bright-40aa {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.prev_c3a1 {
    padding: 1.5rem;
    text-align: center;
}

.preview_inner_7f2d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient-130b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gradient-130b .form_35eb {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.logo-31be {
    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);
}

.logo-31be:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.highlight-2543 {
  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);
}

.badge_cef1 {
    text-align: center;
}

.badge_cef1 .texture_simple_dfe2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.badge_cef1 .info_down_c193 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.soft-f8fe { text-align: center; }
.hot-4f8a { text-align: left; }
.main-9f17 { text-align: right; }

.grid-middle-7e03 { margin-bottom: 0; }
.paragraph_43c2 { margin-bottom: 0.5rem; }
.preview-474c { margin-bottom: 1rem; }
.list_outer_d3ae { margin-bottom: 1.5rem; }
.active_7835 { margin-bottom: 2rem; }

.gallery_hot_5b88 { margin-top: 0; }
.focused_32b2 { margin-top: 0.5rem; }
.list_5da8 { margin-top: 1rem; }
.notification_6cfe { margin-top: 1.5rem; }
.tooltip_0e00 { margin-top: 2rem; }

.fn-hidden-b5f6 { display: none; }
.fn-visible-b5f6 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .avatar_64b4 {
        padding: 6rem 0 3rem;
    }
    
    .filter_d24a {
        text-align: center;
    }
    
    .hard-ce79 {
        text-align: center;
    }
    
    .preview-af6a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .action_bac4,
    .stale-6abc,
    .article-next-59f7,
    .basic_4f1c {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .avatar_64b4 {
        background: none;
    }
}

/* Providers Section */
.glass-4691 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-middle-81d1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-middle-81d1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-middle-81d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small-7a41 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.small-7a41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.column-3170 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shadow_purple_92bb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.layout-9201 {
    list-style: none;
    padding: 0;
}

.layout-9201 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.layout-9201 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.first-aa81 {
    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);
}

.first-aa81 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.panel_5d58 {
    padding: var(--section-padding);
}

.dropdown-thick-88a1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-thick-88a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_advanced_e9ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_advanced_e9ab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.footer-c5a6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.slow_ace7 {
    display: flex;
    flex-direction: column;
}

.thumbnail_glass_0d5b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.carousel_pink_5615 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tall-bfb9 {
    color: var(--accent-color);
}

.pagination-c78b {
    font-size: 1.25rem;
}

.detail_upper_6688 {
    margin-bottom: 1rem;
}

.detail_upper_6688 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.header-a09e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sort-left-b392 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.bottom-471b {
    text-align: center;
}

.texture_simple_dfe2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_down_c193 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.description-b4c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_3883 {
    margin: 2rem 0;
}

.info_0c70 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info_0c70 .west_a2ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas-2358 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.in_6f15 {
    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;
}

.in_6f15:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight_cd38 {
    font-size: 2rem;
}

.heading_9080 {
    display: flex;
    flex-direction: column;
}

.info_gold_9910 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.chip-0e28 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.mask_green_b2c8 {
    padding: var(--section-padding);
}

.hot-509b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hot-509b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hot-509b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-huge-8bad {
    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);
}

.aside-huge-8bad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside-huge-8bad .texture_simple_dfe2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.aside-huge-8bad .info_down_c193 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.aside-huge-8bad .north-591d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.pink_7dc8 {
    margin-top: 4rem;
}

.selected-d20e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.item-cold-47e5 {
    overflow-x: auto;
}

.secondary_c4a6 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.secondary_c4a6 thead {
    background: var(--accent-color);
}

.secondary_c4a6 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.secondary_c4a6 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_c4a6 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.secondary_c4a6 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.sidebar_284d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_orange_31f7 {
    max-width: 900px;
    margin: 0 auto;
}

.green-f6a3 {
    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);
}

.green-f6a3:hover {
    border-color: var(--accent-color);
}

.element-red-3148 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.element-red-3148 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.article_action_44fd {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.green-f6a3.fn-active-b5f6 .article_action_44fd {
    transform: rotate(45deg);
}

.module-cold-83f3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.green-f6a3.fn-active-b5f6 .module-cold-83f3 {
    max-height: 1000px;
}

.module-cold-83f3 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.stone-65a1 {
    padding: var(--section-padding);
}

.secondary-clean-280d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.north_f856 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red_cf93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_cf93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.east-7bdd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.medium-6aa2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.media-clean-a0e0 {
    font-size: 2rem;
}

.border-61e6 {
    color: var(--text-white);
    margin: 0;
}

.tabs-a787 {
    list-style: none;
    padding: 0;
}

.tabs-a787 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-a787 li:last-child {
    border-bottom: none;
}

.mini_1f07 {
    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);
}

.mini_1f07 p {
    color: var(--success-color);
    margin: 0;
}

.south-f2f9 {
    margin-top: 3rem;
}

.motion-4f41 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.inner-8e79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .inner-8e79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description_paper_70e9 {
    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);
}

.top-a642 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.description_paper_70e9 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.full-fcdc {
    padding: var(--section-padding);
}

.preview-full-566d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-full-566d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool_604b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cool_604b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video_slow_48cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.white_77b4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pagination-warm-07bf {
    flex: 1;
}

.purple-33a7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.content-slow-8c97 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.table-d591 {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav-easy-5b24 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-easy-5b24:last-child {
    border-bottom: none;
}

/* Comparison Section */
.fresh_5757 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.narrow_42ec {
    padding: var(--section-padding);
}

.photo-6818 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.progress-narrow-ddd9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-narrow-ddd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_e2b2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_dirty_4b92, .list-prev-e34b, .texture_cold_ed64 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.texture_cold_ed64 {
    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 */
.sort-up-f1ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-south-84d1 {
    margin: 2rem 0;
}

.label-fluid-e82a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.prev_fc29 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.top_69a7 {
    list-style: none;
    padding: 0;
}

.top_69a7 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;
}

.top_69a7 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.top_69a7 li:last-child {
    border-bottom: none;
}

.article-paper-666c {
    text-align: center;
    margin-top: 2rem;
}

.layout-61b9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.description-7083 {
    padding: var(--section-padding);
}

.west_48bc {
    margin: 2rem 0;
}

.first_7089 {
    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) {
    .first_7089 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.first_7089:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.table_focused_5be0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.tabs-last-ddf0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.in-5223 {
    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;
}

.bronze-67fd {
    flex: 1;
}

.wood-86e7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.banner-static-fd44 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.south_5f14 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.accordion-612c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .accordion-612c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.modal_full_5c0a {
    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);
}

.modal_full_5c0a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal_full_5c0a .texture_simple_dfe2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal_full_5c0a .info_down_c193 {
    color: var(--text-gray);
    font-size: 1rem;
}

.mask_55bb {
    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);
}

.form-inner-ef89 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.form-inner-ef89 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.stone-9234 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .stone-9234 {
        grid-template-columns: 1fr 1fr;
    }
}

.row_84a6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright_34f1 {
    margin-bottom: 1.5rem;
}

.bright_34f1 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bright_34f1 input,
.bright_34f1 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;
}

.bright_34f1 input:focus,
.bright_34f1 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.panel-complex-f2e2 {
    width: 100%;
    margin-top: 1rem;
}

.component_west_cd19 {
    display: flex;
    align-items: center;
}

.hidden-4fee {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.pro-8e1b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.first-f918 {
    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;
}

.caption_new_9b50 {
    color: var(--text-gray);
}

.detail-8da6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.panel-solid-638f {
    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);
}

.panel-solid-638f p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.sidebar_motion_9bfd {
    margin-top: 3rem;
}

.red-6bdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.message-pressed-501d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-left-2bbe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.feature-pro-b9d9 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-pro-b9d9:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tag-a980 {
    padding: var(--section-padding);
}

.summary_dea7 {
    margin: 2rem 0;
}

.pagination_static_cf12 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form_bottom_d4dc {
    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;
}

.form_bottom_d4dc:hover, .form_bottom_d4dc.fn-active-b5f6 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.complex-3a8d {
    display: none;
}

.complex-3a8d.fn-active-b5f6 {
    display: block;
}

.container-1713 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-7df5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.icon-middle-34dc h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.icon-middle-34dc ul {
    list-style: none;
    padding: 0;
}

.icon-middle-34dc ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.icon-middle-34dc ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.picture-blue-3521 {
    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 */
.small_e114 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_cdd2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over_c045 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag_east_4fc2 {
    color: var(--accent-color);
    margin: 0;
}

.gradient-advanced-d280 {
    display: flex;
    gap: 1.5rem;
}

.tag-up-0f5b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.stone_b5b0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.notice-2c20 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.notice-2c20.hard-f7dd {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.notice-2c20.video_bright_6f03 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.notice-2c20.yellow-afb8 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.carousel_8dc4 {
    margin-top: 2rem;
}

.list-tiny-389f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.filter_aba2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .filter_aba2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_outer_21a3 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.banner_light_3237 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.search-brown-9443 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.media_325f {
    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 */
.tag_b46c {
    padding: var(--section-padding);
}

.header_short_d077 {
    margin: 2rem 0;
}

.notice_9fc7 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.link-52fa {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.old_aac0 {
    list-style: none;
    padding: 0;
}

.old_aac0 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;
}

.old_aac0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.old_aac0 li:last-child {
    border-bottom: none;
}

.description-9366 {
    margin: 2rem 0;
}

.under_1b09 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.summary-e4ba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .summary-e4ba {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media-54ee {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-362f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail-pressed-f156 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.left-94f9 {
    margin-top: 2rem;
}

.carousel_center_16e7 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.search_gold_7096 {
    list-style: none;
    padding: 0;
}

.iron-56a4 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.iron-56a4 a {
    color: var(--accent-color);
    text-decoration: none;
}

.iron-56a4 a:hover {
    text-decoration: underline;
}

.banner-c9f2 {
    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 */
.header-light-3d72 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.top-cacd {
    margin: 2rem 0;
}

.disabled_ef11 {
    margin-bottom: 3rem;
}

.disabled_ef11 .prev_fc29 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.progress_9e09 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.list_liquid_e414 {
    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);
}

.list_liquid_e414:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.solid-9409 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .solid-9409 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-tall-77b4 {
    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 */
.pro-6e75 {
    padding: var(--section-padding);
}

.widget-974f {
    margin: 2rem 0;
}

.alert_ad9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hard_ce2a {
    overflow-x: auto;
    margin: 2rem 0;
}

.aside-0de5 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.easy-ad73 {
    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;
}

.sort_e9b2 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.motion-a6cb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .motion-a6cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_north_bb9e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_north_bb9e .west_a2ef {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pagination_north_bb9e .container-418b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-9469 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.background-85f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma_ed9a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_ed9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_new_efed {
    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;
}

.list_new_efed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.over_6733 {
    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);
}

.mask_8ddd {
    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;
}

.current_5c7c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.static_0446 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.overlay_8152 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.chip_stale_94f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.box-cold-3d2b {
    color: var(--text-white);
    font-weight: 600;
}

.form_80b0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.list_b11e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.list_b11e .hot-27a1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.heading-wide-9f06 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading-wide-9f06 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-9fee {
    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-9fee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-9fee .texture_simple_dfe2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-9fee .info_down_c193 {
    color: var(--text-gray);
    font-size: 1rem;
}

.detail-hovered-ea56 {
    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);
}

.progress_smooth_6d99 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.progress_smooth_6d99 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.upper-a79d {
    margin: 2rem 0;
}

.component-old-e51d {
    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);
}

.component-old-e51d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tag-0863 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brown_7d97 {
    flex: 1;
}

.cold-b8d0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb-hard-e8e1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.fixed-610c {
    margin: 2rem 0;
}

.image_easy_90d7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_easy_90d7 .container-418b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.image_easy_90d7 .list-ed55 {
    color: var(--text-gray);
    margin: 0;
}

.element_stale_2521 {
    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);
}

.element_stale_2521 .title_ddc5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.preview-9469 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.box-medium-5b59 {
    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;
}

.text_lite_3257 {
    flex: 1;
}

.breadcrumb-pink-4d98 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.active-a496 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.in_89cd {
    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;
}

.footer_steel_7a07 {
    flex: 1;
}

.badge_paper_6a13 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.dim_76f4 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.down_d99c {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.accent-e044 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.notice_91c2 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.notice_91c2 .hot-27a1 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sidebar-selected-2bc9 {
    margin-top: 2rem;
}

.sidebar-selected-2bc9 .motion-4f41 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.steel-8a8d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-up-633b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop-up-633b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-up-633b .bottom-471b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast-823c {
    margin: 2rem 0;
}

.outer-dca3 {
    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 */
.filter-inner-bb85 {
    padding: var(--section-padding);
}

.image-fc9a {
    margin-top: 1rem;
}

.full_fbb8 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.full_fbb8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.full_fbb8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hover_fresh_bb9b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-f8a4 {
    margin: 2rem 0;
}

.slider-paper-788e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.wood_66b8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.box_red_feaf {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.text_dirty_171f {
    margin: 2rem 0;
}

.brown_6482 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.brown_6482 .prev_fc29 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.element-stone-7f02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .element-stone-7f02 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-iron-4ef6 {
    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);
}

.white-2db9 {
    color: var(--text-white);
    font-weight: 600;
}

.orange_43bf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.carousel_8fc0 {
    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);
}

.carousel_8fc0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.notification-e572 {
    padding: var(--section-padding);
}

.pagination-139a {
    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;
}

.pagination-139a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.aside_f911 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_f911 .top-a642 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_f911 .glass-d7ab {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accordion-b79e {
    flex: 1;
}

.first_7dda {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.breadcrumb-glass-0b3b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-glass-0b3b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb-glass-0b3b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.element_middle_e957 {
    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);
}

.element_middle_e957 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element_middle_e957 strong {
    color: var(--warning-color);
}

/* Slots Section */
.title_lower_5787 {
    padding: var(--section-padding);
}

.logo-prev-65aa {
    margin: 2rem 0;
}

/* Table Games Section */
.logo_3ddf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-18c0 {
    margin: 2rem 0;
}

.info_silver_e73f {
    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);
}

.info_silver_e73f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.info_silver_e73f .middle_04d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info_silver_e73f .outline-5cee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.title_b0d3 {
    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);
}

.title_b0d3 .title_ddc5 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.content-549a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_wide_d386 {
    margin: 2rem 0;
}

.caption_pro_ced6 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-7c09 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.header_db78 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon_7dcb {
    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);
}

.icon_7dcb:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.icon_7dcb.fn-active-b5f6 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden-f8e9 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.warm_3a97 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm_3a97 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.chip-0f8a {
    padding: var(--section-padding);
}

.avatar_full_6bbe {
    margin: 2rem 0;
}

.slider-advanced-be2e {
    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);
}

.slider-advanced-be2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .slider-advanced-be2e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.preview-616e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.grid_fresh_dfed {
    flex: 1;
}

.background-a42d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.active_rough_6c0d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.gradient-bottom-360b {
    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;
}

.silver_3152 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pattern-cold-7afd {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fluid-445c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.feature_gas_23e6 {
    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;
}

.feature_gas_23e6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.widget-south-ccaf {
    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);
}

.wrapper_left_885e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper_left_885e strong {
    color: var(--accent-color);
}

/* New Games Section */
.overlay-south-eba5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_f25f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thumbnail_f25f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail_f25f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner_6fc5 {
    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;
}

.banner_6fc5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.form_stone_c41f {
    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;
}

.mini-c8d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.slider-32f8 {
    font-size: 2rem;
}

.frame-8f3a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.static-4795 {
    flex: 1;
}

.focus_purple_81b5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.cold_0686 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.button-east-e4b5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.up_31a8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pattern-373d {
    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;
}

.footer_lite_438a {
    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;
}

.footer_lite_438a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.layout_0fb4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_black_9eec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.north_f0ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .north_f0ef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_b7f6 {
    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);
}

.background-mini-5c22 {
    color: var(--text-white);
    font-weight: 600;
}

.shadow-old-fdd0 {
    color: var(--accent-color);
    font-weight: 600;
}

.hovered_3805 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hovered_3805 strong {
    color: var(--accent-color);
}

/* Security Section */
.accordion_4b81 {
    padding: var(--section-padding);
}

/* Benefits Section */
.active_52d3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.banner-83c5 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.primary_9454 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini_8eb1 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.surface-5634 {
    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) {
    .surface-5634 {
        flex-direction: column;
        gap: 1rem;
    }
}

.surface-5634:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.surface-5634 .in_89cd {
    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;
}

.surface-5634 .footer_steel_7a07 {
    flex: 1;
}

.surface-5634 .badge_paper_6a13 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.surface-5634 .dim_76f4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.component-e264 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-e264 .banner_first_bd2e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component-e264 .last-7b9a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-e264 .last-7b9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.component-e264 .last-7b9a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pro_7fb9 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.fixed-1c3b {
    padding: var(--section-padding);
}

.soft_2071 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .soft_2071 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-2741 {
    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);
}

.active-2741:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.active-2741 .fixed_a71d {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-2741 .over-9eed {
    flex: 1;
}

.active-2741 .avatar_small_7001 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-2741 .current_85e7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary-7a92 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-7a92 .hard-657c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-7a92 .article_steel_6694 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.secondary-7a92 .article_steel_6694 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);
}

.secondary-7a92 .article_steel_6694 li:last-child {
    border-bottom: none;
}

.secondary-7a92 .article_steel_6694 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;
}

.secondary-7a92 .article_steel_6694 li strong {
    color: var(--text-white);
}

.pressed-c6e0 {
    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);
}

.pressed-c6e0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pressed-c6e0 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.dropdown_b25b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused_e6de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .focused_e6de {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_short_5801 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_short_5801:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.glass_ae7e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.red_1641 {
    font-size: 2rem;
}

.text-322c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.soft-4a79 {
    flex: 1;
}

.image_37fd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image_37fd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.image_37fd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pattern-active-0e8f {
    margin-top: 3rem;
}

.notice_9fc7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.link-52fa {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.old_aac0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old_aac0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.old_aac0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.old_aac0 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.brown_cd71 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_middle_4c5f {
    margin: 2rem 0;
}

.prev-0458 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.prev-0458 .prev_fc29 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-2f0e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .filter-2f0e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature_dynamic_fa6c {
    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);
}

.feature_dynamic_fa6c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pattern-active-ac0f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.thick-1fe4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.top-c5ca {
    padding: var(--section-padding);
}

.tertiary-b5e6 {
    margin: 2rem 0;
}

.frame-9f61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .frame-9f61 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-9f61 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_2d86 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fixed_2d86:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.caption-brown-298c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-2292 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.rough_b4e6 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rough_b4e6.component_1f0e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.motion_7aed {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.title_4d7a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.dynamic-a168 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider_1102 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section-d335 {
    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);
}

.section-d335 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.section-d335 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.filter_728b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_99b0 {
    margin: 2rem 0;
}

.fixed-9d3f {
    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) {
    .fixed-9d3f {
        flex-direction: column;
        gap: 1rem;
    }
}

.fixed-9d3f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.fixed-9d3f::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);
}

.badge_12f3 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.main-purple-3973 {
    flex: 1;
}

.soft-0c70 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gold-5b64 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold-5b64 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.up_3e5e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid_1a6f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input_40e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input_40e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-39df {
    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);
}

.stone-3685 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.heading_small_fb76 {
    flex: 1;
}

.preview-motion-a494 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.list_45d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.widget-hard-2f1f {
    margin-top: 2rem;
    text-align: center;
}

.banner-c36c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner-c36c strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.texture-short-04dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-short-04dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_hard_9b22 {
    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);
}

.carousel_hard_9b22:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.carousel_hard_9b22 .notice-over-1520 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_hard_9b22 .down-e3c8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.carousel_hard_9b22 .bright-adb9 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.carousel_hard_9b22 .tag-bottom-a4f6 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.mask_8ebc {
    padding: var(--section-padding);
}

.info-2f3f .bright-5e83 {
    flex: 1;
}

/* Promo Calendar Section */
.purple-d4ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_5297 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_5297 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_68bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex-733d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination_3dab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gas_c5ea {
    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);
}

.backdrop-fixed-0b62 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy_9ddb {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.mask_0e59 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.mask_0e59 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask_0e59 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.label_hot_24df {
    padding: var(--section-padding);
}

.fixed_f489 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fixed_f489 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notification_narrow_2911 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_c3c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status_863d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_863d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-5ab9 {
    margin-top: 3rem;
}

.carousel-5ab9 .notice_9fc7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.carousel-5ab9 .link-52fa {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.carousel-5ab9 .old_aac0 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.carousel-5ab9 .old_aac0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.carousel-5ab9 .old_aac0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.carousel-5ab9 .old_aac0 li strong {
    color: var(--warning-color);
}

.fluid_d106 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fluid_d106 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.blue-3939 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.left-6e54 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-6e54 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_under_6598 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_under_6598 .prev_fc29 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.gradient_outer_37e4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paper-b707 {
    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);
}

.paper-b707:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active_1665 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold-416c {
    flex: 1;
}

.simple_5698 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.dirty-ac7a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pagination-c08f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sort_3dff {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.primary_e267 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .primary_e267 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_f33f {
    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);
}

.upper_f33f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim-fda0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-cold-a5de {
    color: var(--text-gray);
    font-size: 1rem;
}

.form-inner-ef89 {
    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);
}

.medium-d1cd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.medium-d1cd strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hot_a581 { 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; }
.row-01e8, .feature-04e4 { max-width:100%; height:auto; }

.hero_4faf, .hovered-baab, .notification-91ee { white-space:normal; }

.filter_d24a,
.hard-ce79,
.purple-fa12,
.texture-short-04dd,
.fixed-610c,
.container-dynamic-69b3 {
  flex-wrap:wrap;
}

[class*="grid"],
.primary_e267,
.frame-9f61,
.purple_fd4c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.avatar_64b4 img,
.hard-ce79 img,
.accordion_3bf6 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.content-steel-34fa, .overlay-610f,
.texture_silver_6bb0, .orange_9228 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.item-cold-47e5 { width:100%; overflow-x:auto; }
.item-cold-47e5 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.card-middle-81d1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .card-middle-81d1 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.small-7a41 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.hot-509b,
.nav-lower-6722,
.sidebar_fixed_4f5c,
.button-3ec2,
.accordion-612c,
.primary_e267,
.frame-9f61,
.purple_fd4c,
.highlight-2543,
.avatar_full_6bbe,
.card-middle-81d1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .hot-509b,
  .nav-lower-6722,
  .sidebar_fixed_4f5c,
  .button-3ec2,
  .accordion-612c,
  .primary_e267,
  .frame-9f61,
  .purple_fd4c,
  .highlight-2543,
  .avatar_full_6bbe,
  .card-middle-81d1 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.aside-huge-8bad,
.modal_full_5c0a,
.upper_f33f,
.slider_0649,
.fixed_2d86,
.badge_cef1,
.slider-advanced-be2e,
.small-7a41 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.badge_efcc,
.lower_3350,
.basic_fe46 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.badge_efcc > *,
.lower_3350 > *,
.basic_fe46 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: a705 */
.phantom-card-k1 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
