/* {$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;
}

.warm_70f3 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.alert-paper-3766 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .alert-paper-3766 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .alert-paper-3766 {
        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 */
.sort_f4d8 {
    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);
}

.prev-6fb6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .prev-6fb6 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dirty_9921 {
        grid-column: 1;
    }
    
    .copper_a40b {
        grid-column: 2;
    }
    
    .content_d781 {
        grid-column: 3;
    }
}

.dirty_9921 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dirty_9921:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tabs-slow-4553 {
    display: none;
}

@media (min-width: 1024px) {
    .tabs-slow-4553 {
        display: block;
    }
}

/* Grouped Navigation */
.tag-purple-53b5 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.narrow_5130 {
    position: relative;
}

.row_hovered_4649 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.narrow_5130 .medium-f07e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.medium-f07e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.paragraph_east_7e8d {
    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;
}

.paragraph_east_7e8d:hover,
.paragraph_east_7e8d.fn-active-010c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.modal_green_cdb2 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .modal_green_cdb2 {
        display: flex;
    }
}

/* Mobile Register Button */
.copper_a40b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .copper_a40b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.surface-582d {
    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;
}

.surface-582d::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.content_d781 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .content_d781 {
        display: none;
    }
}

.content_d781 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.content_d781.fn-active-010c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.content_d781.fn-active-010c span:nth-child(2) {
    opacity: 0;
}

.content_d781.fn-active-010c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.module-hot-abdd {
    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;
}

.module-hot-abdd.fn-active-010c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.left-bb04 {
    overflow: hidden;
}

.mask_055d {
    list-style: none;
    padding: 0.75rem 0;
}

.in_2aae {
    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;
}

.in_2aae:hover,
.in_2aae.fn-active-010c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.in_2aae.tall_b639 {
    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;
}

.in_2aae.tall_b639::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 */
.image_large_f712 {
    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;
}

.hard_2fc1 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.hard_2fc1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.feature_dynamic_762d {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.feature_dynamic_762d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.under-303b {
    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;
}

.under-303b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.secondary-small-bf03 {
    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;
}

.layout-2041 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.layout-2041:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.preview_hard_3019 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.preview_hard_3019:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.modal_in_e6ed {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.modal_in_e6ed: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);
}

.basic-838e {
    font-size: 1em;
    font-weight: 700;
}

.small_e08f {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.feature_solid_57bc {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.feature_solid_57bc::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;
}

.background-ed5c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .background-ed5c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.picture-stale-f9ab {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.video-52b0 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.box_narrow_4898 {
    margin-bottom: 2rem;
}

.thick_7f42 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .thick_7f42 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-7507 {
    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);
}

.brown_06ec {
    font-size: 1.5rem;
}

.highlight_left_4f0d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.tertiary_e468 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.easy_8263 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.easy_8263:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.copper_93b1 {
    text-align: center;
    margin-bottom: 3rem;
}

.label-351d {
    margin-bottom: 1rem;
}

.status_hot_fdd5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.preview-basic-5522 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .preview-basic-5522 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .preview-basic-5522.next-bf0c {
        direction: rtl;
    }
    
    .preview-basic-5522.next-bf0c > * {
        direction: ltr;
    }
}

.feature-slow-872c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.feature-slow-872c:first-child {
    margin-top: 0;
}

.text-ba7b {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.carousel_down_34c6 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel_down_34c6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.thumbnail-liquid-1722 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-liquid-1722 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim_a563 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm_f25b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.up-afb2 {
    list-style: none;
}

.up-afb2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.up-afb2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.old_22a9 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.card-1b39 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail_d23e {
    font-size: 2rem;
    flex-shrink: 0;
}

.last_ac48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.primary-easy-ef26 {
    margin: 2rem 0;
}

.active-plasma-2ee1 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.rough_96f7 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.item-4c9d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.caption_bottom_540f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.search_active_d0d8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_active_d0d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-6e4c {
    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);
}

.background-6e4c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-dark-7933 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.table-3d7e {
    font-size: 1.5rem;
}

.wrapper_fast_f154 {
    color: var(--accent-color);
    margin: 0;
}

.west-8b73 {
    list-style: none;
}

.west-8b73 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.west-8b73 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.thumbnail_7db1 {
    margin: 2rem 0;
}

.disabled_efcf {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.item_2dae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .item_2dae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_inner_628e {
    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);
}

.banner_f1fa {
    font-size: 1.25rem;
}

.picture_dde6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.focus_prev_df8f,
.breadcrumb_dirty_a8c7 {
    text-align: center;
    margin: 2rem 0;
}

.row-advanced-493b,
.widget_2ad8 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.tall-aaa9 {
    margin: 2rem 0;
    text-align: center;
}

.hard-3238 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hard-3238::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;
}

