/* {$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;
}

.video-dynamic-cef1 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.right-2088 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .right-2088 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .right-2088 {
        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 */
.short-f409 {
    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);
}

.plasma_6e24 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .plasma_6e24 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .overlay-clean-d47e {
        grid-column: 1;
    }
    
    .video_clean_8e94 {
        grid-column: 2;
    }
    
    .stone-2eac {
        grid-column: 3;
    }
}

.overlay-clean-d47e img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.overlay-clean-d47e:hover img {
    transform: scale(1.05);
}

/* Navigation */
.progress_d106 {
    display: none;
}

@media (min-width: 1024px) {
    .progress_d106 {
        display: block;
    }
}

/* Grouped Navigation */
.notification-0a64 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.alert-388b {
    position: relative;
}

.mini_1839 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.alert-388b .filter_7288 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.filter_7288 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.stale_f806 {
    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;
}

.stale_f806:hover,
.stale_f806.fn-active-1871 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.white-956f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .white-956f {
        display: flex;
    }
}

/* Mobile Register Button */
.video_clean_8e94 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .video_clean_8e94 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.rough_117f {
    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;
}

.rough_117f::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 */
.stone-2eac {
    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) {
    .stone-2eac {
        display: none;
    }
}

.stone-2eac span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.stone-2eac.fn-active-1871 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.stone-2eac.fn-active-1871 span:nth-child(2) {
    opacity: 0;
}

.stone-2eac.fn-active-1871 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.pattern_left_8d29 {
    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;
}

.pattern_left_8d29.fn-active-1871 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.pattern-smooth-1359 {
    overflow: hidden;
}

.warm-7fae {
    list-style: none;
    padding: 0.75rem 0;
}

.detail_down_3479 {
    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;
}

.detail_down_3479:hover,
.detail_down_3479.fn-active-1871 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.detail_down_3479.hover_6b83 {
    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;
}

.detail_down_3479.hover_6b83::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 */
.fluid-bdbb {
    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;
}

.highlight-0978 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.highlight-0978:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.iron_8da6 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.iron_8da6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hot-c06d {
    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;
}

.hot-c06d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.over_4819 {
    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;
}

.old_946d {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.old_946d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.element_38ea {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.element_38ea:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.sidebar-wide-2232 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.sidebar-wide-2232: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);
}

.filter-static-622b {
    font-size: 1em;
    font-weight: 700;
}

.lower_e4e5 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.label_lite_2edf {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.label_lite_2edf::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;
}

.item-0212 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item-0212 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.filter_huge_1381 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tooltip-790d {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.focus_lite_ced4 {
    margin-bottom: 2rem;
}

.active_wide_4ae0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .active_wide_4ae0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-b46d {
    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);
}

.yellow-548b {
    font-size: 1.5rem;
}

.secondary_f6a1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wide_8f5f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture_c03b {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.picture_c03b:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.border-paper-8a7b {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-7d49 {
    margin-bottom: 1rem;
}

.first_f67c {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.liquid-ab9e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .liquid-ab9e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .liquid-ab9e.caption-7152 {
        direction: rtl;
    }
    
    .liquid-ab9e.caption-7152 > * {
        direction: ltr;
    }
}

.article_99d9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.article_99d9:first-child {
    margin-top: 0;
}

.main-3aeb {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.search_tall_3877 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.search_tall_3877:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.panel_2850 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_2850 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.over-ecd0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_upper_5e3c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.glass-f5f1 {
    list-style: none;
}

.glass-f5f1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-f5f1 li:last-child {
    border-bottom: none;
}

/* Games Features */
.list_b9ee {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.middle_c490 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-white-4de1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout-d72a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.border_32bd {
    margin: 2rem 0;
}

.nav_stale_8d76 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.highlight-f0e5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.text-49e5 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.brown_0147 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.copper_98b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .copper_98b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar_fixed_234e {
    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);
}

.sidebar_fixed_234e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.medium-c0ca {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pagination-aa01 {
    font-size: 1.5rem;
}

.border-b877 {
    color: var(--accent-color);
    margin: 0;
}

.focused-ba1d {
    list-style: none;
}

.focused-ba1d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.focused-ba1d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.focused-0f75 {
    margin: 2rem 0;
}

.modal-5460 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.rough_fbce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .rough_fbce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_selected_8bae {
    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);
}

.hot-eb07 {
    font-size: 1.25rem;
}

.preview-white-2a96 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.container-ac51,
.pro_2bf4 {
    text-align: center;
    margin: 2rem 0;
}

.plasma_4653,
.tabs-paper-1210 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.soft-6ab5 {
    margin: 2rem 0;
    text-align: center;
}

.background_small_cb16 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.background_small_cb16::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;
}

.layout_f746 {
    position: relative;
    z-index: 1;
}

.breadcrumb_eabe {
    margin-bottom: 1rem;
}

.dark_dbe0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nav_63c2 {
    margin-bottom: 3rem;
}

.main-dd75 {
    margin-top: 3rem;
}

.gallery_1891 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery_1891 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_1891 .heading-b46d {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.easy-22db {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_mini_bf96 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.summary_f705 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hidden_917c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hidden_917c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden_917c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.hero_1d94 {
    margin-bottom: 1rem;
}

.slider_8c08 img {
    margin-bottom: 1rem;
}

.button-62e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_cf01 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.table-paper-b26a {
    list-style: none;
}

.table-paper-b26a li {
    margin-bottom: 0.5rem;
}

.table-paper-b26a a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.table-paper-b26a a:hover {
    color: var(--accent-color);
}

.wrapper_wood_b94f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.heading-dfbd {
    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);
}

.heading-dfbd:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.container_smooth_a69a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.container_smooth_a69a p {
    margin-bottom: 0.25rem;
}

.progress_solid_b5b3 {
    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) {
    .progress_solid_b5b3 {
        flex-direction: row;
    }
}

.short-2f9c {
    text-align: center;
}

@media (min-width: 768px) {
    .short-2f9c {
        text-align: left;
    }
}

.short-2f9c p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.table-lite-b22d {
    font-size: 0.75rem !important;
}

.highlight_61d6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.picture-current-f932 {
    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);
    }
}

.form-focused-12f2 {
    animation: fadeInUp 0.6s ease-out;
}

.main_1b09 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.mini-6038 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini-6038 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.fast-bc65 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast-bc65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-b525 {
    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);
}

