/* {$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;
}

.frame-solid-e8ac {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.section-4336 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-4336 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-4336 {
        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 */
.notification-stone-6ad3 {
    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);
}

.gallery_f21b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .gallery_f21b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .widget-plasma-a377 {
        grid-column: 1;
    }
    
    .basic_6192 {
        grid-column: 2;
    }
    
    .row_east_40dd {
        grid-column: 3;
    }
}

.widget-plasma-a377 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.widget-plasma-a377:hover img {
    transform: scale(1.05);
}

/* Navigation */
.title-center-aa2d {
    display: none;
}

@media (min-width: 1024px) {
    .title-center-aa2d {
        display: block;
    }
}

/* Grouped Navigation */
.summary-2c2c {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.first-e4c4 {
    position: relative;
}

.gallery-821d {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.first-e4c4 .full_b766 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.full_b766 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.card-copper-2483 {
    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;
}

.card-copper-2483:hover,
.card-copper-2483.fn-active-ef2f {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.green_45f5 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .green_45f5 {
        display: flex;
    }
}

/* Mobile Register Button */
.basic_6192 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .basic_6192 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tall-1fc1 {
    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;
}

.tall-1fc1::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 */
.row_east_40dd {
    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) {
    .row_east_40dd {
        display: none;
    }
}

.row_east_40dd span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.row_east_40dd.fn-active-ef2f span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.row_east_40dd.fn-active-ef2f span:nth-child(2) {
    opacity: 0;
}

.row_east_40dd.fn-active-ef2f span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.message-b48a {
    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;
}

.message-b48a.fn-active-ef2f {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.fluid_a5ac {
    overflow: hidden;
}

.outer-de29 {
    list-style: none;
    padding: 0.75rem 0;
}

.hot_467c {
    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;
}

.hot_467c:hover,
.hot_467c.fn-active-ef2f {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.hot_467c.gold_dfa6 {
    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;
}

.hot_467c.gold_dfa6::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 */
.static_01e6 {
    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;
}

.widget_stone_cda9 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.widget_stone_cda9:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.blue_e36e {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.blue_e36e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.white_e208 {
    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;
}

.white_e208:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.stale-480d {
    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;
}

.picture_center_d8fd {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.picture_center_d8fd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.west-b712 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.west-b712:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.gradient-ccde {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.gradient-ccde: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);
}

.shade_advanced_5c58 {
    font-size: 1em;
    font-weight: 700;
}

.banner-dim-ee13 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.surface_ff43 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.surface_ff43::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;
}

.column-active-a15a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .column-active-a15a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.short_fec0 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.input-1d18 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.link_8b21 {
    margin-bottom: 2rem;
}

.search_da21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .search_da21 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_thick_a10d {
    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);
}

.title-cold-4fa2 {
    font-size: 1.5rem;
}

.wrapper-new-92e9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.dim_adc3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.backdrop-west-467b {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.backdrop-west-467b:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.preview-0327 {
    text-align: center;
    margin-bottom: 3rem;
}

.pro_a246 {
    margin-bottom: 1rem;
}

.shade-next-cf1d {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.out-bac7 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .out-bac7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .out-bac7.action-c031 {
        direction: rtl;
    }
    
    .out-bac7.action-c031 > * {
        direction: ltr;
    }
}

.status-over-1f7b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.status-over-1f7b:first-child {
    margin-top: 0;
}

.in-c467 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bottom_0a4e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.bottom_0a4e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.title-small-87df {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-small-87df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-d8cb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item-fast-6cdc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wood-a030 {
    list-style: none;
}

.wood-a030 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wood-a030 li:last-child {
    border-bottom: none;
}

/* Games Features */
.table-2d10 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.pattern_8a45 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tiny_cfb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress_lite_4a9e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.red-1ed9 {
    margin: 2rem 0;
}

.gas_b691 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dark_7349 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.gradient_818d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.inner-1e08 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.search_fc52 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_fc52 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-90eb {
    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);
}

.hovered-90eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary-advanced-898b {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.background-gas-a292 {
    font-size: 1.5rem;
}

.icon-plasma-7810 {
    color: var(--accent-color);
    margin: 0;
}

.current-48c4 {
    list-style: none;
}

.current-48c4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.current-48c4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.short-f874 {
    margin: 2rem 0;
}

.white-99f1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.main_ec41 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .main_ec41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-fd83 {
    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);
}

.white-01f7 {
    font-size: 1.25rem;
}

.label-short-89be {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.complex_ab28,
.search-hard-22f6 {
    text-align: center;
    margin: 2rem 0;
}

.chip_hard_ccb0,
.photo_ac2e {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.sort_15eb {
    margin: 2rem 0;
    text-align: center;
}

.media_cb33 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media_cb33::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;
}

.text-focused-c5d9 {
    position: relative;
    z-index: 1;
}

.accordion-46c8 {
    margin-bottom: 1rem;
}

.thumbnail_5c14 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dropdown-081e {
    margin-bottom: 3rem;
}

.video_b0d7 {
    margin-top: 3rem;
}

.grid_be19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid_be19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_be19 .overlay_thick_a10d {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hard_cd1e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal_lower_8691 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.shade_0ca1 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.breadcrumb-fbc5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .breadcrumb-fbc5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb-fbc5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.simple_8d46 {
    margin-bottom: 1rem;
}

.north_1715 img {
    margin-bottom: 1rem;
}

.outline-upper-bdf0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_01b3 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.notification_pressed_abfc {
    list-style: none;
}

.notification_pressed_abfc li {
    margin-bottom: 0.5rem;
}

.notification_pressed_abfc a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.notification_pressed_abfc a:hover {
    color: var(--accent-color);
}

.button_c610 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blue_a6d1 {
    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);
}

.blue_a6d1:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.copper-6f11 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.copper-6f11 p {
    margin-bottom: 0.25rem;
}

.panel-0a8d {
    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) {
    .panel-0a8d {
        flex-direction: row;
    }
}

.caption-63cb {
    text-align: center;
}

@media (min-width: 768px) {
    .caption-63cb {
        text-align: left;
    }
}

.caption-63cb p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.smooth-5e1d {
    font-size: 0.75rem !important;
}

.thick-c0da {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fast-87ea {
    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);
    }
}

.gas_bebf {
    animation: fadeInUp 0.6s ease-out;
}

.badge_5745 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.frame-blue-cada {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-blue-cada {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.component-fbb4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-fbb4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_7aba {
    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);
}

.frame_7aba .tiny_cfb8 {
    font-size: 1.25rem;
}

.frame_7aba .photo_glass_0a73 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.table-steel-64e2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table-steel-64e2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-advanced-551c {
    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);
}

.form-advanced-551c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table_abb2 {
    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);
}

.liquid-776b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.right-1fe7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black_2c5e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-d193 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic-d193 .progress_lite_4a9e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-d193 .simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_fca1 {
    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);
}

.section-8fd7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.section-8fd7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.section-8fd7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.out-a590 {
    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);
}

.detail-out-fb68 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel-defa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.carousel-defa label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.carousel-defa 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);
}