.gallery-current-610b {
    position: relative;
    z-index: 1;
}

.accordion_6358 {
    margin-bottom: 1rem;
}

.gallery-bc5c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.copper_af24 {
    margin-bottom: 3rem;
}

.overlay-north-6e9e {
    margin-top: 3rem;
}

.form_wood_5c19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .form_wood_5c19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_wood_5c19 .focused-7507 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.detail_61e6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.black_d6db {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.text-focused-979d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.nav_new_90c4 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .nav_new_90c4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav_new_90c4 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.pagination_dim_c249 {
    margin-bottom: 1rem;
}

.image_e9a5 img {
    margin-bottom: 1rem;
}

.media-c0fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-c89e {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.menu-slow-7829 {
    list-style: none;
}

.menu-slow-7829 li {
    margin-bottom: 0.5rem;
}

.menu-slow-7829 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.menu-slow-7829 a:hover {
    color: var(--accent-color);
}

.gallery-6def {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.link_yellow_d77a {
    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);
}

.link_yellow_d77a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tertiary-35c0 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tertiary-35c0 p {
    margin-bottom: 0.25rem;
}

.banner_red_17f2 {
    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) {
    .banner_red_17f2 {
        flex-direction: row;
    }
}

.inner-f797 {
    text-align: center;
}

@media (min-width: 768px) {
    .inner-f797 {
        text-align: left;
    }
}

.inner-f797 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip-02bd {
    font-size: 0.75rem !important;
}

.description-ec6b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.clean_9ac3 {
    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);
    }
}

.tertiary_d925 {
    animation: fadeInUp 0.6s ease-out;
}

.accordion_a4a4 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.paper_7a9d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paper_7a9d {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.east-8373 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east-8373 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-f3c2 {
    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);
}

.basic-f3c2 .detail_d23e {
    font-size: 1.25rem;
}

.basic-f3c2 .tag_244e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hero-red-7d5b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-red-7d5b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under-bc1e {
    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);
}

.under-bc1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-left-863c {
    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);
}

.bottom_88f7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.motion_0085 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-black-9675 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-north-d692 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort-north-d692 .last_ac48 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort-north-d692 .action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_a6ce {
    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);
}

.surface_fluid_82cc {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.surface_fluid_82cc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.surface_fluid_82cc img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.shade-eb9e {
    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);
}

.paragraph_cold_9b7a {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bright-afbf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bright-afbf label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bright-afbf input {
    padding: 1rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.bright-afbf input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.bright-afbf input::placeholder {
    color: var(--text-muted);
}

.main_east_0d16 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.advanced_d23b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.advanced_d23b input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.column_rough_1d03 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.column_rough_1d03:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.item_2dae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_2dae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_inner_628e {
    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);
}

.notification_inner_628e .banner_f1fa {
    font-size: 1.25rem;
}

.notification_inner_628e .picture_dde6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gallery_9e08 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow_2737 {
    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);
}

.yellow_2737 .detail_d23e {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow_2737 .last_ac48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.yellow_2737 .action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark_9337 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_first_4671 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo_first_4671 .search_gas_034c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo_first_4671 .icon_medium_bf49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-54bf {
    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);
}

.caption-dc90 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-dc90 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_down_c42f {
    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);
}

.preview_down_c42f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_363d {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gallery-focused-cbbd {
    flex: 1;
}

.sort_stale_7fd6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gradient-blue-c43b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.static_a15d {
    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);
}

.static_a15d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.chip-red-12da {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-red-12da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_1593 {
    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);
}

.notice_1593:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool_05c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion_56dd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.south_a351 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.static_ea1a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fixed_961b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow-8c76 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-huge-799c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar-huge-799c .sidebar_dark_1410 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-huge-799c .pagination-b697 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_911b {
    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);
}

.hover_3437 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_7514 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_7514 .detail_d23e {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_7514 .last_ac48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_7514 .action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered-a73c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered-a73c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static-75cd {
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--info-color);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.static-75cd:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.accent-30b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-30b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-west-7421 {
    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);
}

.gradient-west-7421:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header-d46f {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar_white_72ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rough_96f7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-42da {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.liquid-aba3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_04a4 {
    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);
}

.gold_04a4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.silver_4fa5 {
    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);
}

.wood-91b2 {
    flex: 1;
}

.dark-633c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.notice_cc91 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.thumbnail-bc68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_top_c2d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-dd06 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-dd06 .search_gas_034c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image-dd06 .icon_medium_bf49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_dirty_a8c7 {
    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);
}

.status_pro_24a2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_pro_24a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.texture-26ce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-26ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small-deaf {
    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);
}

.small-deaf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-958d {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_next_d612 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focus_current_ddc7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo-large-c06d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lite-6fe9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard_bd8f {
    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);
}