.liquid-b525 .form-white-4de1 {
    font-size: 1.25rem;
}

.liquid-b525 .tabs_ed86 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.outline_wood_ac57 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline_wood_ac57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-purple-4cf6 {
    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);
}

.content-purple-4cf6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_f488 {
    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);
}

.medium-abba {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.picture-23f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow-9f07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_purple_a26a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary_purple_a26a .layout-d72a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary_purple_a26a .left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium-9eed {
    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);
}

.bronze-8886 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.bronze-8886 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.bronze-8886 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.media-top-df8a {
    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);
}

.main-basic-7767 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hidden_wood_db32 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hidden_wood_db32 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hidden_wood_db32 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);
}

.hidden_wood_db32 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hidden_wood_db32 input::placeholder {
    color: var(--text-muted);
}

.inner_40df {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.shade-wood-7553 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.shade-wood-7553 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.shade-c2a2 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.shade-c2a2:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.rough_fbce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough_fbce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_selected_8bae {
    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);
}

.shadow_selected_8bae .hot-eb07 {
    font-size: 1.25rem;
}

.shadow_selected_8bae .preview-white-2a96 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.item-blue-008d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-d8bf {
    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);
}

.photo-d8bf .form-white-4de1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-d8bf .layout-d72a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.photo-d8bf .left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-c853 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over_da6d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.over_da6d .simple_d2b7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.over_da6d .video_focused_2ffb {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-8175 {
    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);
}

.photo-d7a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo-d7a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-dbd8 {
    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);
}

.item-dbd8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent-slow-1adc {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.title_a2df {
    flex: 1;
}

.module-east-2425 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.fluid-1886 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.summary_bright_87b3 {
    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);
}

.summary_bright_87b3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.wrapper_7d2c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_7d2c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-thick-50f0 {
    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);
}

.main-thick-50f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow_78de {
    font-size: 2rem;
    flex-shrink: 0;
}

.input-c3ea {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description_yellow_8d49 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.menu-active-cf33 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip_6001 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_9121 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_41fe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery_41fe .hero-dirty-5d12 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_41fe .focused_afbe {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_center_225f {
    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);
}

.black-fc1a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-short-62b4 {
    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);
}

.card-short-62b4 .form-white-4de1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-short-62b4 .layout-d72a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-short-62b4 .left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-f27f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-f27f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hot-0552 {
    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);
}

.hot-0552:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.button_middle_8f4c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_middle_8f4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_7127 {
    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);
}

.yellow_7127:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out-492a {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy-8c1a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-f0e5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.narrow_2566 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shade_a3f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_3364 {
    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);
}

.tertiary_3364:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-82cf {
    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);
}

.shade_a1a2 {
    flex: 1;
}

.accordion_last_d57e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.row_selected_1d7b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hover-fd91 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma_fdae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green_09e9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_09e9 .simple_d2b7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.green_09e9 .video_focused_2ffb {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro_2bf4 {
    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);
}

.primary_soft_4fcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_soft_4fcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.progress_be3a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_be3a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_stone_46b4 {
    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);
}

.alert_stone_46b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_a7cb {
    font-size: 2rem;
    flex-shrink: 0;
}

.static-0678 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-dark-92c4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.icon_216c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item_2022 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-6cc0 {
    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);
}

