/* {$keywords} - Main Stylesheet */
/* Modern Brazilian Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 深海蓝青绿主题 */
:root {
    /* 背景色系 */
    --primary-bg: #0f172a;      /* 深海蓝 - 主背景 */
    --secondary-bg: #1e293b;     /* 中蓝 - 卡片背景 */
    --tertiary-bg: #334155;     /* 浅蓝 - 悬浮背景 */
    
    /* 强调色系 */
    --accent-color: #06b6d4;     /* 青绿 - 主要CTA */
    --accent-hover: #0891b2;     /* 深青绿 - 悬停状态 */
    --accent-light: #67e8f9;    /* 浅青绿 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #f8fafc;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 淡灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 灰色 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #10b981;   /* 翠绿 - 成功状态 */
    --danger-color: #ef4444;    /* 红色 - 错误状态 */
    --warning-color: #f97316;   /* 橙色 - 警告状态 */
    --info-color: #06b6d4;      /* 青绿 - 信息提示 */
    
    /* 渐变色系 */
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    
    /* Shadows - 深海蓝青绿主题 */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.4);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-vip: 0 0 20px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.frame-fluid-c57c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.gallery_0b62 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .gallery_0b62 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery_0b62 {
        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 */
.breadcrumb_336a {
    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);
}

.border_down_2776 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .border_down_2776 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .tabs_faa0 {
        grid-column: 1;
    }
    
    .hover_short_ea49 {
        grid-column: 2;
    }
    
    .last-43a7 {
        grid-column: 3;
    }
}

.tabs_faa0 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.tabs_faa0:hover img {
    transform: scale(1.05);
}

/* Navigation */
.message-motion-ccfe {
    display: none;
}

@media (min-width: 1024px) {
    .message-motion-ccfe {
        display: block;
    }
}

/* Grouped Navigation */
.hidden-b19b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.inner_22d9 {
    position: relative;
}

.detail-0d94 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.inner_22d9 .video_0107 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.video_0107 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.caption-2e34 {
    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;
}

.caption-2e34:hover,
.caption-2e34.fn-active-5724 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.background_79ee {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .background_79ee {
        display: flex;
    }
}

/* Mobile Register Button */
.hover_short_ea49 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hover_short_ea49 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.dirty-2cd5 {
    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;
}

.dirty-2cd5::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 */
.last-43a7 {
    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) {
    .last-43a7 {
        display: none;
    }
}

.last-43a7 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.last-43a7.fn-active-5724 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.last-43a7.fn-active-5724 span:nth-child(2) {
    opacity: 0;
}

.last-43a7.fn-active-5724 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.overlay_top_456d {
    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;
}

.overlay_top_456d.fn-active-5724 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.modal-aff8 {
    overflow: hidden;
}

.paragraph-over-9ba0 {
    list-style: none;
    padding: 0.75rem 0;
}

.grid-2a21 {
    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;
}

.grid-2a21:hover,
.grid-2a21.fn-active-5724 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.grid-2a21.preview-new-17d4 {
    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;
}

.grid-2a21.preview-new-17d4::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 */
.stone-f907 {
    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;
}

.badge_selected_734e {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.badge_selected_734e:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.focused_d1e0 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.focused_d1e0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.menu_cc72 {
    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;
}

.menu_cc72:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.focus-696a {
    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;
}

.plasma_a51e {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.plasma_a51e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.feature_5932 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.feature_5932:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.sidebar_tall_d160 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.sidebar_tall_d160: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);
}

.dropdown-inner-af5b {
    font-size: 1em;
    font-weight: 700;
}

.carousel_hard_e4d3 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.image-cool-9159 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.image-cool-9159::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;
}

.tertiary-light-2e84 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tertiary-light-2e84 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.first_3d7e {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.popup_small_891f {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hard_24c5 {
    margin-bottom: 2rem;
}

.tabs_fd5b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tabs_fd5b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue_cb9e {
    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);
}

.south-94cb {
    font-size: 1.5rem;
}

.static-d26a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.content_brown_7783 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.down-4bab {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.down-4bab:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.breadcrumb-under-e1d8 {
    text-align: center;
    margin-bottom: 3rem;
}

.dirty_dea0 {
    margin-bottom: 1rem;
}

.orange-4536 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.input_d2c2 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .input_d2c2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .input_d2c2.tiny-e9da {
        direction: rtl;
    }
    
    .input_d2c2.tiny-e9da > * {
        direction: ltr;
    }
}

.picture_7dbd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.picture_7dbd:first-child {
    margin-top: 0;
}

.dark-0e15 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.list-862b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.list-862b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.basic-870b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic-870b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_fc73 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.soft-d86c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.smooth-8a53 {
    list-style: none;
}

.smooth-8a53 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.smooth-8a53 li:last-child {
    border-bottom: none;
}

/* Games Features */
.link_f019 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.hero-dirty-e6b4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.header-9135 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-ac62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.label_c974 {
    margin: 2rem 0;
}

.shade-a446 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.block-bf3c {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.lite-2ed2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.mask-thick-0088 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.component_iron_1362 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_iron_1362 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-e695 {
    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);
}

.container-e695:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled-dark-60c3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gradient-6a5f {
    font-size: 1.5rem;
}

.tag_old_1a77 {
    color: var(--accent-color);
    margin: 0;
}

.dark-b1ad {
    list-style: none;
}

.dark-b1ad li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.dark-b1ad li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.row-advanced-f14a {
    margin: 2rem 0;
}

.disabled-63dc {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tag-out-b979 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tag-out-b979 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.soft_cf97 {
    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);
}

.small-d399 {
    font-size: 1.25rem;
}

.image-advanced-c459 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.wide_da13,
.pink_7876 {
    text-align: center;
    margin: 2rem 0;
}

.slow_e961,
.button_2ee2 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.module_4225 {
    margin: 2rem 0;
    text-align: center;
}

.overlay-bright-0857 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.overlay-bright-0857::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;
}