.tabs_9fd0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-c83b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-smooth-647a {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_3437 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_7514 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.input_7514 .last_ac48 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_7514 .action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_hovered_8799 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.aside-fc3c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-fc3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-fc3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-fixed-9bfc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort-fixed-9bfc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-old-ea09 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.status_7779 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.box_west_b448 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.texture-22ca {
    padding: 1.5rem;
}

.notice_hot_b3d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shade_pink_2430 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade_pink_2430 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;
}

.shade_pink_2430 li:last-child {
    border-bottom: none;
}

.shade_pink_2430 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.column-over-0b9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-over-0b9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-0ea8 {
    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);
}

.item-0ea8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion_bbcf {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_advanced_cae9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-fast-b0b6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.main-cbdf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort-static-0c88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-ed6a {
    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);
}

.pro-921c {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_a738 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert_b26f {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-c186 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.iron_35a0 {
    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);
}

.shadow_pro_9ce1 {
    text-align: center;
}

.small-0612 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old_6013 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.static-98dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-warm-e0d6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-warm-e0d6 .last_ac48 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent-warm-e0d6 .action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_5166 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old_5166 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old_5166 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_dark_48cf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.search_dark_48cf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_5d17 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-1792 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.last_ac48 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.outline_full_606c {
    padding: 1.5rem;
}

.action_a087 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accordion-under-e054 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-under-e054 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;
}

.accordion-under-e054 li:last-child {
    border-bottom: none;
}

.accordion-under-e054 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.basic_ac8f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.right_0577 {
    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);
}

.right_0577:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_3857 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_b7f1 {
    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);
}

.notice-left-863c {
    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;
}

.bottom_88f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion_0085 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft_5edc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_b916 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark-33b2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fresh-28b1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popup_pressed_9e20 {
    display: flex;
    gap: 1rem;
}

.popup_pressed_9e20 .wrapper-85b5 {
    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;
}

.active-5f00 {
    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);
}

.icon-easy-298e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.secondary-c2ac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-c2ac 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;
}

.secondary-c2ac li:last-child {
    border-bottom: none;
}

.secondary-c2ac li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.orange_9961 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .orange_9961 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .orange_9961 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_e16f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column_e16f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-2cd0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.next_5fe2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar_dark_1410 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.focus_1ac2 {
    font-size: 1rem;
}

.layout-lower-7521 {
    padding: 1.5rem;
}

.pagination-b697 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.info-dark-fb93 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.info-dark-fb93 .shadow_pro_9ce1 {
    text-align: center;
}

.info-dark-fb93 .old_6013 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-dark-fb93 .pro-5fcd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.easy-3fc8 {
    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);
}

.easy-3fc8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.article-red-6367 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-red-6367 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-756a {
    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);
}

.detail-756a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_c3b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze_f5bb {
    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);
}

.aside_short_94c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-2dc6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.yellow-eced {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_25bd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row_e316 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic-d64f {
    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);
}

.progress-4ef6 {
    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;
}

.progress-4ef6.overlay_27fe {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.progress-4ef6.fresh_d2d1 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.progress-4ef6.progress-solid-3483 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.progress-4ef6.hard_f65d {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.progress-4ef6.feature_6be3 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.last-e598 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next_4475 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-hot-4092 {
    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);
}

.carousel_83de {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dark_9337 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark_9337 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;
}

.dark_9337 li:last-child {
    border-bottom: none;
}

.dark_9337 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.huge-aad4 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .huge-aad4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .huge-aad4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide_f5c3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wide_f5c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_f5c3.dim-e155 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .wide_f5c3.dim-e155 {
        grid-column: span 3;
    }
}

.active-8747 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.wide_f5c3.dim-e155 .active-8747 {
    background: rgba(6, 182, 212, 0.1);
}

.sidebar_6c7f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.huge-bea9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.wide_f5c3.dim-e155 .huge-bea9 {
    color: var(--info-color);
}

.media_84b8 {
    padding: 1.5rem;
    text-align: center;
}

.border_west_82ba {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wide_f5c3.dim-e155 .border_west_82ba {
    color: var(--info-color);
}

.simple-09bc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.overlay-copper-d9e5 {
    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 */
.heading-next-7651 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-next-7651 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black_aee7 {
    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);
}

.black_aee7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_fresh_ff33 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow_2737 {
    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);
}

.banner_f1fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-dcf3 {
    flex: 1;
}

.disabled_efcf {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_thick_5b08 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_f0a4 {
    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);
}

.summary_4e01 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.disabled-c975 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.clean_9ac3 {
    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);
}

.overlay-f5a4 {
  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);
}

.overlay-f5a4 .shadow_pro_9ce1 {
    text-align: center;
}

.overlay-f5a4 .small-0612 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.overlay-f5a4 .old_6013 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.backdrop-ff1f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top_84d3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up-e8a5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media_paper_f42b {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_6744 {
    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);
}