.carousel-defa input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.carousel-defa input::placeholder {
    color: var(--text-muted);
}

.wrapper_c17e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.element_red_a2fa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.element_red_a2fa input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.widget_left_0571 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.widget_left_0571:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.main_ec41 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_ec41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-fd83 {
    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);
}

.carousel-fd83 .white-01f7 {
    font-size: 1.25rem;
}

.carousel-fd83 .label-short-89be {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.soft-f5dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy-d9a7 {
    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);
}

.easy-d9a7 .tiny_cfb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy-d9a7 .progress_lite_4a9e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy-d9a7 .simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_up_ebe4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_ad29 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label_ad29 .message-2ac7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_ad29 .dropdown-purple-872c {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_72b7 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-glass-0dcc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-glass-0dcc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow_116b {
    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);
}

.narrow_116b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-8a8a {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.label-a246 {
    flex: 1;
}

.west-a843 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shadow_simple_398e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aside-north-adea {
    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);
}

.aside-north-adea:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.short-a37f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-a37f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_aa64 {
    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_aa64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-8465 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading-776f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.avatar-a25f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.frame-8bf7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.accent_in_f37a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark_e92f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search-a853 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-a853 .paragraph_1937 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-a853 .tooltip_ec53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_f3f9 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_b245 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.full_5b82 {
    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);
}

.full_5b82 .tiny_cfb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.full_5b82 .progress_lite_4a9e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.full_5b82 .simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-9018 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft-9018 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_steel_9a3c {
    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);
}

.backdrop_steel_9a3c:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.button_31a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_31a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_a79c {
    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);
}

.basic_a79c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft-c880 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west-9506 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dark_7349 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.preview_mini_8f5e {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.outline-full-a82a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-medium-b9d9 {
    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);
}

.pattern-medium-b9d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first_086f {
    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);
}

.image_west_a82b {
    flex: 1;
}

.easy_590d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.dynamic_165e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.component_ac4a {
    color: var(--text-gray);
    line-height: 1.6;
}

.up-a04e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large_4fa4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_4fa4 .message-2ac7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.large_4fa4 .dropdown-purple-872c {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-hard-22f6 {
    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);
}

.liquid_1bf3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_1bf3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.fresh_ef5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh_ef5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_center_e5b5 {
    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);
}

.tag_center_e5b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_8698 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_408b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tertiary-copper-d657 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component-hovered-51ed {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-d94d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_wood_7b4d {
    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);
}