.focused-02dc {
    position: relative;
    z-index: 1;
}

.primary-bronze-c107 {
    margin-bottom: 1rem;
}

.liquid-efba {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-7c43 {
    margin-bottom: 3rem;
}

.badge_wood_db9c {
    margin-top: 3rem;
}

.grid_783b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid_783b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_783b .blue_cb9e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wood_960e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link-1f06 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.easy-d73d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.nav-new-943c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .nav-new-943c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-new-943c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.photo_5fb5 {
    margin-bottom: 1rem;
}

.container-024b img {
    margin-bottom: 1rem;
}

.green_6d03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_bright_96cf {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.container_purple_c642 {
    list-style: none;
}

.container_purple_c642 li {
    margin-bottom: 0.5rem;
}

.container_purple_c642 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.container_purple_c642 a:hover {
    color: var(--accent-color);
}

.full-afe5 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.top_7d01 {
    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);
}

.top_7d01:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.glass-77d7 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.glass-77d7 p {
    margin-bottom: 0.25rem;
}

.widget-9d3a {
    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) {
    .widget-9d3a {
        flex-direction: row;
    }
}

.green_e4b3 {
    text-align: center;
}

@media (min-width: 768px) {
    .green_e4b3 {
        text-align: left;
    }
}

.green_e4b3 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paper-5990 {
    font-size: 0.75rem !important;
}

.stone-5e01 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.disabled-wood-4f27 {
    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);
    }
}

.block_0122 {
    animation: fadeInUp 0.6s ease-out;
}

.caption-pro-b463 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.message_04b8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_04b8 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.photo_f3b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_f3b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-3920 {
    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);
}

.dark-3920 .header-9135 {
    font-size: 1.25rem;
}

.dark-3920 .overlay_light_3e4d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.basic_cd45 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic_cd45 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-08cc {
    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);
}

.active-08cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-0254 {
    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);
}

.column_2934 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tooltip-lite-1f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-498c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search_0783 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search_0783 .avatar-ac62 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search_0783 .outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-outer-6ad1 {
    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);
}

.menu-narrow-8a4d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.menu-narrow-8a4d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.menu-narrow-8a4d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.section_eeea {
    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);
}

.slider-next-73a9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass_25a9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.glass_25a9 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.glass_25a9 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);
}

.glass_25a9 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.glass_25a9 input::placeholder {
    color: var(--text-muted);
}

.row-wood-7829 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_6490 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.footer_6490 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.red_a307 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.red_a307:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tag-out-b979 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-out-b979 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.soft_cf97 {
    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);
}

.soft_cf97 .small-d399 {
    font-size: 1.25rem;
}

.soft_cf97 .image-advanced-c459 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.top-7736 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-rough-ec98 {
    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);
}

.mask-rough-ec98 .header-9135 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-rough-ec98 .avatar-ac62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask-rough-ec98 .outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-8394 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-basic-cef8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-basic-cef8 .heading-c715 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph-basic-cef8 .stale-e839 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light-8bc6 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_b64a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component_b64a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blue_89ce {
    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);
}

.blue_89ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-tall-f7f6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.focus-98d7 {
    flex: 1;
}

.nav-orange-9fc5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focused_b92d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.soft_d6ea {
    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);
}

.soft_d6ea:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.module_6811 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_6811 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-yellow-1d33 {
    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);
}

.title-yellow-1d33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header-7e4e {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy_ded6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress_thick_2dd7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.text-focused-19ce {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dim-8009 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_28f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-cd44 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hard-cd44 .input-stone-0a9b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-cd44 .tertiary_098b {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_fixed_d122 {
    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);
}

.column_833e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-91e7 {
    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);
}

.list-91e7 .header-9135 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-91e7 .avatar-ac62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list-91e7 .outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_f9f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_f9f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_e03e {
    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);
}

.list_e03e:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.silver-9e57 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-9e57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid_464d {
    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);
}