.dropdown_8767 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold_50b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-purple-665d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget-purple-665d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .widget-purple-665d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small-0168 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.small-0168:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-cca8 {
    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);
}

.frame-narrow-1ba6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tertiary-4dda {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.accent-2216 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accent-2216.prev_35a8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.accent-2216.message-25e5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.accent-2216.card_under_b5b4 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gallery_tiny_0b11 {
    padding: 1.5rem;
    text-align: center;
}

.mini_5051 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.title_tiny_e0b9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title_tiny_e0b9 .hard_c596 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.slider_eea2 {
    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);
}

.slider_eea2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.carousel-3464 {
  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);
}

.primary-0717 {
    text-align: center;
}

.primary-0717 .small-0612 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.primary-0717 .old_6013 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.fixed_8e80 { text-align: center; }
.paragraph_small_802a { text-align: left; }
.surface-e7ba { text-align: right; }

.secondary_huge_fff9 { margin-bottom: 0; }
.popup_tall_5257 { margin-bottom: 0.5rem; }
.pagination-dark-20e3 { margin-bottom: 1rem; }
.solid-8769 { margin-bottom: 1.5rem; }
.image_94c4 { margin-bottom: 2rem; }

.basic-5085 { margin-top: 0; }
.summary-cold-1470 { margin-top: 0.5rem; }
.progress-7433 { margin-top: 1rem; }
.east_4723 { margin-top: 1.5rem; }
.banner-f55f { margin-top: 2rem; }

.fn-hidden-010c { display: none; }
.fn-visible-010c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .feature_solid_57bc {
        padding: 6rem 0 3rem;
    }
    
    .background-ed5c {
        text-align: center;
    }
    
    .preview-basic-5522 {
        text-align: center;
    }
    
    .thick_7f42 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .sort_f4d8,
    .module-hot-abdd,
    .hard-3238,
    .text-focused-979d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .feature_solid_57bc {
        background: none;
    }
}

/* Providers Section */
.card-under-88ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_22cb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_22cb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short_22cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_29d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_29d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-de65 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.west-2cb6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.under_ae5c {
    list-style: none;
    padding: 0;
}

.under_ae5c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.under_ae5c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.panel-bb18 {
    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);
}

.panel-bb18 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.info-in-1530 {
    padding: var(--section-padding);
}

.primary_liquid_77bf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_liquid_77bf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected-6c3a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.selected-6c3a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature_brown_1e24 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.easy_187f {
    display: flex;
    flex-direction: column;
}

.paragraph-9152 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.motion_2c0e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-bottom-a29d {
    color: var(--accent-color);
}

.popup_fixed_0d5f {
    font-size: 1.25rem;
}

.form-large-fef0 {
    margin-bottom: 1rem;
}

.form-large-fef0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.item_fea2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-blue-2730 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.shadow_pro_9ce1 {
    text-align: center;
}

.small-0612 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old_6013 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.gradient_fresh_3a12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite_1b98 {
    margin: 2rem 0;
}

.bright_9867 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.bright_9867 .detail_d23e {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-0037 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.label_d38b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.label_d38b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview_9de3 {
    font-size: 2rem;
}

.frame_6e09 {
    display: flex;
    flex-direction: column;
}

.paragraph-new-bba5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.thumbnail_dark_ddda {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.advanced_9abb {
    padding: var(--section-padding);
}

.right-6a73 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .right-6a73 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right-6a73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-1b10 {
    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);
}

.filter-1b10:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter-1b10 .small-0612 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.filter-1b10 .old_6013 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.filter-1b10 .breadcrumb_8bc0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.photo-f923 {
    margin-top: 4rem;
}

.middle-a5cb {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.image-dark-f3d7 {
    overflow-x: auto;
}

.upper-0e02 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.upper-0e02 thead {
    background: var(--accent-color);
}

.upper-0e02 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.upper-0e02 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-0e02 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.upper-0e02 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.main-78e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-3625 {
    max-width: 900px;
    margin: 0 auto;
}

.hover-pressed-08a1 {
    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);
}

.hover-pressed-08a1:hover {
    border-color: var(--accent-color);
}

.carousel_plasma_b863 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.carousel_plasma_b863 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.message-ba30 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hover-pressed-08a1.fn-active-010c .message-ba30 {
    transform: rotate(45deg);
}

.breadcrumb-right-d723 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hover-pressed-08a1.fn-active-010c .breadcrumb-right-d723 {
    max-height: 1000px;
}

.breadcrumb-right-d723 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.in-d9bb {
    padding: var(--section-padding);
}

.surface_fluid_82cc {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.hover-dark-3354 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-6444 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-6444 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_fixed_c41a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_1d8b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav-wood-0c79 {
    font-size: 2rem;
}

.sidebar-current-e28d {
    color: var(--text-white);
    margin: 0;
}

.pagination_stale_b826 {
    list-style: none;
    padding: 0;
}

.pagination_stale_b826 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination_stale_b826 li:last-child {
    border-bottom: none;
}

.gradient-f646 {
    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);
}

.gradient-f646 p {
    color: var(--success-color);
    margin: 0;
}

.alert-over-d4e2 {
    margin-top: 3rem;
}

.icon-easy-298e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.down_21e5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .down_21e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip-698a {
    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);
}