.info-upper-9cdf {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_891a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy_c97a {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_b245 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.full_5b82 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.full_5b82 .progress_lite_4a9e {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.full_5b82 .simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_fc30 {
    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);
}

.photo_white_4aef {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_white_4aef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_white_4aef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_fast_3cb2 {
    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_fast_3cb2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-dc4e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_iron_0a06 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.picture-4816 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.motion_0985 {
    padding: 1.5rem;
}

.paragraph-d7b3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.middle_8194 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.middle_8194 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_8194 li:last-child {
    border-bottom: none;
}

.middle_8194 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.section-white-2593 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-white-2593 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-56f1 {
    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);
}

.dropdown-56f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hovered_97a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_hard_7cc2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blue-e297 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.box_red_6819 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main-solid-4d69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header-2029 {
    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);
}

.hover_135d {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_5d8a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-6e35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_static_54d3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.red_f061 {
    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);
}

.bronze-7c63 {
    text-align: center;
}

.border_e8e5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-medium-3ccb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outer-05d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.west_3618 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west_3618 .progress_lite_4a9e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.west_3618 .simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_cool_f6ea {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_cool_f6ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_cool_f6ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-paper-b60f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery-paper-b60f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-d9da {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.purple-b269 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress_lite_4a9e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.image-a299 {
    padding: 1.5rem;
}

.simple-4da1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tag-096f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-096f 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;
}

.tag-096f li:last-child {
    border-bottom: none;
}

.tag-096f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.caption_current_b2da {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.glass_6cf0 {
    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);
}

.glass_6cf0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-west-65de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-5551 {
    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);
}

.table_abb2 {
    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;
}

.liquid-776b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right-1fe7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_dirty_b355 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-solid-1252 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow-97b3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_large_e114 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tiny_ed5b {
    display: flex;
    gap: 1rem;
}

.tiny_ed5b .photo-pressed-dc2a {
    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;
}

.short-a534 {
    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);
}

.disabled_hovered_00bb {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.article_8dc2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article_8dc2 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;
}

.article_8dc2 li:last-child {
    border-bottom: none;
}

.article_8dc2 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.overlay_5ac3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .overlay_5ac3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay_5ac3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite-7f44 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite-7f44:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_west_f34d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-5651 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.paragraph_1937 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.button_1c2a {
    font-size: 1rem;
}

.outline_motion_ff7c {
    padding: 1.5rem;
}

.tooltip_ec53 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.main-03d5 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.main-03d5 .bronze-7c63 {
    text-align: center;
}

.main-03d5 .icon-medium-3ccb {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.main-03d5 .medium_a23f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.banner_0525 {
    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);
}

.banner_0525:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.stale_59a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_59a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_1afd {
    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);
}

.dirty_1afd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-d8d1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_8ff1 {
    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);
}

.brown-a98c {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo_active_52c4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_3a03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-huge-ec1f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.red-7b94 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon_large_cdf4 {
    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);
}

.alert_light_a792 {
    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;
}

.alert_light_a792.south_2d0f {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.alert_light_a792.item_c2c7 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.alert_light_a792.column_basic_1dd7 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.alert_light_a792.cool-edae {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.alert_light_a792.focus_2df5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.wide-4c8a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-6eb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-cb3d {
    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);
}

.sidebar_8f24 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar_up_ebe4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_up_ebe4 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;
}

.sidebar_up_ebe4 li:last-child {
    border-bottom: none;
}

.sidebar_up_ebe4 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.middle-1e74 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle-1e74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle-1e74 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static-b255 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.static-b255:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static-b255.filter-clean-d57c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .static-b255.filter-clean-d57c {
        grid-column: span 3;
    }
}

.summary-plasma-4ee9 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.static-b255.filter-clean-d57c .summary-plasma-4ee9 {
    background: rgba(6, 182, 212, 0.1);
}

.hard_69aa {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.fresh_69ca {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.static-b255.filter-clean-d57c .fresh_69ca {
    color: var(--info-color);
}

.primary-dirty-9aa6 {
    padding: 1.5rem;
    text-align: center;
}

.chip-6602 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.static-b255.filter-clean-d57c .chip-6602 {
    color: var(--info-color);
}

.preview-large-d70a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.block-mini-473a {
    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 */
.description_2312 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_2312 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-light-990d {
    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);
}

.active-light-990d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-84cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy-d9a7 {
    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);
}

.white-01f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_steel_718d {
    flex: 1;
}

.white-99f1 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern_8058 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-606f {
    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);
}

.slider_stale_6926 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.in_ec38 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fast-87ea {
    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);
}

.paragraph-hard-2a19 {
  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);
}

.paragraph-hard-2a19 .bronze-7c63 {
    text-align: center;
}

.paragraph-hard-2a19 .border_e8e5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.paragraph-hard-2a19 .icon-medium-3ccb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.stone_1e30 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.huge-9b02 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_fixed_8ac3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced-be90 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-tiny-bdd2 {
    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);
}