.liquid_464d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-a868 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-bottom-2a4c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.block-bf3c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.background_hot_b08b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.alert_dae7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-293f {
    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);
}

.warm-293f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_prev_44d3 {
    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);
}

.grid-3f4d {
    flex: 1;
}

.gradient-a2aa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.panel_narrow_fca8 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.new-7db4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-left-2656 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short_1700 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_1700 .heading-c715 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short_1700 .stale-e839 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pink_7876 {
    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);
}

.header_over_a214 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_over_a214 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.plasma_a4fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_a4fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-38c8 {
    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);
}

.sidebar-38c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_4b79 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component-small-24f0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-rough-1cbe {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shadow_8fbc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout_fast_170a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_under_2ad6 {
    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);
}

.modal-blue-9c9e {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_b072 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.last-9b59 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_833e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-91e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.list-91e7 .avatar-ac62 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list-91e7 .outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-tiny-8769 {
    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);
}

.dark_984d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dark_984d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dark_984d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-4073 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent-4073:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_cool_21e5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.rough_928a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.chip-1452 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.component-7906 {
    padding: 1.5rem;
}

.notification-fba9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge-white-c1df {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-white-c1df 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;
}

.badge-white-c1df li:last-child {
    border-bottom: none;
}

.badge-white-c1df li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.hard-1878 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-1878 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-iron-ba2b {
    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);
}

.menu-iron-ba2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_7435 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-lower-22e7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pattern-large-b5ab {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.large-ac5b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shadow_aea7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-19d1 {
    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);
}

.outline_7839 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-9f17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input-bcde {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-6ba7 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pro-35e7 {
    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);
}

.accent_north_62f4 {
    text-align: center;
}

.dropdown-static-e6ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_e45c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.popup_220d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion_c429 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_c429 .avatar-ac62 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.motion_c429 .outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper_a8d3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .upper_a8d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .upper_a8d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-2b10 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool-2b10:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_lower_4a55 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_silver_da11 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.avatar-ac62 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.info-f313 {
    padding: 1.5rem;
}

.outer-2e81 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary-bafa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-bafa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.secondary-bafa li:last-child {
    border-bottom: none;
}

.secondary-bafa li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.shadow_03d7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.focused_937a {
    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);
}

.focused_937a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_28b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading-614e {
    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);
}

.gold-0254 {
    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;
}

.column_2934 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-lite-1f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_green_c7ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-ba2f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.purple_d21a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup-d046 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.carousel_68a3 {
    display: flex;
    gap: 1rem;
}

.carousel_68a3 .disabled_b522 {
    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;
}

.red-d151 {
    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);
}

.outer_1af0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.container_top_d7e9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container_top_d7e9 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;
}

.container_top_d7e9 li:last-child {
    border-bottom: none;
}

.container_top_d7e9 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.tabs-in-c960 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs-in-c960 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs-in-c960 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fresh-3dae {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fresh-3dae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-5613 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.old_c2fa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input-stone-0a9b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.mask_4d6b {
    font-size: 1rem;
}

.header-4bb1 {
    padding: 1.5rem;
}

.tertiary_098b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.item_simple_1bb2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.item_simple_1bb2 .accent_north_62f4 {
    text-align: center;
}

.item_simple_1bb2 .title_e45c {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.item_simple_1bb2 .icon-8916 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.menu_855b {
    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);
}

.menu_855b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.sidebar_over_4a89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_over_4a89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-2900 {
    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);
}

.sort-2900:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-4334 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge_f63c {
    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);
}

.module_b130 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-f93a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper-brown-55b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_18b1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight-4e3e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_0578 {
    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);
}

.fluid_7b68 {
    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;
}

.fluid_7b68.steel-d888 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.fluid_7b68.narrow_f29d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.fluid_7b68.status-c2df {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.fluid_7b68.hot_43f5 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.fluid_7b68.section-pro-6c1f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.popup_e0d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row_top_ca2b {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-51a5 {
    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);
}

.full_c14f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tooltip-8394 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-8394 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;
}

.tooltip-8394 li:last-child {
    border-bottom: none;
}

.tooltip-8394 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.slider_a3de {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slider_a3de {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider_a3de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-3bb2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.link-3bb2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-3bb2.text-selected-03c4 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .link-3bb2.text-selected-03c4 {
        grid-column: span 3;
    }
}

.photo-fluid-c35f {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.link-3bb2.text-selected-03c4 .photo-fluid-c35f {
    background: rgba(6, 182, 212, 0.1);
}

.glass-e415 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.paragraph-selected-dcb1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.link-3bb2.text-selected-03c4 .paragraph-selected-dcb1 {
    color: var(--info-color);
}

.green-ee6f {
    padding: 1.5rem;
    text-align: center;
}

.next_013d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.link-3bb2.text-selected-03c4 .next_013d {
    color: var(--info-color);
}

.column-slow-e1ee {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form_9055 {
    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 */
.layout-medium-7aef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-medium-7aef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty-b1e5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dirty-b1e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up-8e7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-rough-ec98 {
    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);
}

.small-d399 {
    font-size: 2rem;
    flex-shrink: 0;
}

.row_short_fac9 {
    flex: 1;
}

.disabled-63dc {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion_6a61 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_white_772b {
    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);
}

.shadow_smooth_5068 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.narrow_a00a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.disabled-wood-4f27 {
    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);
}

.hidden_f094 {
  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);
}

.hidden_f094 .accent_north_62f4 {
    text-align: center;
}

.hidden_f094 .dropdown-static-e6ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.hidden_f094 .title_e45c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-d8c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.clean-9c13 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-5e96 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-east-4579 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-pressed-c2b4 {
    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);
}