.active_5eb4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chip-698a p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.modal_mini_7022 {
    padding: var(--section-padding);
}

.text-c164 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-c164 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-175a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider-175a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.main_250d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.table-dynamic-eeaa {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tiny-a5c7 {
    flex: 1;
}

.left-375e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.grid_motion_01b3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.secondary_easy_447a {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_wood_4949 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline_wood_4949:last-child {
    border-bottom: none;
}

/* Comparison Section */
.red_339f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tag-81ee {
    padding: var(--section-padding);
}

.notification_deab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hard-227f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-227f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_down_d376 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale_beb7, .slider-smooth-4cab, .tag-01ea {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tag-01ea {
    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 */
.filter-medium-4ad2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-smooth-a279 {
    margin: 2rem 0;
}

.description-36cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-fluid-0816 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph-8d1d {
    list-style: none;
    padding: 0;
}

.paragraph-8d1d 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;
}

.paragraph-8d1d li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.paragraph-8d1d li:last-child {
    border-bottom: none;
}

.selected_a095 {
    text-align: center;
    margin-top: 2rem;
}

.smooth_67e1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.block-0abb {
    padding: var(--section-padding);
}

.in_cacf {
    margin: 2rem 0;
}

.focused-8fbd {
    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) {
    .focused-8fbd {
        flex-direction: column;
        align-items: flex-start;
    }
}

.focused-8fbd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.inner-4235 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hard_4d8f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.clean-b998 {
    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;
}

.fluid_19fd {
    flex: 1;
}

.wide_8798 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.top_68a0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.modal_motion_5445 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.west_b88b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .west_b88b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.column_purple_d188 {
    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);
}

.column_purple_d188:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.column_purple_d188 .small-0612 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column_purple_d188 .old_6013 {
    color: var(--text-gray);
    font-size: 1rem;
}

.block_narrow_c698 {
    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);
}

.tiny-b994 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.tiny-b994 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.complex_1a02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .complex_1a02 {
        grid-template-columns: 1fr 1fr;
    }
}

.full-2994 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-7328 {
    margin-bottom: 1.5rem;
}

.description-7328 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.description-7328 input,
.description-7328 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;
}

.description-7328 input:focus,
.description-7328 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.in_bee1 {
    width: 100%;
    margin-top: 1rem;
}

.label_first_e53d {
    display: flex;
    align-items: center;
}

.form_5d61 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.dynamic-dc12 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.outline_hovered_83fd {
    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;
}

.notice_6e81 {
    color: var(--text-gray);
}

.wrapper-stone-8452 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.slow_a4cd {
    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);
}

.slow_a4cd p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.pattern-f3d9 {
    margin-top: 3rem;
}

.background-4de9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.paper-a064 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_lite_3661 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.copper_0297 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copper_0297:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.pagination_red_77bc {
    padding: var(--section-padding);
}

.element_35df {
    margin: 2rem 0;
}

.footer-last-999d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cold_7053 {
    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;
}

.cold_7053:hover, .cold_7053.fn-active-010c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tabs_large_9bd7 {
    display: none;
}

.tabs_large_9bd7.fn-active-010c {
    display: block;
}

.article_08fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-4dc7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.active_7c8d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.active_7c8d ul {
    list-style: none;
    padding: 0;
}