.hard-295a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main-top-d7bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-f4a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-f4a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-f4a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-huge-c055 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.surface-huge-c055:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-stale-7327 {
    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);
}

.menu-b9ca {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.aside_clean_42bf {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.active_under_e2f9 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active_under_e2f9.gallery-smooth-706c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.active_under_e2f9.border_c563 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.active_under_e2f9.card_smooth_e1d8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.form_wood_c170 {
    padding: 1.5rem;
    text-align: center;
}

.footer_39a6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text_3740 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.text_3740 .carousel-cc51 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.lite-30af {
    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);
}

.lite-30af:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.link-7f0a {
  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);
}

.bottom-5dda {
    text-align: center;
}

.bottom-5dda .border_e8e5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.bottom-5dda .icon-medium-3ccb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.component_upper_8f2a { text-align: center; }
.wide-7f35 { text-align: left; }
.dynamic-afc2 { text-align: right; }

.nav-silver-0dfe { margin-bottom: 0; }
.focus-dim-af7b { margin-bottom: 0.5rem; }
.hover-4066 { margin-bottom: 1rem; }
.list_center_54bd { margin-bottom: 1.5rem; }
.button_complex_7c7b { margin-bottom: 2rem; }

.dropdown_dirty_49da { margin-top: 0; }
.preview-0613 { margin-top: 0.5rem; }
.block_103e { margin-top: 1rem; }
.upper-9949 { margin-top: 1.5rem; }
.form-blue-714c { margin-top: 2rem; }

.fn-hidden-ef2f { display: none; }
.fn-visible-ef2f { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .surface_ff43 {
        padding: 6rem 0 3rem;
    }
    
    .column-active-a15a {
        text-align: center;
    }
    
    .out-bac7 {
        text-align: center;
    }
    
    .search_da21 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .notification-stone-6ad3,
    .message-b48a,
    .media_cb33,
    .shade_0ca1 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .surface_ff43 {
        background: none;
    }
}

/* Providers Section */
.title-pink-e5b9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-4f29 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-4f29 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-4f29 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_ba48 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface_ba48:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thumbnail_dirty_562a {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.middle_adc4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero_dark_42a7 {
    list-style: none;
    padding: 0;
}

.hero_dark_42a7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hero_dark_42a7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.mask_steel_f0ac {
    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);
}

.mask_steel_f0ac p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.picture_f82f {
    padding: var(--section-padding);
}