.green_fca9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.column-west-9a0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-c857 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .chip-c857 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip-c857 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_6319 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs_6319:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-285e {
    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);
}

.solid_36ad {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.border_north_5344 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.footer-steel-871f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-steel-871f.icon_soft_d47c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.footer-steel-871f.liquid-0f3d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.footer-steel-871f.smooth-866d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.lower_fd86 {
    padding: 1.5rem;
    text-align: center;
}

.block-inner-50f6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.short-195e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.short-195e .glass_6c81 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.primary_3796 {
    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);
}

.primary_3796:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.input_glass_3d62 {
  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);
}

.lite-28d4 {
    text-align: center;
}

.lite-28d4 .dropdown-static-e6ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.lite-28d4 .title_e45c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.message-69b9 { text-align: center; }
.selected_0f8e { text-align: left; }
.primary_7c28 { text-align: right; }

.picture_bf20 { margin-bottom: 0; }
.fast-6794 { margin-bottom: 0.5rem; }
.background-eb74 { margin-bottom: 1rem; }
.widget-90e5 { margin-bottom: 1.5rem; }
.progress_plasma_be66 { margin-bottom: 2rem; }

.backdrop_next_338a { margin-top: 0; }
.tag-fe91 { margin-top: 0.5rem; }
.description-dark-85de { margin-top: 1rem; }
.green-293f { margin-top: 1.5rem; }
.clean-0d8e { margin-top: 2rem; }

.fn-hidden-5724 { display: none; }
.fn-visible-5724 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .image-cool-9159 {
        padding: 6rem 0 3rem;
    }
    
    .tertiary-light-2e84 {
        text-align: center;
    }
    
    .input_d2c2 {
        text-align: center;
    }
    
    .tabs_fd5b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .breadcrumb_336a,
    .overlay_top_456d,
    .overlay-bright-0857,
    .easy-d73d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .image-cool-9159 {
        background: none;
    }
}

/* Providers Section */
.focus_4350 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-lower-2113 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-lower-2113 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-lower-2113 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-steel-2781 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.summary-steel-2781:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.section_huge_8405 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prev_53b8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade_tall_3e34 {
    list-style: none;
    padding: 0;
}

.shade_tall_3e34 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.shade_tall_3e34 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.layout-fresh-5820 {
    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);
}

.layout-fresh-5820 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.orange-d93f {
    padding: var(--section-padding);
}

.liquid-5cb5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid-5cb5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-71c7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion-71c7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.layout_iron_ece2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.focused_f948 {
    display: flex;
    flex-direction: column;
}

.wrapper_east_6a0a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.feature-04c9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.advanced-cdeb {
    color: var(--accent-color);
}

.liquid_e420 {
    font-size: 1.25rem;
}

.over_ffd7 {
    margin-bottom: 1rem;
}

.over_ffd7 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.tertiary_9359 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hidden_2f70 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.accent_north_62f4 {
    text-align: center;
}