.tall-2d3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_b182 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview-stone-3507 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-fc1a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-short-62b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-short-62b4 .layout-d72a {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card-short-62b4 .left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-copper-06ff {
    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);
}

.texture_thick_86a2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture_thick_86a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture_thick_86a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-b339 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notice-b339:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_fee6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tiny-fb8d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.layout-a5a3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.status_clean_d8e2 {
    padding: 1.5rem;
}

.yellow-5e62 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.grid_2f22 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_2f22 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;
}

.grid_2f22 li:last-child {
    border-bottom: none;
}

.grid_2f22 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.module-middle-a352 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-middle-a352 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-0408 {
    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);
}

.prev-0408:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-warm-d59d {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool-934f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active-right-8acf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.panel_c1a9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery_cf30 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy_1ac0 {
    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);
}

.thumbnail_1ec8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-62d3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.purple_2082 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-blue-5fbd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.steel-d685 {
    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);
}

.light_ac34 {
    text-align: center;
}

.glass-d5da {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block-hard-0802 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification_inner_2d47 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_e340 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_e340 .layout-d72a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slider_e340 .left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_green_6628 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary_green_6628 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_green_6628 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-cbd8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.description-cbd8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget_active_cad3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.link_dynamic_0a73 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.layout-d72a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.list_hot_86bf {
    padding: 1.5rem;
}

.left_8483 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-fast-9a3c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-fast-9a3c 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;
}

.hero-fast-9a3c li:last-child {
    border-bottom: none;
}

.hero-fast-9a3c li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.medium-2dd1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.frame_pressed_e442 {
    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);
}

.frame_pressed_e442:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall-6b10 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-ef7c {
    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);
}

.sidebar_f488 {
    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;
}

.medium-abba {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture-23f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-1162 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header_720a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.yellow_6bc8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel_b2d3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.summary-light-a2bf {
    display: flex;
    gap: 1rem;
}

.summary-light-a2bf .in-7dbd {
    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;
}

.status_2af5 {
    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);
}

.purple_2d21 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner-1304 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-1304 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;
}

.banner-1304 li:last-child {
    border-bottom: none;
}

.banner-1304 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.text_bronze_ff43 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .text_bronze_ff43 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .text_bronze_ff43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-center-5734 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge-center-5734:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_north_439b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mini_7bd0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-dirty-5d12 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.large-6f03 {
    font-size: 1rem;
}

.black-67aa {
    padding: 1.5rem;
}

.focused_afbe {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.background_green_9ae7 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.background_green_9ae7 .light_ac34 {
    text-align: center;
}

.background_green_9ae7 .block-hard-0802 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.background_green_9ae7 .secondary_pink_f676 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.bright-4ead {
    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);
}

.bright-4ead:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.primary-hovered-2e90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-hovered-2e90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-ec5f {
    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);
}

.text-ec5f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight_next_8bf3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short_183c {
    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);
}

.notification-gold-0eb3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.full_5765 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification-322b {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-3f98 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.picture-6a58 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_prev_3031 {
    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);
}

.pattern-9882 {
    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;
}

.pattern-9882.backdrop_e0c4 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.pattern-9882.tertiary_short_b93a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.pattern-9882.hidden_mini_8794 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.pattern-9882.secondary-9dbf {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.pattern-9882.image_narrow_f968 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.breadcrumb-left-5897 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.south-7933 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-glass-209e {
    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);
}

.hidden_hot_2748 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.chip-c853 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-c853 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.chip-c853 li:last-child {
    border-bottom: none;
}

.chip-c853 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.main_78fe {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .main_78fe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main_78fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-b312 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery-b312:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-b312.clean_ba25 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .gallery-b312.clean_ba25 {
        grid-column: span 3;
    }
}

.footer-stone-8a8d {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.gallery-b312.clean_ba25 .footer-stone-8a8d {
    background: rgba(6, 182, 212, 0.1);
}

.static-6f11 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero_acfd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.gallery-b312.clean_ba25 .hero_acfd {
    color: var(--info-color);
}

.bronze-3d23 {
    padding: 1.5rem;
    text-align: center;
}

.gradient_narrow_2e98 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gallery-b312.clean_ba25 .gradient_narrow_2e98 {
    color: var(--info-color);
}

.avatar-30be {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dropdown-silver-fe47 {
    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 */
.thumbnail_fluid_c5cd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_fluid_c5cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-9076 {
    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);
}

.modal-9076:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav-full-2428 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-d8bf {
    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);
}

.hot-eb07 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-in-c7f9 {
    flex: 1;
}

.modal-5460 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.black-1b1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-outer-4c3f {
    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);
}

.right_9e8e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gradient-6003 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.picture-current-f932 {
    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);
}

.accent-up-6888 {
  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);
}