.grid_771d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_771d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-next-f9ad {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-next-f9ad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tooltip-5dc7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.row_focused_0cd4 {
    display: flex;
    flex-direction: column;
}

.purple_ed7c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.background-29db {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.icon-pink-1c87 {
    color: var(--accent-color);
}

.tall-84a9 {
    font-size: 1.25rem;
}

.texture-silver-4203 {
    margin-bottom: 1rem;
}

.texture-silver-4203 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.grid-stone-9543 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.next-26e4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.bronze-7c63 {
    text-align: center;
}

.border_e8e5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-medium-3ccb {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.full-2f04 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_right_8bac {
    margin: 2rem 0;
}

.logo_in_90c1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.logo_in_90c1 .tiny_cfb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic-6dab {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.summary_gold_4dc9 {
    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;
}

.summary_gold_4dc9:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-fluid-39f0 {
    font-size: 2rem;
}

.gas-6fd6 {
    display: flex;
    flex-direction: column;
}

.widget-basic-1a0e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.detail-2713 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.logo_dark_4941 {
    padding: var(--section-padding);
}

.footer_paper_d893 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_paper_d893 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_paper_d893 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_ea20 {
    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);
}

.grid_ea20:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid_ea20 .border_e8e5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.grid_ea20 .icon-medium-3ccb {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.grid_ea20 .caption-1be2 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.heading-down-9c46 {
    margin-top: 4rem;
}

.box_center_5459 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.fast_1068 {
    overflow-x: auto;
}

.panel-steel-28fe {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-steel-28fe thead {
    background: var(--accent-color);
}

.panel-steel-28fe th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.panel-steel-28fe td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-steel-28fe tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.panel-steel-28fe tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.frame_copper_1dd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-26b6 {
    max-width: 900px;
    margin: 0 auto;
}

.top_c2bc {
    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);
}

.top_c2bc:hover {
    border-color: var(--accent-color);
}

.row_7bf0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.row_7bf0 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.border_c52f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.top_c2bc.fn-active-ef2f .border_c52f {
    transform: rotate(45deg);
}

.box_brown_9158 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.top_c2bc.fn-active-ef2f .box_brown_9158 {
    max-height: 1000px;
}

.box_brown_9158 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.tertiary-cd00 {
    padding: var(--section-padding);
}

.section-8fd7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.message_middle_010e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon-outer-4bf7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-outer-4bf7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pink-7896 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_982f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gradient-out-bfcc {
    font-size: 2rem;
}

.preview-last-6b49 {
    color: var(--text-white);
    margin: 0;
}

.photo_old_aee4 {
    list-style: none;
    padding: 0;
}

.photo_old_aee4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photo_old_aee4 li:last-child {
    border-bottom: none;
}

.medium-276f {
    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);
}

.medium-276f p {
    color: var(--success-color);
    margin: 0;
}

.upper_ac31 {
    margin-top: 3rem;
}

.disabled_hovered_00bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.shadow_75fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shadow_75fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.warm-8e1c {
    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);
}

.media_inner_f059 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warm-8e1c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.pro-3a1b {
    padding: var(--section-padding);
}

.dropdown-under-a329 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-under-a329 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-cc35 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.narrow-cc35:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.grid_steel_1099 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.orange_eba2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.list_hard_44e8 {
    flex: 1;
}

.status-a723 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.short_2402 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pressed_f9c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-3ebc {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-3ebc:last-child {
    border-bottom: none;
}

/* Comparison Section */
.filter_5fb7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.info-7d3e {
    padding: var(--section-padding);
}

.wood-065d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.highlight-brown-01f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-brown-01f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-next-8135 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north_c575, .picture-hovered-e50b, .thumbnail-6a13 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.thumbnail-6a13 {
    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 */
.frame-middle-95ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right-39c9 {
    margin: 2rem 0;
}

.copper_9d64 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-wide-9088 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search-pink-addd {
    list-style: none;
    padding: 0;
}

.search-pink-addd 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;
}

.search-pink-addd li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.search-pink-addd li:last-child {
    border-bottom: none;
}

.status_7546 {
    text-align: center;
    margin-top: 2rem;
}

.tag_e2a3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tooltip_bronze_18dd {
    padding: var(--section-padding);
}

.surface_ad7e {
    margin: 2rem 0;
}

.border-upper-9d4c {
    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) {
    .border-upper-9d4c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.border-upper-9d4c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wrapper_d464 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.gallery-89ac {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.preview-over-9c84 {
    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;
}

.basic_0aa9 {
    flex: 1;
}

.status-b46a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.brown-8dca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.picture-bfdf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.layout_slow_4264 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .layout_slow_4264 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.grid-dim-ffd7 {
    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);
}

.grid-dim-ffd7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid-dim-ffd7 .border_e8e5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid-dim-ffd7 .icon-medium-3ccb {
    color: var(--text-gray);
    font-size: 1rem;
}

.fixed_894c {
    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);
}

.blue-8556 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.blue-8556 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.badge-up-1e8f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .badge-up-1e8f {
        grid-template-columns: 1fr 1fr;
    }
}

.row_af19 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_c6bf {
    margin-bottom: 1.5rem;
}

.block_c6bf label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.block_c6bf input,
.block_c6bf 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;
}

.block_c6bf input:focus,
.block_c6bf select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title-db61 {
    width: 100%;
    margin-top: 1rem;
}

.soft_e60b {
    display: flex;
    align-items: center;
}

.info-f091 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.middle-24da {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.over-ae5f {
    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;
}

.inner-e9b7 {
    color: var(--text-gray);
}

.image-868a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dynamic_875d {
    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);
}

.dynamic_875d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.picture_19db {
    margin-top: 3rem;
}

.wrapper-2dcb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.media_glass_8f95 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-12a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.modal-next-522d {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-next-522d:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hot-91e1 {
    padding: var(--section-padding);
}

.secondary-4aed {
    margin: 2rem 0;
}

.section-easy-e803 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.yellow-33d0 {
    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;
}

.yellow-33d0:hover, .yellow-33d0.fn-active-ef2f {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hero-db94 {
    display: none;
}

.hero-db94.fn-active-ef2f {
    display: block;
}

.narrow_7192 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_f4d8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hovered-d251 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hovered-d251 ul {
    list-style: none;
    padding: 0;
}

.hovered-d251 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hovered-d251 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.caption_e215 {
    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 */
.pagination-dynamic-07aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-2e02 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-8ea5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.orange-0bdc {
    color: var(--accent-color);
    margin: 0;
}

.shadow-1826 {
    display: flex;
    gap: 1.5rem;
}

.thumbnail-08fd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.white-a3eb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.link-595d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.link-595d.outline_2329 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.link-595d.status_warm_657c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.link-595d.status_tiny_f6eb {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.small_7630 {
    margin-top: 2rem;
}

.breadcrumb-e60d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.primary_0889 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .primary_0889 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-24ee {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.notice-center-a723 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.badge_bottom_9527 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.progress-pro-45a8 {
    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 */
.fixed-39b6 {
    padding: var(--section-padding);
}

.table-up-964f {
    margin: 2rem 0;
}

.brown_25cf {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.media_last_041e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.thumbnail_red_7177 {
    list-style: none;
    padding: 0;
}

.thumbnail_red_7177 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;
}

.thumbnail_red_7177 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.thumbnail_red_7177 li:last-child {
    border-bottom: none;
}

.title-ddc1 {
    margin: 2rem 0;
}

.grid_2971 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.list-under-6f83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .list-under-6f83 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outline_wood_c64e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-down-1bb5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-in-02f1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.paragraph_stone_007e {
    margin-top: 2rem;
}

.west-a843 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.old_9e10 {
    list-style: none;
    padding: 0;
}

.accordion_0393 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.accordion_0393 a {
    color: var(--accent-color);
    text-decoration: none;
}

.accordion_0393 a:hover {
    text-decoration: underline;
}

.wrapper-681b {
    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-2173 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_f636 {
    margin: 2rem 0;
}

.orange-0f30 {
    margin-bottom: 3rem;
}

.orange-0f30 .table-wide-9088 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.paper-850f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.info-398c {
    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);
}

.info-398c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.stale_cedb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .stale_cedb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-6ed9 {
    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 */
.gallery_copper_00ab {
    padding: var(--section-padding);
}

.breadcrumb-18b1 {
    margin: 2rem 0;
}

.medium-4292 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.static-9f09 {
    overflow-x: auto;
    margin: 2rem 0;
}

.block_glass_496b {
    background: rgba(6, 182, 212, 0.1) !important;
}

.modal_8de1 {
    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;
}

.box_1391 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.modal-fluid-5416 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .modal-fluid-5416 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_soft_97b8 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_soft_97b8 .tiny_cfb8 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.component_soft_97b8 .progress_lite_4a9e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_selected_f8db {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.simple-9b62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-bfed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-bfed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_steel_5ce9 {
    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;
}

.component_steel_5ce9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.block_2067 {
    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);
}

.aside_lower_1656 {
    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;
}

.table_dark_8698 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame-8707 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.stale-cf9c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.highlight-focused-0d1a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.description_hard_aae8 {
    color: var(--text-white);
    font-weight: 600;
}

.table-gold-5500 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.white-2730 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.white-2730 .photo-pressed-dc2a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modal_6cbd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_6cbd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_0ce3 {
    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);
}

.title_0ce3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title_0ce3 .border_e8e5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_0ce3 .icon-medium-3ccb {
    color: var(--text-gray);
    font-size: 1rem;
}

.section_00cf {
    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);
}

.slider-dynamic-12ad {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slider-dynamic-12ad strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.status-d94d {
    margin: 2rem 0;
}

.layout_wood_7b4d {
    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);
}

.layout_wood_7b4d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.info-upper-9cdf {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.preview-under-587e {
    flex: 1;
}

.accordion_891a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy_c97a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.component_b245 {
    margin: 2rem 0;
}

.full_5b82 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.full_5b82 .progress_lite_4a9e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.full_5b82 .simple-4da1 {
    color: var(--text-gray);
    margin: 0;
}

.overlay_fc30 {
    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);
}

.overlay_fc30 .chip_hard_ccb0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.header_selected_f8db {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.first_086f {
    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;
}

.image_west_a82b {
    flex: 1;
}

.dynamic_165e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.component_ac4a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.table_abb2 {
    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;
}

.module-231e {
    flex: 1;
}

.liquid-776b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.right-1fe7 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.narrow-97b3 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tag_large_e114 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tiny_ed5b {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tiny_ed5b .photo-pressed-dc2a {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.short-a534 {
    margin-top: 2rem;
}

.short-a534 .disabled_hovered_00bb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.article-646d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red_f061 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .red_f061 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_f061 .bronze-7c63 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-05d0 {
    margin: 2rem 0;
}

.west_3618 {
    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 */
.full-afa9 {
    padding: var(--section-padding);
}

.image-a299 {
    margin-top: 1rem;
}

.tag-096f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.tag-096f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tag-096f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.header-action-330d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_4715 {
    margin: 2rem 0;
}

.top_58e9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.column-eac9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.box-be25 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.secondary_4615 {
    margin: 2rem 0;
}

.popup_middle_bd39 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.popup_middle_bd39 .table-wide-9088 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-easy-64d8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper-easy-64d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.picture_solid_471a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.active_295a {
    color: var(--text-white);
    font-weight: 600;
}

.header-90e7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.label_new_596f {
    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);
}

.label_new_596f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.south_27c0 {
    padding: var(--section-padding);
}

.row-clean-6eae {
    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;
}

.row-clean-6eae:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.center_7899 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.center_7899 .media_inner_f059 {
    font-size: 2rem;
    flex-shrink: 0;
}

.center_7899 .input_43d8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.main_119a {
    flex: 1;
}

.primary_next_3e53 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-5c11 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-5c11 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mask-5c11 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.prev_fea3 {
    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);
}

.prev_fea3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.prev_fea3 strong {
    color: var(--warning-color);
}

/* Slots Section */
.media-16e8 {
    padding: var(--section-padding);
}

.accent_in_f37a {
    margin: 2rem 0;
}

/* Table Games Section */
.hard_7899 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark_e92f {
    margin: 2rem 0;
}

.search-a853 {
    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);
}

.search-a853:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.search-a853 .paragraph_1937 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-a853 .tooltip_ec53 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.wood_f3f9 {
    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);
}

.wood_f3f9 .chip_hard_ccb0 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.focus_slow_a891 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-south-3c81 {
    margin: 2rem 0;
}

.wrapper-f7cc {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black_6d8c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-e146 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.grid_upper_3261 {
    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);
}

.grid_upper_3261:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.grid_upper_3261.fn-active-ef2f {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-over-5875 {
    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);
}

.link_hovered_04a5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link_hovered_04a5 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.over_3244 {
    padding: var(--section-padding);
}

.breadcrumb-thick-b305 {
    margin: 2rem 0;
}

.input_7562 {
    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);
}

.input_7562:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .input_7562 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sidebar_ca67 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.section-1457 {
    flex: 1;
}

.panel_rough_d22f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.column-1dba {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.header-advanced-f9db {
    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;
}

.green_b38e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.module-middle-a6a5 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dim_c035 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button-7bb9 {
    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;
}

.button-7bb9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.bright_b899 {
    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);
}

.message-fresh-5eac {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message-fresh-5eac strong {
    color: var(--accent-color);
}

/* New Games Section */
.gradient-hard-2e16 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-341c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown-341c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-341c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-b97b {
    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;
}

.white-b97b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dynamic_6b7e {
    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;
}

.avatar-inner-5804 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.lite_8cb8 {
    font-size: 2rem;
}

.hot_6caf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.menu-7235 {
    flex: 1;
}

.label-2961 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.solid-80c2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.panel_4612 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notification-e91d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.article_096e {
    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;
}

.pagination_warm_b48d {
    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;
}

.pagination_warm_b48d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.row-b800 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_aad4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dim_d85d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .dim_d85d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_359b {
    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);
}

.accordion-fluid-799f {
    color: var(--text-white);
    font-weight: 600;
}

.avatar_light_bb04 {
    color: var(--accent-color);
    font-weight: 600;
}

.grid-450d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.grid-450d strong {
    color: var(--accent-color);
}

/* Security Section */
.thick_8a1f {
    padding: var(--section-padding);
}

/* Benefits Section */
.component-5d85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.menu_fast_16fb {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.blue_ec47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy-a3ba {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.sort_large_73b4 {
    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) {
    .sort_large_73b4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.sort_large_73b4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sort_large_73b4 .table_abb2 {
    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;
}

.sort_large_73b4 .module-231e {
    flex: 1;
}

.sort_large_73b4 .liquid-776b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.sort_large_73b4 .right-1fe7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.table-aea4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-aea4 .white-99f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table-aea4 .soft-f5dc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-aea4 .soft-f5dc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.table-aea4 .soft-f5dc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.box_upper_7615 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.short-c980 {
    padding: var(--section-padding);
}

.fresh_b3d3 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .fresh_b3d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-9ed1 {
    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);
}

.chip-9ed1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.chip-9ed1 .title_soft_7c97 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-9ed1 .action-a7d5 {
    flex: 1;
}

.chip-9ed1 .message-2ac7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip-9ed1 .form-6981 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.basic-467c {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.basic-467c .list_static_c918 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.basic-467c .gallery-lite-8bc6 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.basic-467c .gallery-lite-8bc6 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);
}

.basic-467c .gallery-lite-8bc6 li:last-child {
    border-bottom: none;
}

.basic-467c .gallery-lite-8bc6 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;
}

.basic-467c .gallery-lite-8bc6 li strong {
    color: var(--text-white);
}

.cool-f668 {
    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);
}

.cool-f668 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.cool-f668 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.notice_3149 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-bb10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .glass-bb10 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.simple_a00b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.simple_a00b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article_e02d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-8430 {
    font-size: 2rem;
}

.highlight-dark-4966 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.in-fdf1 {
    flex: 1;
}

.steel-983b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steel-983b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.steel-983b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focus-599f {
    margin-top: 3rem;
}

.brown_25cf {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.media_last_041e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_red_7177 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_red_7177 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.thumbnail_red_7177 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.thumbnail_red_7177 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.outer-de57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gas-94ff {
    margin: 2rem 0;
}

.logo-67ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.logo-67ee .table-wide-9088 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag-middle-c96b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tag-middle-c96b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main_2244 {
    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);
}

.main_2244:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.widget_north_2a4d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tag_top_1f71 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.popup-b2f1 {
    padding: var(--section-padding);
}

.next_d3d8 {
    margin: 2rem 0;
}

.hidden_selected_a5e6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hidden_selected_a5e6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden_selected_a5e6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-d5e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.red-d5e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.short-fd72 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.header_pink_8b27 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.module_glass_3f9c {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.module_glass_3f9c.old-c3cd {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.summary_fresh_8b27 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.narrow-b04c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.pressed-e67c {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.red-fdd4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focused-098c {
    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);
}

.focused-098c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused-098c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.short_c978 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_pink_14bf {
    margin: 2rem 0;
}

.out_6528 {
    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) {
    .out_6528 {
        flex-direction: column;
        gap: 1rem;
    }
}

.out_6528:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.out_6528::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.container_gold_7157 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.preview-cbe8 {
    flex: 1;
}

.south-854f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.preview_orange_dc0f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview_orange_dc0f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.main_bbda {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_a57a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-purple-77f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal-purple-77f0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-1883 {
    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);
}

.shade-pink-2661 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.outline-purple-e0b0 {
    flex: 1;
}

.iron-93ee {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.solid-6a26 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert-13cc {
    margin-top: 2rem;
    text-align: center;
}

.simple-d24b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.simple-d24b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.stale_59a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_59a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_1afd {
    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);
}

.dirty_1afd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dirty_1afd .hovered_97a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dirty_1afd .text_hard_7cc2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dirty_1afd .blue-e297 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.dirty_1afd .box_red_6819 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.grid-c320 {
    padding: var(--section-padding);
}

.hero_8ff1 .huge-bb99 {
    flex: 1;
}

/* Promo Calendar Section */
.old_9156 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-fluid-bf77 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-fluid-bf77 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_0a33 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_middle_52d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.filter-hard-e4dd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.active-yellow-f30f {
    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);
}

.border-0ea3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.right-94aa {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.alert_ab29 {
    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);
}

.alert_ab29 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert_ab29 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.medium_3b43 {
    padding: var(--section-padding);
}

.header-3131 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .header-3131 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.new-05ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_244d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-2de6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-2de6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.middle_ea4c {
    margin-top: 3rem;
}

.middle_ea4c .brown_25cf {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.middle_ea4c .media_last_041e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.middle_ea4c .thumbnail_red_7177 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.middle_ea4c .thumbnail_red_7177 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.middle_ea4c .thumbnail_red_7177 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.middle_ea4c .thumbnail_red_7177 li strong {
    color: var(--warning-color);
}

.sidebar_action_493a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar_action_493a strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.shade_a513 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-fe01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-fe01 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current_33f8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current_33f8 .table-wide-9088 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.modal-0e6c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list_gas_d845 {
    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);
}

.list_gas_d845:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.inner_9475 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption_up_744e {
    flex: 1;
}

.background-tall-f6e7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.surface-solid-6ef5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.wood_2341 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.first-bdc7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.active-fc87 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .active-fc87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner_a3c7 {
    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);
}

.inner_a3c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main-ddc2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.up-28df {
    color: var(--text-gray);
    font-size: 1rem;
}

.blue-8556 {
    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);
}

.link_926d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.link_926d strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.section-4336 { 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; }
.backdrop-west-467b, .bottom_0a4e { max-width:100%; height:auto; }

.static_01e6, .white_e208, .stale-480d { white-space:normal; }

.column-active-a15a,
.out-bac7,
.description_2312,
.stale_59a7,
.component_b245,
.notice-f4a1 {
  flex-wrap:wrap;
}

[class*="grid"],
.active-fc87,
.hidden_selected_a5e6,
.grid_be19 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.surface_ff43 img,
.out-bac7 img,
.dim_adc3 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.short_fec0, .input-1d18,
.pro_a246, .shade-next-cf1d {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.fast_1068 { width:100%; overflow-x:auto; }
.fast_1068 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.menu-4f29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .menu-4f29 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.surface_ba48 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.footer_paper_d893,
.title-mini-4da6,
.text_e642,
.outer_be09,
.layout_slow_4264,
.active-fc87,
.hidden_selected_a5e6,
.grid_be19,
.link-7f0a,
.breadcrumb-thick-b305,
.menu-4f29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .footer_paper_d893,
  .title-mini-4da6,
  .text_e642,
  .outer_be09,
  .layout_slow_4264,
  .active-fc87,
  .hidden_selected_a5e6,
  .grid_be19,
  .link-7f0a,
  .breadcrumb-thick-b305,
  .menu-4f29 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.grid_ea20,
.grid-dim-ffd7,
.inner_a3c7,
.overlay_thick_a10d,
.red-d5e8,
.bottom-5dda,
.input_7562,
.surface_ba48 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.sort-left-f908,
.feature-6f26,
.preview_c1bf {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.sort-left-f908 > *,
.feature-6f26 > *,
.preview_c1bf > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: ff48 */
.phantom-card-g9 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