.dropdown-static-e6ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_e45c {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.image-22ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone_7eb0 {
    margin: 2rem 0;
}

.pagination-in-f662 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.pagination-in-f662 .header-9135 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-small-eeb3 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.east_86e7 {
    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;
}

.east_86e7:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.left-674d {
    font-size: 2rem;
}

.focus_10df {
    display: flex;
    flex-direction: column;
}

.badge-efc2 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dim_60b2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.shadow_east_d8e1 {
    padding: var(--section-padding);
}

.progress_pro_07ce {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .progress_pro_07ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress_pro_07ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom_3a95 {
    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);
}

.bottom_3a95:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bottom_3a95 .dropdown-static-e6ee {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.bottom_3a95 .title_e45c {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.bottom_3a95 .next_517f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.tertiary_d3ac {
    margin-top: 4rem;
}

.short_9ebc {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.progress_under_1b3f {
    overflow-x: auto;
}

.notice_d92a {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.notice_d92a thead {
    background: var(--accent-color);
}

.notice_d92a th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.notice_d92a td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_d92a tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.notice_d92a tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.current_2bb9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_bright_0a2b {
    max-width: 900px;
    margin: 0 auto;
}

.action-a446 {
    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);
}

.action-a446:hover {
    border-color: var(--accent-color);
}

.gradient_5ffc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.gradient_5ffc h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.fixed_6a6b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.action-a446.fn-active-5724 .fixed_6a6b {
    transform: rotate(45deg);
}

.notice_focused_a023 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.action-a446.fn-active-5724 .notice_focused_a023 {
    max-height: 1000px;
}

.notice_focused_a023 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.texture-b319 {
    padding: var(--section-padding);
}

.menu-narrow-8a4d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tooltip_bd5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-cf88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-cf88 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.backdrop-narrow-f6d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_b529 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.box_f2c7 {
    font-size: 2rem;
}

.thumbnail-16cf {
    color: var(--text-white);
    margin: 0;
}

.mini_49fe {
    list-style: none;
    padding: 0;
}

.mini_49fe li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mini_49fe li:last-child {
    border-bottom: none;
}

.media_mini_5329 {
    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);
}

.media_mini_5329 p {
    color: var(--success-color);
    margin: 0;
}

.notification-53dd {
    margin-top: 3rem;
}

.outer_1af0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer_inner_e424 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer_inner_e424 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column_outer_aca1 {
    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);
}

.highlight_5004 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.column_outer_aca1 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.surface_7e8c {
    padding: var(--section-padding);
}

.search-fresh-6dd1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-fresh-6dd1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-outer-f50c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.column-outer-f50c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.border-bfc9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal_focused_dbc3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.warm_32a2 {
    flex: 1;
}

.image-1138 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.wrapper-dynamic-251a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.component-a9ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh_60ec {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fresh_60ec:last-child {
    border-bottom: none;
}

/* Comparison Section */
.avatar_green_6775 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tooltip_soft_ad40 {
    padding: var(--section-padding);
}

.texture_6d37 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.gold-c21a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-c21a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-87fe {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_7a00, .down-05e0, .row-9454 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.row-9454 {
    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 */
.accordion-pro-fe4d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_96ed {
    margin: 2rem 0;
}

.tall-b652 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-686e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.message-motion-8ff3 {
    list-style: none;
    padding: 0;
}

.message-motion-8ff3 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;
}

.message-motion-8ff3 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.message-motion-8ff3 li:last-child {
    border-bottom: none;
}

.cool_2eeb {
    text-align: center;
    margin-top: 2rem;
}

.old-f444 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.grid_bright_97b2 {
    padding: var(--section-padding);
}

.motion-e911 {
    margin: 2rem 0;
}

.secondary-current-3da6 {
    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) {
    .secondary-current-3da6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.secondary-current-3da6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focused-2694 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.section-f3f7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.block-fixed-208d {
    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;
}

.upper-d00d {
    flex: 1;
}

.notice_selected_9b60 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.orange-6d53 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.medium_9480 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.heading_center_6b98 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .heading_center_6b98 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.right_806d {
    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);
}

.right_806d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.right_806d .dropdown-static-e6ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.right_806d .title_e45c {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-5184 {
    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);
}

.nav_e603 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.nav_e603 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.wide-abda {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .wide-abda {
        grid-template-columns: 1fr 1fr;
    }
}

.nav-stone-685a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-short-dd2b {
    margin-bottom: 1.5rem;
}

.caption-short-dd2b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.caption-short-dd2b input,
.caption-short-dd2b 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;
}

.caption-short-dd2b input:focus,
.caption-short-dd2b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.purple_0c1d {
    width: 100%;
    margin-top: 1rem;
}

.heading_tall_6882 {
    display: flex;
    align-items: center;
}

.border_old_492b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.avatar_bd50 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.action-a933 {
    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;
}

.footer-orange-0251 {
    color: var(--text-gray);
}

.right_2889 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.shadow-2022 {
    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);
}

.shadow-2022 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tiny-b918 {
    margin-top: 3rem;
}

.up-8a6c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.sidebar_13cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-64d1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.pagination_1205 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination_1205:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hovered_e376 {
    padding: var(--section-padding);
}

.focus-bce3 {
    margin: 2rem 0;
}

.outline_60a3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.disabled-hot-7e41 {
    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;
}

.disabled-hot-7e41:hover, .disabled-hot-7e41.fn-active-5724 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.text_medium_bcaa {
    display: none;
}

.text_medium_bcaa.fn-active-5724 {
    display: block;
}

.orange_1992 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_5126 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.label-focused-e6f9 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.label-focused-e6f9 ul {
    list-style: none;
    padding: 0;
}

.label-focused-e6f9 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.label-focused-e6f9 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cold_86ba {
    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 */
.texture-7923 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_basic_0d09 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-b1e8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.element_209e {
    color: var(--accent-color);
    margin: 0;
}

.notification-9d8d {
    display: flex;
    gap: 1.5rem;
}

.bronze_3103 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.complex_b2ba {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.disabled-dde6 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.disabled-dde6.last-5d58 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.disabled-dde6.layout_28f2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.disabled-dde6.content_c0d1 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.widget-9152 {
    margin-top: 2rem;
}

.footer-advanced-dd63 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tag_36fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tag_36fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-a5ba {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.easy_0214 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fluid-176e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.gallery-up-c5c6 {
    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 */
.active_7adb {
    padding: var(--section-padding);
}

.widget-short-a16d {
    margin: 2rem 0;
}

.block-f220 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.sidebar-f77c {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.stone_2d93 {
    list-style: none;
    padding: 0;
}

.stone_2d93 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;
}

.stone_2d93 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.stone_2d93 li:last-child {
    border-bottom: none;
}

.block_motion_2014 {
    margin: 2rem 0;
}

.layout_e45a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.box_7e25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box_7e25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort_1888 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_left_27ae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-6044 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.row_c8c4 {
    margin-top: 2rem;
}

.nav-orange-9fc5 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.message_3f75 {
    list-style: none;
    padding: 0;
}

.logo_iron_61ed {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.logo_iron_61ed a {
    color: var(--accent-color);
    text-decoration: none;
}

.logo_iron_61ed a:hover {
    text-decoration: underline;
}

.next-e01d {
    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 */
.action-be25 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-59d5 {
    margin: 2rem 0;
}

.mask-black-55e2 {
    margin-bottom: 3rem;
}

.mask-black-55e2 .surface-686e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.header_0241 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dynamic_c307 {
    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);
}

.dynamic_c307:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.slider-upper-9c93 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .slider-upper-9c93 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-west-4962 {
    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 */
.hidden_a305 {
    padding: var(--section-padding);
}

.hidden-9989 {
    margin: 2rem 0;
}

.photo_ef63 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.item-dirty-a518 {
    overflow-x: auto;
    margin: 2rem 0;
}

.footer-7bd4 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.article-clean-4a17 {
    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;
}

.widget-ae16 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.tabs-brown-9267 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .tabs-brown-9267 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-9963 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-9963 .header-9135 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.disabled-9963 .avatar-ac62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.primary-8edf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.aside-0d8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_fluid_8070 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_fluid_8070 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-a382 {
    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;
}

.section-a382:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.solid_bd5d {
    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);
}

.widget_in_4cda {
    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;
}

.column-5eff {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.list_wood_d639 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.input_de3e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.badge-dd57 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copper_ac7a {
    color: var(--text-white);
    font-weight: 600;
}

.video_b523 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image-slow-d6e7 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.image-slow-d6e7 .disabled_b522 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.input_25df {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .input_25df {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower-4a71 {
    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);
}

.lower-4a71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lower-4a71 .dropdown-static-e6ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lower-4a71 .title_e45c {
    color: var(--text-gray);
    font-size: 1rem;
}

.footer_cfca {
    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);
}

.tag_over_484e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tag_over_484e strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.layout_fast_170a {
    margin: 2rem 0;
}

.accent_under_2ad6 {
    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);
}

.accent_under_2ad6:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.modal-blue-9c9e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.breadcrumb_out_41fb {
    flex: 1;
}

.text_b072 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.last-9b59 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.column_833e {
    margin: 2rem 0;
}

.list-91e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-91e7 .avatar-ac62 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.list-91e7 .outer-2e81 {
    color: var(--text-gray);
    margin: 0;
}

.message-tiny-8769 {
    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);
}

.message-tiny-8769 .slow_e961 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.primary-8edf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.texture_prev_44d3 {
    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;
}

.grid-3f4d {
    flex: 1;
}

.panel_narrow_fca8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.new-7db4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.gold-0254 {
    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;
}

.picture-1bfb {
    flex: 1;
}

.column_2934 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.tooltip-lite-1f1a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.purple_d21a {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.popup-d046 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.carousel_68a3 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel_68a3 .disabled_b522 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.red-d151 {
    margin-top: 2rem;
}

.red-d151 .outer_1af0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.photo-east-38e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro-35e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pro-35e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-35e7 .accent_north_62f4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_220d {
    margin: 2rem 0;
}

.motion_c429 {
    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 */
.grid_adf7 {
    padding: var(--section-padding);
}

.info-f313 {
    margin-top: 1rem;
}

.secondary-bafa {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.secondary-bafa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.secondary-bafa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.highlight-fixed-97b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-first-8811 {
    margin: 2rem 0;
}

.modal_tiny_6705 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.media-bottom-5728 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.text-b0d6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.highlight_stale_526d {
    margin: 2rem 0;
}

.sort_top_b741 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.sort_top_b741 .surface-686e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused_879a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .focused_879a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-pressed-7f48 {
    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);
}

.popup-e039 {
    color: var(--text-white);
    font-weight: 600;
}

.hero_c899 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.tag-pro-3f9d {
    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);
}

.tag-pro-3f9d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.header-445f {
    padding: var(--section-padding);
}

.status-0d94 {
    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;
}

.status-0d94:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.element_static_c35b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element_static_c35b .highlight_5004 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_static_c35b .basic_fb45 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.module_a525 {
    flex: 1;
}

.surface-c5b3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.east-bd23 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east-bd23 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.east-bd23 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.chip_old_5987 {
    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);
}

.chip_old_5987 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_old_5987 strong {
    color: var(--warning-color);
}

/* Slots Section */
.header-9cf6 {
    padding: var(--section-padding);
}

.dim-8009 {
    margin: 2rem 0;
}

/* Table Games Section */
.slider-2218 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south_28f3 {
    margin: 2rem 0;
}

.hard-cd44 {
    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);
}

.hard-cd44:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard-cd44 .input-stone-0a9b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-cd44 .tertiary_098b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.icon_fixed_d122 {
    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);
}

.icon_fixed_d122 .slow_e961 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.header_liquid_7655 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide-48c7 {
    margin: 2rem 0;
}

.orange_38a3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview-503d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary_9178 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip-30ac {
    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);
}

.chip-30ac:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.chip-30ac.fn-active-5724 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow_5b55 {
    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);
}

.status_fixed_a3ed {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status_fixed_a3ed strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.medium_ee84 {
    padding: var(--section-padding);
}

.surface-ef3f {
    margin: 2rem 0;
}

.icon_a8ed {
    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);
}

.icon_a8ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .icon_a8ed {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hard_86a4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.light_1b48 {
    flex: 1;
}

.article_north_f3de {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copper_1b32 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.filter-a143 {
    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;
}

.cool_574b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dim_3560 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail_28a3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline-f86b {
    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;
}

.outline-f86b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wide_36f0 {
    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);
}

.purple-8784 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.purple-8784 strong {
    color: var(--accent-color);
}

/* New Games Section */
.slow-b74a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_c053 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .primary_c053 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary_c053 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_9883 {
    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;
}

.hover_9883:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.under-1582 {
    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;
}

.slider-paper-47b6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.wrapper-bb64 {
    font-size: 2rem;
}

.breadcrumb-4a16 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.sidebar_red_2799 {
    flex: 1;
}

.tabs_purple_79a0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.stone_ed12 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.popup-right-2e6c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.static_822f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-hard-29f6 {
    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;
}

.middle_5fe0 {
    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;
}

.middle_5fe0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active-98bb {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-3efa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery-b1c0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-b1c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lower-2275 {
    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);
}

.carousel_9f35 {
    color: var(--text-white);
    font-weight: 600;
}

.item_8b13 {
    color: var(--accent-color);
    font-weight: 600;
}

.badge-6666 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.badge-6666 strong {
    color: var(--accent-color);
}

/* Security Section */
.text-5ec6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.right_fb8b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.orange_632c {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.basic_8146 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_west_00e6 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.wood_8f95 {
    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) {
    .wood_8f95 {
        flex-direction: column;
        gap: 1rem;
    }
}

.wood_8f95:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wood_8f95 .gold-0254 {
    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;
}

.wood_8f95 .picture-1bfb {
    flex: 1;
}

.wood_8f95 .column_2934 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wood_8f95 .tooltip-lite-1f1a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.light_cbd7 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_cbd7 .disabled-63dc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.light_cbd7 .top-7736 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light_cbd7 .top-7736 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.light_cbd7 .top-7736 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.button_upper_fe8d {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.green_65a3 {
    padding: var(--section-padding);
}

.warm_beb1 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .warm_beb1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini_5e90 {
    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);
}

.mini_5e90:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.mini_5e90 .form_easy_98b5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini_5e90 .solid-85ea {
    flex: 1;
}

.mini_5e90 .heading-c715 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini_5e90 .icon_first_da1a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.photo-fa65 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-fa65 .yellow_bf68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-fa65 .notice-steel-75a9 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.photo-fa65 .notice-steel-75a9 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);
}

.photo-fa65 .notice-steel-75a9 li:last-child {
    border-bottom: none;
}

.photo-fa65 .notice-steel-75a9 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;
}

.photo-fa65 .notice-steel-75a9 li strong {
    color: var(--text-white);
}

.advanced-f221 {
    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);
}