.accent-up-6888 .light_ac34 {
    text-align: center;
}

.accent-up-6888 .glass-d5da {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.accent-up-6888 .block-hard-0802 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box_hard_307f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box_solid_4ee2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_969c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.static_3af2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_2520 {
    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);
}

.red_2627 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.complex-0bf6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_958f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .module_958f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_958f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-5369 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.next-5369:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.east_aef5 {
    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);
}

.block-fixed-93cb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover-e659 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.huge-f076 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.huge-f076.gradient-9994 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.huge-f076.item-out-3bef {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.huge-f076.tertiary_58ac {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.block_last_c3c1 {
    padding: 1.5rem;
    text-align: center;
}

.pro_18ca {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sidebar-652b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-652b .selected-259b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.box-current-1711 {
    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);
}

.box-current-1711:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header_upper_0667 {
  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);
}

.label_top_c09f {
    text-align: center;
}

.label_top_c09f .glass-d5da {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.label_top_c09f .block-hard-0802 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.progress-7783 { text-align: center; }
.light_165e { text-align: left; }
.fluid-2002 { text-align: right; }

.icon-motion-8700 { margin-bottom: 0; }
.in-79ae { margin-bottom: 0.5rem; }
.frame-77ee { margin-bottom: 1rem; }
.content_complex_b7ca { margin-bottom: 1.5rem; }
.dim_c8c6 { margin-bottom: 2rem; }

.accordion_right_45f9 { margin-top: 0; }
.filter-d89e { margin-top: 0.5rem; }
.medium-abcb { margin-top: 1rem; }
.popup-upper-ea3f { margin-top: 1.5rem; }
.highlight_fc18 { margin-top: 2rem; }

.fn-hidden-1871 { display: none; }
.fn-visible-1871 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .label_lite_2edf {
        padding: 6rem 0 3rem;
    }
    
    .item-0212 {
        text-align: center;
    }
    
    .liquid-ab9e {
        text-align: center;
    }
    
    .active_wide_4ae0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .short-f409,
    .pattern_left_8d29,
    .background_small_cb16,
    .summary_f705 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .label_lite_2edf {
        background: none;
    }
}

/* Providers Section */
.focus-e18e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_132f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_132f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover_132f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_cea2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button_cea2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fresh_334d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mini_c551 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge_536e {
    list-style: none;
    padding: 0;
}

.badge_536e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.badge_536e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.primary_eb27 {
    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);
}

.primary_eb27 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.chip_b301 {
    padding: var(--section-padding);
}

.outer_28e0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_28e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite-06cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.lite-06cb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.wide_1b18 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.badge-ba1c {
    display: flex;
    flex-direction: column;
}

.highlight_selected_60d8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.media-smooth-257a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.under-d78f {
    color: var(--accent-color);
}

.top-ce62 {
    font-size: 1.25rem;
}

.small_5fd9 {
    margin-bottom: 1rem;
}

.small_5fd9 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.accent-stale-d5d9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.motion-4650 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.light_ac34 {
    text-align: center;
}

.glass-d5da {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block-hard-0802 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.content-7661 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_advanced_0bdf {
    margin: 2rem 0;
}

.bright-70fc {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.bright-70fc .form-white-4de1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter-hot-0a65 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.heading-north-c768 {
    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;
}

.heading-north-c768:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dirty-13cf {
    font-size: 2rem;
}

.layout_2ae0 {
    display: flex;
    flex-direction: column;
}

.mask-114b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.widget-pressed-8f75 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.column-0562 {
    padding: var(--section-padding);
}

.pagination-6ffd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination-6ffd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pagination-6ffd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_43e3 {
    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);
}

.gold_43e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold_43e3 .glass-d5da {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.gold_43e3 .block-hard-0802 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.gold_43e3 .in-1892 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.north_3812 {
    margin-top: 4rem;
}

.in-7ee7 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.paper-2fb4 {
    overflow-x: auto;
}

.liquid-ccf5 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.liquid-ccf5 thead {
    background: var(--accent-color);
}

.liquid-ccf5 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.liquid-ccf5 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-ccf5 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.liquid-ccf5 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.over_f7e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-8a14 {
    max-width: 900px;
    margin: 0 auto;
}

.preview-smooth-2905 {
    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);
}

.preview-smooth-2905:hover {
    border-color: var(--accent-color);
}

.accordion_gold_2e32 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.accordion_gold_2e32 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.aside-2c0b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.preview-smooth-2905.fn-active-1871 .aside-2c0b {
    transform: rotate(45deg);
}

.mask_paper_81a1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.preview-smooth-2905.fn-active-1871 .mask_paper_81a1 {
    max-height: 1000px;
}

.mask_paper_81a1 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.highlight-f8a3 {
    padding: var(--section-padding);
}

.bronze-8886 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.slider_east_278f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_d461 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_d461 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bronze-1ad2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-6cc3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shadow_6d01 {
    font-size: 2rem;
}

.bronze_af7e {
    color: var(--text-white);
    margin: 0;
}

.surface-complex-fb5b {
    list-style: none;
    padding: 0;
}

.surface-complex-fb5b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.surface-complex-fb5b li:last-child {
    border-bottom: none;
}

.copper_a082 {
    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);
}