.active_7c8d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.active_7c8d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.icon-5756 {
    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 */
.motion_6dc7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-clean-ae71 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-7f20 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.container-silver-f8b0 {
    color: var(--accent-color);
    margin: 0;
}

.shade-9ab3 {
    display: flex;
    gap: 1.5rem;
}

.liquid-1e7e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.surface_left_db6e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.widget_7619 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.widget_7619.dim_5d8d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.widget_7619.main-hard-5c55 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.widget_7619.hot_7e07 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.card_1970 {
    margin-top: 2rem;
}

.west_506c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-full-08d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .main-full-08d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-3353 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.pink-d9e8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.heading_pressed_1d19 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.carousel-lite-8b0d {
    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 */
.popup_short_32f0 {
    padding: var(--section-padding);
}

.disabled-b14a {
    margin: 2rem 0;
}

.hero_top_19c1 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.backdrop-3b87 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.hidden_6698 {
    list-style: none;
    padding: 0;
}

.hidden_6698 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;
}

.hidden_6698 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.hidden_6698 li:last-child {
    border-bottom: none;
}

.progress_short_3ce0 {
    margin: 2rem 0;
}

.liquid-aa8f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.modal_stone_d54a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal_stone_d54a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus_6317 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-84a6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.progress_over_e306 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.status_next_43f3 {
    margin-top: 2rem;
}

.sort_stale_7fd6 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.link_8139 {
    list-style: none;
    padding: 0;
}

.dropdown-8cde {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.dropdown-8cde a {
    color: var(--accent-color);
    text-decoration: none;
}

.dropdown-8cde a:hover {
    text-decoration: underline;
}

.icon-under-7692 {
    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 */
.container_3d4f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic-d02f {
    margin: 2rem 0;
}

.module-left-b61b {
    margin-bottom: 3rem;
}

.module-left-b61b .notification-fluid-0816 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.short_fe6d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.primary-yellow-d4a9 {
    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);
}

.primary-yellow-d4a9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.modal-e19a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .modal-e19a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-red-85c0 {
    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 */
.gradient-advanced-66e2 {
    padding: var(--section-padding);
}

.outline-paper-5603 {
    margin: 2rem 0;
}

.purple-da9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.info_pressed_88d4 {
    overflow-x: auto;
    margin: 2rem 0;
}

.focus-cd27 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.filter_cbb1 {
    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;
}

.soft_384f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.tag_7fd3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .tag_7fd3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.white-0445 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white-0445 .detail_d23e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.white-0445 .last_ac48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_short_84c3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.alert-7285 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar-ff41 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-ff41 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-white-5d06 {
    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;
}

.container-white-5d06:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.light-7fa0 {
    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);
}

.progress-hard-dc0c {
    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;
}

.middle-7819 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.static_694e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hero-smooth-f381 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.action-a54b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inner_c038 {
    color: var(--text-white);
    font-weight: 600;
}

.focus_brown_6c52 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.banner-bottom-5938 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-bottom-5938 .wrapper-85b5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.in_b0e8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .in_b0e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_1a61 {
    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);
}

.tooltip_1a61:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip_1a61 .small-0612 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip_1a61 .old_6013 {
    color: var(--text-gray);
    font-size: 1rem;
}

.right_ca43 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_04b4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.plasma_04b4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.lite-6fe9 {
    margin: 2rem 0;
}

.hard_bd8f {
    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);
}

.hard_bd8f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tabs_9fd0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.new-0534 {
    flex: 1;
}

.active-c83b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-smooth-647a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hover_3437 {
    margin: 2rem 0;
}

.input_7514 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input_7514 .last_ac48 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.input_7514 .action_a087 {
    color: var(--text-gray);
    margin: 0;
}

.hidden_hovered_8799 {
    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);
}

.hidden_hovered_8799 .row-advanced-493b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.aside_short_84c3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.silver_4fa5 {
    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;
}

.wood-91b2 {
    flex: 1;
}

.notice_cc91 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.thumbnail-bc68 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.notice-left-863c {
    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;
}

.label_3551 {
    flex: 1;
}

.bottom_88f7 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.motion_0085 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.dark-33b2 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.fresh-28b1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.popup_pressed_9e20 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.popup_pressed_9e20 .wrapper-85b5 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.active-5f00 {
    margin-top: 2rem;
}

.active-5f00 .icon-easy-298e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.card-pro-8bd5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron_35a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .iron_35a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron_35a0 .shadow_pro_9ce1 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static-98dc {
    margin: 2rem 0;
}

.accent-warm-e0d6 {
    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 */
.preview_dark_bd4e {
    padding: var(--section-padding);
}

.outline_full_606c {
    margin-top: 1rem;
}

.accordion-under-e054 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.accordion-under-e054 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.accordion-under-e054 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.wrapper-f7bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-out-5077 {
    margin: 2rem 0;
}

.disabled_hot_c2be {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.avatar_e309 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.item-b770 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.plasma-6869 {
    margin: 2rem 0;
}

.status-liquid-a684 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.status-liquid-a684 .notification-fluid-0816 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-195f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-195f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.backdrop-over-1f3b {
    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);
}

.short_717b {
    color: var(--text-white);
    font-weight: 600;
}

.layout-hard-17d6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.dim-758c {
    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);
}

.dim-758c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.panel-soft-17b6 {
    padding: var(--section-padding);
}

.thumbnail-1b37 {
    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;
}

.thumbnail-1b37:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.content-over-83fc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-over-83fc .active_5eb4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-over-83fc .active_c863 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hard-0929 {
    flex: 1;
}

.hard_b337 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copper-c0df {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper-c0df li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.copper-c0df li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.liquid-71d4 {
    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);
}