.advanced-f221 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.advanced-f221 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.input_4b24 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-8443 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .alert-8443 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary_solid_b604 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.primary_solid_b604:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link_334d {
    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-660e {
    font-size: 2rem;
}

.layout-200a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fixed-773d {
    flex: 1;
}

.accent_0b26 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent_0b26 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent_0b26 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.popup_yellow_a146 {
    margin-top: 3rem;
}

.block-f220 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sidebar-f77c {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stone_2d93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_2d93 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.stone_2d93 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.stone_2d93 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.dirty_3d8c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_5579 {
    margin: 2rem 0;
}

.photo-middle-6aac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.photo-middle-6aac .surface-686e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title-hovered-b8ec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title-hovered-b8ec {
        grid-template-columns: repeat(2, 1fr);
    }
}

.row-slow-d401 {
    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);
}

.row-slow-d401:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.heading-860f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.message_slow_18f1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.module_west_6516 {
    padding: var(--section-padding);
}

.summary_current_0165 {
    margin: 2rem 0;
}

.thumbnail_hard_4ebf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .thumbnail_hard_4ebf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail_hard_4ebf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-east-8adb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row-east-8adb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label-motion-768d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gallery_outer_0b4c {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.gradient-4614 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.gradient-4614.info-fa5d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.message_hard_f652 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.pink-7967 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.module_ab08 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-smooth-c522 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slow-3672 {
    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);
}