.copper_a082 p {
    color: var(--success-color);
    margin: 0;
}

.article_3dbb {
    margin-top: 3rem;
}

.purple_2d21 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pagination-a12e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination-a12e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper_medium_d15c {
    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);
}

.liquid-231b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wrapper_medium_d15c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.fast-4036 {
    padding: var(--section-padding);
}

.description_up_24b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_up_24b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left-7011 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.left-7011:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.banner-motion-5c0a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tabs_b199 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.component-33b2 {
    flex: 1;
}

.message-26c3 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.column-advanced-9184 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.section_gold_6f0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze_0183 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bronze_0183:last-child {
    border-bottom: none;
}

/* Comparison Section */
.description-d005 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.label_huge_c0c5 {
    padding: var(--section-padding);
}

.main-old-aadc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.input-short-f966 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-short-f966 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_2547 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-a655, .grid-hard-cdb5, .silver_9789 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.silver_9789 {
    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 */
.clean-6160 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_8a52 {
    margin: 2rem 0;
}

.label_a5a5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_d1d3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.backdrop-wide-edba {
    list-style: none;
    padding: 0;
}

.backdrop-wide-edba 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;
}

.backdrop-wide-edba li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.backdrop-wide-edba li:last-child {
    border-bottom: none;
}

.card_copper_a494 {
    text-align: center;
    margin-top: 2rem;
}

.sort_9913 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.content-3247 {
    padding: var(--section-padding);
}

.progress-7d47 {
    margin: 2rem 0;
}

.row-over-635d {
    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) {
    .row-over-635d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.row-over-635d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.mini-b133 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.badge-7165 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.up-1043 {
    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;
}

.steel-f31e {
    flex: 1;
}

.sort_action_f62c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hidden-21dd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gradient-75f1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.popup_gold_72f2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .popup_gold_72f2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.photo_orange_f877 {
    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);
}

.photo_orange_f877:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_orange_f877 .glass-d5da {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo_orange_f877 .block-hard-0802 {
    color: var(--text-gray);
    font-size: 1rem;
}

.narrow_0d65 {
    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);
}

.input-orange-02d8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.input-orange-02d8 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.row-tiny-0d78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .row-tiny-0d78 {
        grid-template-columns: 1fr 1fr;
    }
}

.advanced-d124 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-777c {
    margin-bottom: 1.5rem;
}

.hidden-777c label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hidden-777c input,
.hidden-777c 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;
}

.hidden-777c input:focus,
.hidden-777c select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hard_fd22 {
    width: 100%;
    margin-top: 1rem;
}

.pattern_b873 {
    display: flex;
    align-items: center;
}

.banner-dark-72d0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.soft-4635 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.grid-7fb7 {
    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;
}

.fixed-7daa {
    color: var(--text-gray);
}

.content_7a9e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.notification-0541 {
    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);
}

.notification-0541 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.header-41f1 {
    margin-top: 3rem;
}

.alert_2100 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.wrapper_c38a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-last-ec2f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.carousel-6f8c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-6f8c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.link-2226 {
    padding: var(--section-padding);
}

.surface-346d {
    margin: 2rem 0;
}