.liquid-71d4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.liquid-71d4 strong {
    color: var(--warning-color);
}

/* Slots Section */
.white_0ea0 {
    padding: var(--section-padding);
}

.fixed_961b {
    margin: 2rem 0;
}

/* Table Games Section */
.text-south-3138 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow-8c76 {
    margin: 2rem 0;
}

.sidebar-huge-799c {
    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);
}

.sidebar-huge-799c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sidebar-huge-799c .sidebar_dark_1410 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-huge-799c .pagination-b697 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.dim_911b {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.dim_911b .row-advanced-493b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.heading-71b6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright_d85a {
    margin: 2rem 0;
}

.red_de9a {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_87e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu-2542 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.copper-d860 {
    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);
}

.copper-d860:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.copper-d860.fn-active-010c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_3e68 {
    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);
}

.small-7f76 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small-7f76 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.panel_short_36ca {
    padding: var(--section-padding);
}

.current-f468 {
    margin: 2rem 0;
}

.list_18ab {
    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);
}

.list_18ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .list_18ab {
        flex-direction: column;
        align-items: flex-start;
    }
}

.paper_c961 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.container-71eb {
    flex: 1;
}

.surface_copper_07ff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.easy_25fe {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.button-0f55 {
    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;
}

.thick_0f55 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.short_183b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gold-cce6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accordion_6669 {
    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;
}

.accordion_6669:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.simple-7f61 {
    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);
}

.north-eee4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north-eee4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.chip_83e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_b098 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pressed_b098 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pressed_b098 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple-a450 {
    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;
}

.purple-a450:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.avatar_83b1 {
    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;
}

.action-68b6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.article-c4a2 {
    font-size: 2rem;
}

.border_medium_accc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.block-orange-8fae {
    flex: 1;
}

.gold_5380 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.hover-hard-aaa7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form_copper_ecb0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-ab4b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-gold-53f5 {
    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;
}

.west-0b3a {
    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;
}

.west-0b3a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.soft-752f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_71af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer_pressed_4758 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer_pressed_4758 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_ab48 {
    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);
}

.block_9540 {
    color: var(--text-white);
    font-weight: 600;
}

.primary-a0d0 {
    color: var(--accent-color);
    font-weight: 600;
}

.outer_bc66 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.outer_bc66 strong {
    color: var(--accent-color);
}

/* Security Section */
.outline_e2a5 {
    padding: var(--section-padding);
}

/* Benefits Section */
.soft-6129 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.gradient-simple-0248 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.form_3244 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block-cool-0b0f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.small_1da8 {
    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) {
    .small_1da8 {
        flex-direction: column;
        gap: 1rem;
    }
}

.small_1da8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.small_1da8 .notice-left-863c {
    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;
}

.small_1da8 .label_3551 {
    flex: 1;
}

.small_1da8 .bottom_88f7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.small_1da8 .motion_0085 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.label-2560 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-2560 .disabled_efcf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-2560 .gallery_9e08 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.label-2560 .gallery_9e08 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.label-2560 .gallery_9e08 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.breadcrumb_b51e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.sidebar-881b {
    padding: var(--section-padding);
}

.east-d4df {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .east-d4df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_up_fdc0 {
    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);
}

.pattern_up_fdc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.pattern_up_fdc0 .main_8ad6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_up_fdc0 .component_2a69 {
    flex: 1;
}

.pattern_up_fdc0 .search_gas_034c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern_up_fdc0 .mask_07a7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table-99ae {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-99ae .text_hard_45b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table-99ae .layout-e908 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.table-99ae .layout-e908 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);
}

.table-99ae .layout-e908 li:last-child {
    border-bottom: none;
}

.table-99ae .layout-e908 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;
}

.table-99ae .layout-e908 li strong {
    color: var(--text-white);
}

.badge-brown-5169 {
    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);
}

.badge-brown-5169 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.badge-brown-5169 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.next_1403 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid_stone_22a6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid_stone_22a6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-9bd8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header-9bd8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav_green_f77b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background-4290 {
    font-size: 2rem;
}

.input-8c8c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.input-e2c1 {
    flex: 1;
}

.focus-copper-f6dc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-copper-f6dc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus-copper-f6dc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.status-stale-7362 {
    margin-top: 3rem;
}

.hero_top_19c1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.backdrop-3b87 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_6698 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_6698 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hidden_6698 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hidden_6698 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.yellow_decb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink_c07e {
    margin: 2rem 0;
}

.list-9ff9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.list-9ff9 .notification-fluid-0816 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed-2126 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fixed-2126 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_new_06e5 {
    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);
}

.footer_new_06e5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.large-67f7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dark-07a3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.focus-north-0f8e {
    padding: var(--section-padding);
}

.up_57c3 {
    margin: 2rem 0;
}