.slow-3672 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow-3672 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.footer_6171 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron_f427 {
    margin: 2rem 0;
}

.accordion_steel_d048 {
    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) {
    .accordion_steel_d048 {
        flex-direction: column;
        gap: 1rem;
    }
}

.accordion_steel_d048:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accordion_steel_d048::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);
}

.notice_static_e754 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.medium-f117 {
    flex: 1;
}

.fresh-8075 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.background-soft-86b5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-soft-86b5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.red-5ff6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_thick_d2a0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_2127 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .disabled_2127 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar_dim_1bd9 {
    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);
}

.component-down-d012 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.component_e160 {
    flex: 1;
}

.detail-dark-f129 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.prev-80bb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.motion_f691 {
    margin-top: 2rem;
    text-align: center;
}

.description-d9be {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description-d9be strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.sidebar_over_4a89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_over_4a89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-2900 {
    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);
}

.sort-2900:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort-2900 .icon_7435 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-2900 .title-lower-22e7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.sort-2900 .pattern-large-b5ab {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.sort-2900 .large-ac5b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.grid-bronze-7083 {
    padding: var(--section-padding);
}

.badge_f63c .filter_70f9 {
    flex: 1;
}

/* Promo Calendar Section */
.wide-c879 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy-73d1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy-73d1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-silver-2dab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_old_056d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.red-41aa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.soft-5ab3 {
    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);
}