.logo-east-d9fa {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.narrow-bdc2 {
    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;
}

.narrow-bdc2:hover, .narrow-bdc2.fn-active-1871 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.outer_f92c {
    display: none;
}

.outer_f92c.fn-active-1871 {
    display: block;
}

.component_9b76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale-b40f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_fluid_148f h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.sort_fluid_148f ul {
    list-style: none;
    padding: 0;
}

.sort_fluid_148f ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.sort_fluid_148f ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tooltip_stale_74ec {
    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 */
.picture-bronze-62e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north-822e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-fresh-0af3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-next-d9e1 {
    color: var(--accent-color);
    margin: 0;
}

.search-3fdb {
    display: flex;
    gap: 1.5rem;
}

.media-8390 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.secondary-4671 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.picture-fixed-1a3b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.picture-fixed-1a3b.photo_91e1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.picture-fixed-1a3b.hovered-7b69 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.picture-fixed-1a3b.under-8607 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tag_09d5 {
    margin-top: 2rem;
}

.dim-7d5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.article_1925 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .article_1925 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.middle_c796 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.banner_black_5813 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.layout-south-bc6d {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.element_bf95 {
    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 */
.element_left_2c26 {
    padding: var(--section-padding);
}

.slider_narrow_a8bf {
    margin: 2rem 0;
}

.menu_pressed_593a {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.stale_c4ed {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.gradient-cool-e0ac {
    list-style: none;
    padding: 0;
}

.gradient-cool-e0ac 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;
}

.gradient-cool-e0ac li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.gradient-cool-e0ac li:last-child {
    border-bottom: none;
}

.dim_85be {
    margin: 2rem 0;
}

.stale-5ad2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wrapper-last-bc5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper-last-bc5d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.old-c9e0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow_5e95 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_old_b5de {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.stale-a632 {
    margin-top: 2rem;
}

.module-east-2425 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.short-007f {
    list-style: none;
    padding: 0;
}

.detail_wide_d393 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.detail_wide_d393 a {
    color: var(--accent-color);
    text-decoration: none;
}

.detail_wide_d393 a:hover {
    text-decoration: underline;
}

.basic-8c45 {
    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 */
.gallery-3e75 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_880e {
    margin: 2rem 0;
}

.photo-narrow-ead2 {
    margin-bottom: 3rem;
}

.photo-narrow-ead2 .out_d1d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.east_d334 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sidebar-stale-b4a1 {
    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);
}

.sidebar-stale-b4a1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.description_8df9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .description_8df9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-under-fad4 {
    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 */
.detail-efd7 {
    padding: var(--section-padding);
}

.tiny-b492 {
    margin: 2rem 0;
}

.slider-red-da3b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thumbnail_8e6a {
    overflow-x: auto;
    margin: 2rem 0;
}

.primary_fluid_08ca {
    background: rgba(6, 182, 212, 0.1) !important;
}

.hero_c68e {
    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;
}

.last_4c99 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hover_07f7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hover_07f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_dcc2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_dcc2 .form-white-4de1 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.layout_dcc2 .layout-d72a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-action-8338 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.lite-09a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-c517 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-c517 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas-868d {
    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;
}

.gas-868d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tertiary_first_6c51 {
    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);
}

.tertiary_f31f {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.up-bf64 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.clean_24cf {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.popup_ac3c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.progress_wide_9503 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_tall_17df {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper-dd61 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.yellow-8bbf {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yellow-8bbf .in-7dbd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.progress-540e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .progress-540e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-cc7d {
    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);
}

.iron-cc7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.iron-cc7d .glass-d5da {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.iron-cc7d .block-hard-0802 {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture_new_a394 {
    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);
}

.disabled_warm_ab77 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.disabled_warm_ab77 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.item_2022 {
    margin: 2rem 0;
}

.tag-6cc0 {
    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);
}

.tag-6cc0:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tall-2d3e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.heading-b2cb {
    flex: 1;
}

.hard_b182 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview-stone-3507 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.black-fc1a {
    margin: 2rem 0;
}

.card-short-62b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-short-62b4 .layout-d72a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.card-short-62b4 .left_8483 {
    color: var(--text-gray);
    margin: 0;
}

.sort-copper-06ff {
    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);
}

.sort-copper-06ff .plasma_4653 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.image-action-8338 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.sort-82cf {
    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;
}

.shade_a1a2 {
    flex: 1;
}

.row_selected_1d7b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hover-fd91 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.sidebar_f488 {
    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;
}

.wood-43ff {
    flex: 1;
}

.medium-abba {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.picture-23f2 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.yellow_6bc8 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.steel_b2d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.summary-light-a2bf {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.summary-light-a2bf .in-7dbd {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.status_2af5 {
    margin-top: 2rem;
}

.status_2af5 .purple_2d21 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.smooth_717e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-d685 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .steel-d685 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel-d685 .light_ac34 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_inner_2d47 {
    margin: 2rem 0;
}

.slider_e340 {
    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 */
.solid-f8cc {
    padding: var(--section-padding);
}

.list_hot_86bf {
    margin-top: 1rem;
}

.hero-fast-9a3c {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hero-fast-9a3c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hero-fast-9a3c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.red_06fd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_474f {
    margin: 2rem 0;
}

.progress-d537 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.modal-gas-2026 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.row-b4ef {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.overlay_thick_235a {
    margin: 2rem 0;
}

.layout_d79e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.layout_d79e .out_d1d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-cb66 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sort-cb66 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slow-6fb9 {
    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);
}

.mini_28f5 {
    color: var(--text-white);
    font-weight: 600;
}

.photo-pink-b45d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.soft-e6d0 {
    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);
}

.soft-e6d0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.south-d9e2 {
    padding: var(--section-padding);
}

.overlay_rough_09d0 {
    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;
}

.overlay_rough_09d0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.steel_ac4a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steel_ac4a .liquid-231b {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel_ac4a .panel-a3ab {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pattern_bfbd {
    flex: 1;
}

.content-88ed {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.box-simple-2484 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-simple-2484 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.box-simple-2484 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gallery_cb02 {
    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);
}

.gallery_cb02 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery_cb02 strong {
    color: var(--warning-color);
}

/* Slots Section */
.dirty_782b {
    padding: var(--section-padding);
}

.tooltip_6001 {
    margin: 2rem 0;
}

/* Table Games Section */
.description-green-3c85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_9121 {
    margin: 2rem 0;
}

.gallery_41fe {
    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);
}

.gallery_41fe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gallery_41fe .hero-dirty-5d12 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_41fe .focused_afbe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.element_center_225f {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.element_center_225f .plasma_4653 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.silver_654a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid_330e {
    margin: 2rem 0;
}

.fixed_8eef {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_c461 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.east-ee5b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary_hot_849d {
    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);
}

.summary_hot_849d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.summary_hot_849d.fn-active-1871 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_dark_e423 {
    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);
}

.search_357c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_357c strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.highlight-iron-2793 {
    padding: var(--section-padding);
}

.paragraph_black_af27 {
    margin: 2rem 0;
}

.alert_c09d {
    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);
}

.alert_c09d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .alert_c09d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.status-c1a0 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.outline-9f6b {
    flex: 1;
}

.first_1203 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-6e26 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.small_02fe {
    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;
}

.overlay_lite_0d8f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.yellow_d9e8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.menu-south-119f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_94d7 {
    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;
}

.card_94d7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.outline_96f7 {
    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);
}

.dirty-6cc1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dirty-6cc1 strong {
    color: var(--accent-color);
}

/* New Games Section */
.module-e472 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-1c28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .steel-1c28 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steel-1c28 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_7b50 {
    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;
}

.tabs_7b50:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider_373d {
    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;
}

.image-lower-8ea6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.disabled_active_7e79 {
    font-size: 2rem;
}

.liquid_1142 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.alert-narrow-4be8 {
    flex: 1;
}

.card-680e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.photo-5c5d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.slider_e7a9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.module_23f5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.prev-6b11 {
    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;
}

.logo-last-a1e8 {
    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;
}

.logo-last-a1e8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.focused-ebc4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_first_9579 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside-8ebf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .aside-8ebf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_8eb4 {
    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);
}

.wide-d468 {
    color: var(--text-white);
    font-weight: 600;
}

.layout_7eb6 {
    color: var(--accent-color);
    font-weight: 600;
}

.banner-bdf0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.banner-bdf0 strong {
    color: var(--accent-color);
}

/* Security Section */
.menu-active-38d5 {
    padding: var(--section-padding);
}

/* Benefits Section */
.caption-orange-fd3f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.article-warm-f7f0 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pattern-pro-fa0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-93a0 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.full_72aa {
    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) {
    .full_72aa {
        flex-direction: column;
        gap: 1rem;
    }
}

.full_72aa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.full_72aa .sidebar_f488 {
    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;
}

.full_72aa .wood-43ff {
    flex: 1;
}

.full_72aa .medium-abba {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.full_72aa .picture-23f2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hot-7c6d {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot-7c6d .modal-5460 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot-7c6d .item-blue-008d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-7c6d .item-blue-008d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hot-7c6d .item-blue-008d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pink-7458 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.icon-2a43 {
    padding: var(--section-padding);
}

.notice_up_94d5 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .notice_up_94d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under_a468 {
    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);
}

.under_a468:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.under_a468 .layout-next-a5a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.under_a468 .link-narrow-9859 {
    flex: 1;
}

.under_a468 .simple_d2b7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.under_a468 .summary_ce06 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert_full_80d0 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_full_80d0 .dim_bf9d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_full_80d0 .up-626d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.alert_full_80d0 .up-626d 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);
}

.alert_full_80d0 .up-626d li:last-child {
    border-bottom: none;
}

.alert_full_80d0 .up-626d 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;
}

.alert_full_80d0 .up-626d li strong {
    color: var(--text-white);
}

.left_4c3a {
    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);
}

.left_4c3a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.left_4c3a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.summary-liquid-a854 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_69ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hard_69ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu_8fc8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_8fc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.content_pro_6c22 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-light-f460 {
    font-size: 2rem;
}

.filter_fast_ec0c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.bright-b607 {
    flex: 1;
}

.current_44cd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_44cd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.current_44cd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.list_fb05 {
    margin-top: 3rem;
}

.menu_pressed_593a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.stale_c4ed {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-cool-e0ac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-cool-e0ac li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.gradient-cool-e0ac li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.gradient-cool-e0ac li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.background-a3ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-efba {
    margin: 2rem 0;
}

.card_1cb2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.card_1cb2 .out_d1d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange-6b38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .orange-6b38 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.out-17b7 {
    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);
}

.out-17b7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.background-9c3b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hard_d5bc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.stone-4f39 {
    padding: var(--section-padding);
}

.summary_a0bb {
    margin: 2rem 0;
}

.purple-95ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .purple-95ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .purple-95ef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_0ec5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus_0ec5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.input-cold-6c64 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.old-1680 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.last_778b {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.last_778b.input-233d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tabs_4012 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.logo-f3fa {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.video_fluid_98ba {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-action-9d66 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hard_f3a5 {
    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);
}

.hard_f3a5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hard_f3a5 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.slider-red-b2fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-3e75 {
    margin: 2rem 0;
}

.heading_bronze_a31a {
    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) {
    .heading_bronze_a31a {
        flex-direction: column;
        gap: 1rem;
    }
}

.heading_bronze_a31a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.heading_bronze_a31a::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);
}

.section-1197 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.border-mini-5598 {
    flex: 1;
}

.tabs-876b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.upper-afac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upper-afac li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.inner_42e5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_brown_3afc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_1882 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .caption_1882 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-fefa {
    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);
}

.main-last-2834 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.shade-80a3 {
    flex: 1;
}

.secondary-left-8c18 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.stale-ddc5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.picture_middle_e102 {
    margin-top: 2rem;
    text-align: center;
}

.upper_a481 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.upper_a481 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.primary-hovered-2e90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-hovered-2e90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-ec5f {
    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);
}

.text-ec5f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.text-ec5f .avatar-warm-d59d {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-ec5f .cool-934f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.text-ec5f .active-right-8acf {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.text-ec5f .panel_c1a9 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.sort-a06a {
    padding: var(--section-padding);
}

.short_183c .image-gas-4173 {
    flex: 1;
}

/* Promo Calendar Section */
.info_c31c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-bottom-c31e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-bottom-c31e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-ca34 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_31b3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.thumbnail-3c8e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.new_a122 {
    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);
}

.element-9c23 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.background-fast-146c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.focused-76f5 {
    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);
}

.focused-76f5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused-76f5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.picture-6db3 {
    padding: var(--section-padding);
}

.solid-204b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .solid-204b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thumbnail_black_de1c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_af96 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview-plasma-7fc1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-plasma-7fc1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.solid_9ea5 {
    margin-top: 3rem;
}

.solid_9ea5 .menu_pressed_593a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.solid_9ea5 .stale_c4ed {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.solid_9ea5 .gradient-cool-e0ac {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.solid_9ea5 .gradient-cool-e0ac li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.solid_9ea5 .gradient-cool-e0ac li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.solid_9ea5 .gradient-cool-e0ac li strong {
    color: var(--warning-color);
}

.rough-a6e1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.rough-a6e1 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.container_83d1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny-67fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-67fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-18a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-18a3 .out_d1d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.middle-c6c7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.complex-1341 {
    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);
}

.complex-1341:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.nav-88aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress_ac3e {
    flex: 1;
}

.sidebar_fixed_b167 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.element_a069 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shadow_17b1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.last-39f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.simple-ec12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .simple-ec12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_a956 {
    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);
}

.status_a956:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.iron-0768 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-plasma-066e {
    color: var(--text-gray);
    font-size: 1rem;
}

.input-orange-02d8 {
    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);
}

.picture-55eb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.picture-55eb strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.right-2088 { 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; }
.picture_c03b, .search_tall_3877 { max-width:100%; height:auto; }

.fluid-bdbb, .hot-c06d, .over_4819 { white-space:normal; }

.item-0212,
.liquid-ab9e,
.thumbnail_fluid_c5cd,
.primary-hovered-2e90,
.black-fc1a,
.module_958f {
  flex-wrap:wrap;
}

[class*="grid"],
.simple-ec12,
.purple-95ef,
.gallery_1891 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.label_lite_2edf img,
.liquid-ab9e img,
.wide_8f5f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.filter_huge_1381, .tooltip-790d,
.preview-7d49, .first_f67c {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.paper-2fb4 { width:100%; overflow-x:auto; }
.paper-2fb4 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hover_132f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hover_132f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.button_cea2 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.pagination-6ffd,
.text-top-3e74,
.pattern-new-9007,
.wide-5633,
.popup_gold_72f2,
.simple-ec12,
.purple-95ef,
.gallery_1891,
.header_upper_0667,
.paragraph_black_af27,
.hover_132f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .pagination-6ffd,
  .text-top-3e74,
  .pattern-new-9007,
  .wide-5633,
  .popup_gold_72f2,
  .simple-ec12,
  .purple-95ef,
  .gallery_1891,
  .header_upper_0667,
  .paragraph_black_af27,
  .hover_132f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.gold_43e3,
.photo_orange_f877,
.status_a956,
.heading-b46d,
.focus_0ec5,
.label_top_c09f,
.alert_c09d,
.button_cea2 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.frame-4af3,
.hover_27a6,
.bottom_33bb {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.frame-4af3 > *,
.hover_27a6 > *,
.bottom_33bb > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 805b */
.widget-item-p2 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