.large-0fbc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .large-0fbc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .large-0fbc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_dcb5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.background_dcb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.south-cda0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.notice-clean-c350 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.module_new_b4b4 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.module_new_b4b4.tertiary-6979 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gold-76fa {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.active-d495 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.popup_a188 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper_883c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.rough_be5c {
    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);
}

.rough_be5c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.rough_be5c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.alert-orange-002f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-stone-4732 {
    margin: 2rem 0;
}

.grid_gold_d30e {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .grid_gold_d30e {
        flex-direction: column;
        gap: 1rem;
    }
}

.grid_gold_d30e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid_gold_d30e::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);
}

.east_372d {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hard_59b9 {
    flex: 1;
}

.slider_warm_31f4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb-863f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-863f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.down_46cc {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-883a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb_f7c6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .breadcrumb_f7c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_in_074c {
    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);
}

.column_a9d5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop_in_3713 {
    flex: 1;
}

.item-full-79de {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.thumbnail-copper-7a28 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dirty-1cf2 {
    margin-top: 2rem;
    text-align: center;
}

.primary_f42a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary_f42a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.article-red-6367 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-red-6367 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-756a {
    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);
}

.detail-756a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail-756a .motion_bbcf {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-756a .chip_advanced_cae9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.detail-756a .header-fast-b0b6 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.detail-756a .main-cbdf {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.photo_2c11 {
    padding: var(--section-padding);
}

.bronze_f5bb .input-steel-9f95 {
    flex: 1;
}

/* Promo Calendar Section */
.fixed_1dae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-dc4a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-dc4a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-8528 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-plasma-20ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.widget_full_0e7e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled_stale_4194 {
    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);
}

.hovered-ab5c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.first_a36d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tabs_2ead {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.tabs_2ead p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs_2ead strong {
    color: var(--accent-color);
}

/* Requirements Section */
.rough-28eb {
    padding: var(--section-padding);
}

.bright_5ba6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .bright_5ba6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link_under_8ae5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-cf1a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.silver-ee54 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver-ee54 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.button-fixed-7c4e {
    margin-top: 3rem;
}

.button-fixed-7c4e .hero_top_19c1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.button-fixed-7c4e .backdrop-3b87 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-fixed-7c4e .hidden_6698 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.button-fixed-7c4e .hidden_6698 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.button-fixed-7c4e .hidden_6698 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.button-fixed-7c4e .hidden_6698 li strong {
    color: var(--warning-color);
}

.article_0619 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article_0619 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.complex_5247 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_8d8b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_8d8b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_out_4bd5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_out_4bd5 .notification-fluid-0816 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.banner-577f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hovered-2a96 {
    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);
}

.hovered-2a96:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.feature_first_a53d {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_a65a {
    flex: 1;
}

.wrapper_stone_5a49 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.selected_326d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.up-7cab {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.frame_dc48 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.active-ea74 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .active-ea74 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pink-36d1 {
    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);
}

.pink-36d1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.iron-58bd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary-narrow-209f {
    color: var(--text-gray);
    font-size: 1rem;
}

.tiny-b994 {
    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);
}

.slow_b9e4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slow_b9e4 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.alert-paper-3766 { 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; }
.easy_8263, .carousel_down_34c6 { max-width:100%; height:auto; }

.image_large_f712, .under-303b, .secondary-small-bf03 { white-space:normal; }

.background-ed5c,
.preview-basic-5522,
.heading-next-7651,
.article-red-6367,
.hover_3437,
.widget-purple-665d {
  flex-wrap:wrap;
}

[class*="grid"],
.active-ea74,
.large-0fbc,
.form_wood_5c19 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.feature_solid_57bc img,
.preview-basic-5522 img,
.tertiary_e468 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.picture-stale-f9ab, .video-52b0,
.label-351d, .status_hot_fdd5 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.image-dark-f3d7 { width:100%; overflow-x:auto; }
.image-dark-f3d7 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.short_22cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .short_22cb {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.footer_29d3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.right-6a73,
.element_f2aa,
.pagination-fbf4,
.paper-7741,
.west_b88b,
.active-ea74,
.large-0fbc,
.form_wood_5c19,
.carousel-3464,
.current-f468,
.short_22cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .right-6a73,
  .element_f2aa,
  .pagination-fbf4,
  .paper-7741,
  .west_b88b,
  .active-ea74,
  .large-0fbc,
  .form_wood_5c19,
  .carousel-3464,
  .current-f468,
  .short_22cb {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.filter-1b10,
.column_purple_d188,
.pink-36d1,
.focused-7507,
.background_dcb5,
.primary-0717,
.list_18ab,
.footer_29d3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.solid_6fd4,
.image_382c,
.dropdown_action_5042 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.solid_6fd4 > *,
.image_382c > *,
.dropdown_action_5042 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 58df */
.shadow-element-o9 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