.alert-c486 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-gold-b76c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.overlay_98e0 {
    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);
}

.overlay_98e0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_98e0 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.tag_up_8985 {
    padding: var(--section-padding);
}

.clean_8a3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .clean_8a3e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border-fixed-9847 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-a523 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-complex-c422 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-complex-c422 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.inner_347a {
    margin-top: 3rem;
}

.inner_347a .block-f220 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.inner_347a .sidebar-f77c {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner_347a .stone_2d93 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.inner_347a .stone_2d93 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.inner_347a .stone_2d93 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.inner_347a .stone_2d93 li strong {
    color: var(--warning-color);
}

.outer_f5d3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outer_f5d3 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.image-blue-1dbb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-dim-23fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-dim-23fa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-3634 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-3634 .surface-686e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.iron_affd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plasma_cc9f {
    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);
}

.plasma_cc9f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.rough_1f49 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-c90c {
    flex: 1;
}

.tooltip_b7a0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.active_9082 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.container-810a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.column_51c8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.border_2bb2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .border_2bb2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_0ad5 {
    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);
}

.tertiary_0ad5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label-ab67 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_c947 {
    color: var(--text-gray);
    font-size: 1rem;
}

.nav_e603 {
    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);
}

.logo-south-ba56 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.logo-south-ba56 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.gallery_0b62 { 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; }
.down-4bab, .list-862b { max-width:100%; height:auto; }

.stone-f907, .menu_cc72, .focus-696a { white-space:normal; }

.tertiary-light-2e84,
.input_d2c2,
.layout-medium-7aef,
.sidebar_over_4a89,
.column_833e,
.chip-c857 {
  flex-wrap:wrap;
}

[class*="grid"],
.border_2bb2,
.thumbnail_hard_4ebf,
.grid_783b {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.image-cool-9159 img,
.input_d2c2 img,
.content_brown_7783 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.first_3d7e, .popup_small_891f,
.dirty_dea0, .orange-4536 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.progress_under_1b3f { width:100%; overflow-x:auto; }
.progress_under_1b3f table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.avatar-lower-2113 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .avatar-lower-2113 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.summary-steel-2781 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.progress_pro_07ce,
.logo_47d7,
.breadcrumb_3149,
.wrapper_west_1df1,
.heading_center_6b98,
.border_2bb2,
.thumbnail_hard_4ebf,
.grid_783b,
.input_glass_3d62,
.surface-ef3f,
.avatar-lower-2113 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .progress_pro_07ce,
  .logo_47d7,
  .breadcrumb_3149,
  .wrapper_west_1df1,
  .heading_center_6b98,
  .border_2bb2,
  .thumbnail_hard_4ebf,
  .grid_783b,
  .input_glass_3d62,
  .surface-ef3f,
  .avatar-lower-2113 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.bottom_3a95,
.right_806d,
.tertiary_0ad5,
.blue_cb9e,
.row-east-8adb,
.lite-28d4,
.icon_a8ed,
.summary-steel-2781 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.input_west_6cbb,
.old-f83b,
.steel_4888 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.input_west_6cbb > *,
.old-f83b > *,
.steel_4888 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 5a5b */
.shadow-element-r2 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
