/* {$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;
}

.iron_37ad {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.message_gold_fad4 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .message_gold_fad4 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .message_gold_fad4 {
        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 */
.background-082d {
    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);
}

.static_4fb4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .static_4fb4 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .element-aab3 {
        grid-column: 1;
    }
    
    .element-next-9b6e {
        grid-column: 2;
    }
    
    .secondary_bfe1 {
        grid-column: 3;
    }
}

.element-aab3 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.element-aab3:hover img {
    transform: scale(1.05);
}

/* Navigation */
.search_short_b746 {
    display: none;
}

@media (min-width: 1024px) {
    .search_short_b746 {
        display: block;
    }
}

/* Grouped Navigation */
.pro-ba37 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.content-dirty-8ebb {
    position: relative;
}

.accent-motion-8811 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.content-dirty-8ebb .hot-975c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hot-975c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.fluid_02d1 {
    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;
}

.fluid_02d1:hover,
.fluid_02d1.fn-active-8daa {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.alert_5eb9 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .alert_5eb9 {
        display: flex;
    }
}

/* Mobile Register Button */
.element-next-9b6e {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .element-next-9b6e {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.shadow_180d {
    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;
}

.shadow_180d::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 */
.secondary_bfe1 {
    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) {
    .secondary_bfe1 {
        display: none;
    }
}

.secondary_bfe1 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.secondary_bfe1.fn-active-8daa span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.secondary_bfe1.fn-active-8daa span:nth-child(2) {
    opacity: 0;
}

.secondary_bfe1.fn-active-8daa span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.widget-dim-5750 {
    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;
}

.widget-dim-5750.fn-active-8daa {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.surface-huge-9095 {
    overflow: hidden;
}

.avatar-f048 {
    list-style: none;
    padding: 0.75rem 0;
}

.hero_eeda {
    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;
}

.hero_eeda:hover,
.hero_eeda.fn-active-8daa {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.hero_eeda.disabled_pink_1d2b {
    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;
}

.hero_eeda.disabled_pink_1d2b::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 */
.picture-c051 {
    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;
}

.narrow-565e {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.narrow-565e:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.banner-next-feaa {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.banner-next-feaa:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.bright-0972 {
    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;
}

.bright-0972:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.carousel_plasma_ea46 {
    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;
}

.current-1bb6 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.current-1bb6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.steel_5895 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.steel_5895:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.mini-2183 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.mini-2183: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);
}

.yellow-54ad {
    font-size: 1em;
    font-weight: 700;
}

.feature-hard-5435 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.section-37f8 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.section-37f8::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;
}

.north_4443 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .north_4443 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.wrapper-first-5610 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.huge-d345 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.surface_dirty_0b94 {
    margin-bottom: 2rem;
}

.block-6df8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .block-6df8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-static-c6b8 {
    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);
}

.avatar-7ee3 {
    font-size: 1.5rem;
}

.accordion_large_c164 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.footer_29a1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hard_6a99 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.hard_6a99:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.image_f2c7 {
    text-align: center;
    margin-bottom: 3rem;
}

.action-7904 {
    margin-bottom: 1rem;
}

.white_f4f5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.row_dirty_dcca {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .row_dirty_dcca {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .row_dirty_dcca.slow_744c {
        direction: rtl;
    }
    
    .row_dirty_dcca.slow_744c > * {
        direction: ltr;
    }
}

.title_black_559d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.title_black_559d:first-child {
    margin-top: 0;
}

.hero-fixed-7303 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature_2e34 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.feature_2e34:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.secondary-08a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-08a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_0862 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-742b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wide_9df7 {
    list-style: none;
}

.wide_9df7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wide_9df7 li:last-child {
    border-bottom: none;
}

/* Games Features */
.north-0145 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.popup_green_3fe0 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.slider-pro-6ec9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-current-995c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.dark_1453 {
    margin: 2rem 0;
}

.pink-fa5e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.badge-smooth-7ba7 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.status_complex_311c {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.prev_7468 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.glass-3732 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass-3732 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft_b431 {
    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);
}

.soft_b431:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.clean_307c {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tooltip-mini-7d50 {
    font-size: 1.5rem;
}

.dynamic-70b7 {
    color: var(--accent-color);
    margin: 0;
}

.column_hovered_da81 {
    list-style: none;
}

.column_hovered_da81 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.column_hovered_da81 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.module_prev_2f4c {
    margin: 2rem 0;
}

.paper_d029 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.paper_01d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .paper_01d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-80f4 {
    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);
}

.secondary-f66e {
    font-size: 1.25rem;
}

.video_active_d779 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.panel-bright-9799,
.tooltip-small-b1fc {
    text-align: center;
    margin: 2rem 0;
}

.notice_450e,
.component-7599 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.texture-800f {
    margin: 2rem 0;
    text-align: center;
}

.green_54a0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.green_54a0::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;
}

.preview-a763 {
    position: relative;
    z-index: 1;
}

.selected_1423 {
    margin-bottom: 1rem;
}

.pagination_plasma_4835 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detail-huge-90b4 {
    margin-bottom: 3rem;
}

.pattern-b6f5 {
    margin-top: 3rem;
}

.block_white_f228 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .block_white_f228 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_white_f228 .row-static-c6b8 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.west-87ce {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white-9ced {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.static_4023 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.list-complex-26fb {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .list-complex-26fb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list-complex-26fb {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.caption-over-356a {
    margin-bottom: 1rem;
}

.sort-new-3fac img {
    margin-bottom: 1rem;
}

.logo_solid_c271 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-a775 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.description_046f {
    list-style: none;
}

.description_046f li {
    margin-bottom: 0.5rem;
}

.description_046f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.description_046f a:hover {
    color: var(--accent-color);
}

.wide_ee8a {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.photo_24be {
    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);
}

.photo_24be:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.sidebar-32ee {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.sidebar-32ee p {
    margin-bottom: 0.25rem;
}

.dropdown-lite-e1d8 {
    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) {
    .dropdown-lite-e1d8 {
        flex-direction: row;
    }
}

.last-bd19 {
    text-align: center;
}

@media (min-width: 768px) {
    .last-bd19 {
        text-align: left;
    }
}

.last-bd19 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.panel-4e11 {
    font-size: 0.75rem !important;
}

.box_in_d99b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.modal_hard_8bef {
    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);
    }
}

.slider-complex-d2e4 {
    animation: fadeInUp 0.6s ease-out;
}

.upper_6f1b {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.border-7c68 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-7c68 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.layout_7009 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_7009 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_silver_2ca6 {
    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);
}

.tooltip_silver_2ca6 .slider-pro-6ec9 {
    font-size: 1.25rem;
}

.tooltip_silver_2ca6 .button_9cae {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.texture-df05 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture-df05 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-303f {
    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);
}

.surface-303f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-d69e {
    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);
}

.cold_90f3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.action_c4d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-a9c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_7973 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.old_7973 .border-current-995c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.old_7973 .background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall_9919 {
    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);
}

.module_ace8 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.module_ace8 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.module_ace8 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.breadcrumb-9677 {
    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);
}

.description-d9e8 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.focus_c421 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.focus_c421 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus_c421 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);
}

.focus_c421 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.focus_c421 input::placeholder {
    color: var(--text-muted);
}

.border_plasma_66ae {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-easy-293c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.video-easy-293c input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.black-44f9 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.black-44f9:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.paper_01d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paper_01d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-80f4 {
    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);
}

.iron-80f4 .secondary-f66e {
    font-size: 1.25rem;
}

.iron-80f4 .video_active_d779 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.sidebar_stone_61ad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_0fca {
    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);
}

.right_0fca .slider-pro-6ec9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.right_0fca .border-current-995c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right_0fca .background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_6e50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark_977e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark_977e .stale-b29c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark_977e .sidebar_9015 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info_fresh_8bde {
    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);
}

.progress_west_6625 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .progress_west_6625 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange-5210 {
    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);
}

.orange-5210:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow-2419 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.column-new-4f0a {
    flex: 1;
}

.full_8f58 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dropdown_15c6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lower-674f {
    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);
}

.lower-674f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.pattern_medium_1313 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_medium_1313 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_huge_bf28 {
    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);
}

.overlay_huge_bf28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-basic-7f1a {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_4e94 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header_335d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media_215d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-outer-0de8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-active-0999 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_5fcc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.middle_5fcc .notification_warm_f436 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.middle_5fcc .south_b32d {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-orange-9d7b {
    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);
}

.media_over_adc1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_dbfa {
    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_dbfa .slider-pro-6ec9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_dbfa .border-current-995c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list_dbfa .background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-4441 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-4441 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick_961a {
    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);
}

.thick_961a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.badge-5202 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-5202 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-330e {
    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);
}

.in-330e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_selected_4db1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_center_ab2f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-smooth-7ba7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.picture_7816 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.main_fast_c4bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top_9f5e {
    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);
}

.top_9f5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion_56b5 {
    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);
}

.footer_8916 {
    flex: 1;
}

.clean-83a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.sort-tall-498f {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.status_inner_2b6a {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_clean_7733 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fresh-271d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh-271d .stale-b29c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fresh-271d .sidebar_9015 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-small-b1fc {
    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);
}

.complex-fdef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-fdef {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.table_7668 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_7668 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed-ebc1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pressed-ebc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_ff13 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple_c5e3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.alert-a3ac {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.button_dim_7355 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.new-b7bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass-e015 {
    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);
}

.short_7a57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button_north_9052 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower-4f3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_over_adc1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_dbfa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.list_dbfa .border-current-995c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_dbfa .background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma_b972 {
    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);
}

.alert_0805 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert_0805 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_0805 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.last-1480 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.last-1480:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_a71a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.basic-878d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.icon_301f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.liquid-2d07 {
    padding: 1.5rem;
}

.background_9453 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.component-motion-158c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-motion-158c 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;
}

.component-motion-158c li:last-child {
    border-bottom: none;
}

.component-motion-158c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.header_blue_0727 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_blue_0727 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass-7987 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.glass-7987:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_5a3d {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_8034 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture_wide_6bd6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search-tiny-d89b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lower_589a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_f596 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_under_c74b {
    font-size: 2rem;
    flex-shrink: 0;
}

.south_56c5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_0f94 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-8de2 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.first-4bd5 {
    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);
}

.menu_6fee {
    text-align: center;
}

.dropdown-1250 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_smooth_65f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header_wide_9f73 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow-cc4b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow-cc4b .border-current-995c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.yellow-cc4b .background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-hot-a528 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-hot-a528 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-hot-a528 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_glass_ac26 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.text_glass_ac26:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.iron_202e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.list_narrow_d910 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.border-current-995c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.out-b7ba {
    padding: 1.5rem;
}

.background-pressed-553a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solid-d57d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solid-d57d 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;
}

.solid-d57d li:last-child {
    border-bottom: none;
}

.solid-d57d li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.main-paper-bffe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.texture_17a0 {
    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);
}

.texture_17a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-4021 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown-df9a {
    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);
}

.popup-d69e {
    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;
}

.cold_90f3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_c4d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_c9c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-2742 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_soft_418f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-mini-958a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.input_db7c {
    display: flex;
    gap: 1rem;
}

.input_db7c .avatar-east-2735 {
    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;
}

.aside_glass_48f6 {
    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);
}

.top-2986 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.motion-8c07 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion-8c07 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.motion-8c07 li:last-child {
    border-bottom: none;
}

.motion-8c07 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.pagination_old_080d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pagination_old_080d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pagination_old_080d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static_f04e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.static_f04e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner-6c50 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-liquid-c571 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification_warm_f436 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.link-a93e {
    font-size: 1rem;
}

.red-2627 {
    padding: 1.5rem;
}

.south_b32d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.search_6e16 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.search_6e16 .menu_6fee {
    text-align: center;
}

.search_6e16 .block_smooth_65f4 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.search_6e16 .hidden-dynamic-5b9d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.advanced_8d7e {
    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);
}

.advanced_8d7e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.title_6eec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_6eec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-black-eb9e {
    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);
}

.summary-black-eb9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-ded7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple-61e6 {
    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);
}

.footer_medium_5e49 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_8d10 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_fresh_9b80 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-f6a1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.next_4872 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-d30b {
    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);
}

.photo_5101 {
    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;
}

.photo_5101.table_f4b6 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.photo_5101.mini_510f {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.photo_5101.rough_4149 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.photo_5101.nav_full_e1d6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.photo_5101.complex_d4b8 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.notification-0270 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.down-7bbb {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_9caa {
    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);
}

.active_90b0 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo_6e50 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_6e50 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;
}

.photo_6e50 li:last-child {
    border-bottom: none;
}

.photo_6e50 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wide_e0c1 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wide_e0c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide_e0c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-next-fc3b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-next-fc3b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-next-fc3b.shade_bronze_d59a {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .feature-next-fc3b.shade_bronze_d59a {
        grid-column: span 3;
    }
}

.notification-1c2e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.feature-next-fc3b.shade_bronze_d59a .notification-1c2e {
    background: rgba(6, 182, 212, 0.1);
}

.description-dirty-954f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.avatar_39a6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.feature-next-fc3b.shade_bronze_d59a .avatar_39a6 {
    color: var(--info-color);
}

.hero-b9cd {
    padding: 1.5rem;
    text-align: center;
}

.detail-green-d5fb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-next-fc3b.shade_bronze_d59a .detail-green-d5fb {
    color: var(--info-color);
}

.row-5f3b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.orange_90b9 {
    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 */
.footer-59f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-59f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_under_2094 {
    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);
}

.photo_under_2094:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_8fef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_0fca {
    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);
}

.secondary-f66e {
    font-size: 2rem;
    flex-shrink: 0;
}

.north-b1c1 {
    flex: 1;
}

.paper_d029 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_upper_ced6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-4c42 {
    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);
}

.copper-ac8c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar_7613 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal_hard_8bef {
    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);
}

.middle_9b91 {
  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);
}

.middle_9b91 .menu_6fee {
    text-align: center;
}

.middle_9b91 .dropdown-1250 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.middle_9b91 .block_smooth_65f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.grid_6d72 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel_4dea {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-lite-a652 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb_soft_3603 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_e065 {
    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);
}

.info_middle_a9f5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro_4db1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-center-1ea1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .text-center-1ea1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .text-center-1ea1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_tiny_c339 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.box_tiny_c339:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool_1db2 {
    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);
}

.carousel-outer-d752 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.copper-ce4e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.photo-gold-c370 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.photo-gold-c370.secondary_bright_eaa2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.photo-gold-c370.form-pink-a076 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.photo-gold-c370.texture-d563 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.glass-018c {
    padding: 1.5rem;
    text-align: center;
}

.tooltip-light-2493 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.narrow_2ac6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.narrow_2ac6 .content-basic-1d60 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.gold_8ee3 {
    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);
}

.gold_8ee3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.status-top-786d {
  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);
}

.tooltip_thick_46e0 {
    text-align: center;
}

.tooltip_thick_46e0 .dropdown-1250 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.tooltip_thick_46e0 .block_smooth_65f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.outer-d1e0 { text-align: center; }
.preview_5564 { text-align: left; }
.layout-3e60 { text-align: right; }

.under-677e { margin-bottom: 0; }
.gallery-east-926c { margin-bottom: 0.5rem; }
.right_b77d { margin-bottom: 1rem; }
.rough_9eed { margin-bottom: 1.5rem; }
.background_gold_5f17 { margin-bottom: 2rem; }

.avatar_paper_b5fb { margin-top: 0; }
.gradient-9e68 { margin-top: 0.5rem; }
.module_5a26 { margin-top: 1rem; }
.progress_56b8 { margin-top: 1.5rem; }
.section-short-d756 { margin-top: 2rem; }

.fn-hidden-8daa { display: none; }
.fn-visible-8daa { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .section-37f8 {
        padding: 6rem 0 3rem;
    }
    
    .north_4443 {
        text-align: center;
    }
    
    .row_dirty_dcca {
        text-align: center;
    }
    
    .block-6df8 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .background-082d,
    .widget-dim-5750,
    .green_54a0,
    .static_4023 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-37f8 {
        background: none;
    }
}

/* Providers Section */
.heading_up_606e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_2980 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_2980 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress_2980 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-9c41 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tabs-9c41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion-last-37c3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pattern-hovered-e2d8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.smooth-33ad {
    list-style: none;
    padding: 0;
}

.smooth-33ad li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.smooth-33ad li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.clean-dc6a {
    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);
}

.clean-dc6a p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.cool_ad6f {
    padding: var(--section-padding);
}

.form-d8b9 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-d8b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev_7a95 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.prev_7a95:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.current-5469 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.iron-2134 {
    display: flex;
    flex-direction: column;
}

.layout_c184 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.notice_ff70 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feature_complex_8798 {
    color: var(--accent-color);
}

.plasma_225d {
    font-size: 1.25rem;
}

.thumbnail-9d1b {
    margin-bottom: 1rem;
}

.thumbnail-9d1b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.overlay-32ee {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.heading-d120 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.menu_6fee {
    text-align: center;
}

.dropdown-1250 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_smooth_65f4 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.outer_beae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_2341 {
    margin: 2rem 0;
}

.prev-b87d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.prev-b87d .slider-pro-6ec9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hot_f718 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.search_4d09 {
    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;
}

.search_4d09:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border-d24d {
    font-size: 2rem;
}

.outer_a58b {
    display: flex;
    flex-direction: column;
}

.link_purple_e3cd {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.steel-29af {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.accent-fixed-c188 {
    padding: var(--section-padding);
}

.avatar-silver-efb2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .avatar-silver-efb2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-silver-efb2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_57e7 {
    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);
}

.pagination_57e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pagination_57e7 .dropdown-1250 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.pagination_57e7 .block_smooth_65f4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.pagination_57e7 .form-full-107a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.lower_1020 {
    margin-top: 4rem;
}

.table-simple-3535 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.label_48b1 {
    overflow-x: auto;
}

.mask-thick-10ff {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mask-thick-10ff thead {
    background: var(--accent-color);
}

.mask-thick-10ff th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.mask-thick-10ff td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-thick-10ff tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.mask-thick-10ff tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.table-green-6833 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-in-e4a6 {
    max-width: 900px;
    margin: 0 auto;
}

.avatar-action-d03c {
    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);
}

.avatar-action-d03c:hover {
    border-color: var(--accent-color);
}

.in_94b4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.in_94b4 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.row_new_9bea {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.avatar-action-d03c.fn-active-8daa .row_new_9bea {
    transform: rotate(45deg);
}

.card-west-97d5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.avatar-action-d03c.fn-active-8daa .card-west-97d5 {
    max-height: 1000px;
}

.card-west-97d5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.border_outer_c2a2 {
    padding: var(--section-padding);
}

.module_ace8 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.green-d03a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-light-b536 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-light-b536 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.texture_west_e197 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_cold_33e2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.main-5f62 {
    font-size: 2rem;
}

.highlight_active_ae53 {
    color: var(--text-white);
    margin: 0;
}

.soft-539a {
    list-style: none;
    padding: 0;
}

.soft-539a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soft-539a li:last-child {
    border-bottom: none;
}

.preview_copper_0657 {
    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);
}

.preview_copper_0657 p {
    color: var(--success-color);
    margin: 0;
}

.slow-beab {
    margin-top: 3rem;
}

.top-2986 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-black-221c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-black-221c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.badge_steel_4f6d {
    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);
}

.bottom-7057 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge_steel_4f6d p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.article_in_437f {
    padding: var(--section-padding);
}

.header_large_3d24 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_large_3d24 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_orange_323a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.grid_orange_323a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tabs-paper-4fee {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.short-6e5c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel_4956 {
    flex: 1;
}

.static-aeb4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.focus_6421 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.outer-320e {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_4d39 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_4d39:last-child {
    border-bottom: none;
}

/* Comparison Section */
.text_focused_6180 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tertiary_bright_120a {
    padding: var(--section-padding);
}

.avatar-117a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.grid-a214 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-a214 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_large_be27 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east-64bb, .content_lite_92aa, .complex-c15b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.complex-c15b {
    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 */
.over_6080 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_left_4b46 {
    margin: 2rem 0;
}

.thumbnail_7c93 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_bce6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.container_stone_a4ab {
    list-style: none;
    padding: 0;
}

.container_stone_a4ab 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;
}

.container_stone_a4ab li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.container_stone_a4ab li:last-child {
    border-bottom: none;
}

.overlay-wide-7ed4 {
    text-align: center;
    margin-top: 2rem;
}

.image_blue_1cf8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.basic-ce90 {
    padding: var(--section-padding);
}

.section_top_2e22 {
    margin: 2rem 0;
}

.pagination-5855 {
    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) {
    .pagination-5855 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pagination-5855:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_ef82 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.gas-b975 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.media_pressed_3e5d {
    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;
}

.input_a5f1 {
    flex: 1;
}

.accordion_4bb7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.steel_3f93 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.warm-d6a5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.light-969d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .light-969d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.wrapper-7d6d {
    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);
}

.wrapper-7d6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wrapper-7d6d .dropdown-1250 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wrapper-7d6d .block_smooth_65f4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.silver-b581 {
    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);
}

.button_right_2af3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.button_right_2af3 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.bright_8528 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .bright_8528 {
        grid-template-columns: 1fr 1fr;
    }
}

.overlay_yellow_d9d6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_8c85 {
    margin-bottom: 1.5rem;
}

.hard_8c85 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hard_8c85 input,
.hard_8c85 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;
}

.hard_8c85 input:focus,
.hard_8c85 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.background_7391 {
    width: 100%;
    margin-top: 1rem;
}

.article_d8f6 {
    display: flex;
    align-items: center;
}

.tabs-fixed-be97 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.container-a5f2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.pagination_mini_9096 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.caption_silver_df71 {
    color: var(--text-gray);
}

.simple-bac4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.smooth-9683 {
    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);
}

.smooth-9683 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.secondary_e53c {
    margin-top: 3rem;
}

.mini-e363 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.dropdown_3dff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-short-bbe3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.accordion_orange_1f33 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion_orange_1f33:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.summary_south_546d {
    padding: var(--section-padding);
}

.accent-over-d896 {
    margin: 2rem 0;
}

.gallery_narrow_7122 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.table-f5ad {
    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;
}

.table-f5ad:hover, .table-f5ad.fn-active-8daa {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dynamic-875b {
    display: none;
}

.dynamic-875b.fn-active-8daa {
    display: block;
}

.upper-67cf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_020b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.header_easy_ab67 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.header_easy_ab67 ul {
    list-style: none;
    padding: 0;
}

.header_easy_ab67 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.header_easy_ab67 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.box-fast-5e7a {
    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 */
.disabled-current-eb31 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow-092d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-36ca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.message-48a8 {
    color: var(--accent-color);
    margin: 0;
}

.clean-c821 {
    display: flex;
    gap: 1.5rem;
}

.menu-bronze-c403 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.info-f94a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tooltip_b717 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip_b717.paragraph_0582 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tooltip_b717.pattern_a5bd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tooltip_b717.slider_copper_08c8 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.basic-7e20 {
    margin-top: 2rem;
}

.box_1889 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.silver_c70e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .silver_c70e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small-a91e {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.header_iron_2817 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gas-14fa {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight-0d65 {
    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 */
.filter-stone-5491 {
    padding: var(--section-padding);
}

.fresh-eb41 {
    margin: 2rem 0;
}

.green-0319 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.focused-5c13 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.simple-dd77 {
    list-style: none;
    padding: 0;
}

.simple-dd77 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;
}

.simple-dd77 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.simple-dd77 li:last-child {
    border-bottom: none;
}

.tooltip_f36f {
    margin: 2rem 0;
}

.breadcrumb-4a46 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.link-d3af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link-d3af {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inner_3557 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_09a6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_c09d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dynamic-5ae1 {
    margin-top: 2rem;
}

.full_8f58 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.outline-fb28 {
    list-style: none;
    padding: 0;
}

.clean-a050 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.clean-a050 a {
    color: var(--accent-color);
    text-decoration: none;
}

.clean-a050 a:hover {
    text-decoration: underline;
}

.shade_fast_f74c {
    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 */
.carousel-aa7a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-upper-2ee5 {
    margin: 2rem 0;
}

.message-3937 {
    margin-bottom: 3rem;
}

.message-3937 .soft_bce6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.table-d3eb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.widget_d611 {
    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);
}

.widget_d611:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.widget-complex-60bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .widget-complex-60bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_blue_b086 {
    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 */
.green_a1b6 {
    padding: var(--section-padding);
}

.in-2378 {
    margin: 2rem 0;
}

.section-3fe8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.clean_2ce7 {
    overflow-x: auto;
    margin: 2rem 0;
}

.table-lite-5fcb {
    background: rgba(6, 182, 212, 0.1) !important;
}

.border_motion_fcaa {
    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;
}

.caption-paper-6fc0 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.warm_722a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .warm_722a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo-simple-5a38 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-simple-5a38 .slider-pro-6ec9 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.logo-simple-5a38 .border-current-995c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary-dim-5840 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.frame-easy-c6a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-f88a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool-f88a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange-3a01 {
    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;
}

.orange-3a01:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.message-969f {
    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);
}

.shade_08f0 {
    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;
}

.avatar-simple-d408 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form_70b3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.white_c1af {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.filter_out_8bcf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown_59f4 {
    color: var(--text-white);
    font-weight: 600;
}

.avatar_hovered_9ec1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accordion_old_997c {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion_old_997c .avatar-east-2735 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pressed_fe07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pressed_fe07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-c4ce {
    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);
}

.active-c4ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-c4ce .dropdown-1250 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-c4ce .block_smooth_65f4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dark_6703 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-8e7f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.picture-8e7f strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.new-b7bb {
    margin: 2rem 0;
}

.glass-e015 {
    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);
}

.glass-e015:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.short_7a57 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disabled-3472 {
    flex: 1;
}

.button_north_9052 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower-4f3d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.media_over_adc1 {
    margin: 2rem 0;
}

.list_dbfa {
    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_dbfa .border-current-995c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.list_dbfa .background-pressed-553a {
    color: var(--text-gray);
    margin: 0;
}

.plasma_b972 {
    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);
}

.plasma_b972 .notice_450e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.secondary-dim-5840 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.accordion_56b5 {
    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;
}

.footer_8916 {
    flex: 1;
}

.sort-tall-498f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.status_inner_2b6a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.popup-d69e {
    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;
}

.sidebar_8407 {
    flex: 1;
}

.cold_90f3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.action_c4d7 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.form_soft_418f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.video-mini-958a {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.input_db7c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.input_db7c .avatar-east-2735 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.aside_glass_48f6 {
    margin-top: 2rem;
}

.aside_glass_48f6 .top-2986 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.disabled_thick_76d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-4bd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .first-4bd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first-4bd5 .menu_6fee {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_wide_9f73 {
    margin: 2rem 0;
}

.yellow-cc4b {
    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 */
.detail-a1fb {
    padding: var(--section-padding);
}

.out-b7ba {
    margin-top: 1rem;
}

.solid-d57d {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.solid-d57d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.solid-d57d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.outline_fresh_586f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid_basic_1a33 {
    margin: 2rem 0;
}

.search-cold-8755 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.nav-a675 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.frame_c23d {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.shadow_clean_c34d {
    margin: 2rem 0;
}

.huge-2642 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.huge-2642 .soft_bce6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module-left-9eea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module-left-9eea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left-8c23 {
    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);
}

.container_d46c {
    color: var(--text-white);
    font-weight: 600;
}

.form-ca4c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.button_b4a6 {
    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);
}

.button_b4a6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.dark-2625 {
    padding: var(--section-padding);
}

.status-c185 {
    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-c185:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tabs_c2a0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_c2a0 .bottom-7057 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs_c2a0 .info-warm-a40d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.outline-6f9d {
    flex: 1;
}

.green-db26 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.carousel_f70d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel_f70d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.carousel_f70d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.chip_cbbd {
    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_cbbd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_cbbd strong {
    color: var(--warning-color);
}

/* Slots Section */
.next-b558 {
    padding: var(--section-padding);
}

.menu-outer-0de8 {
    margin: 2rem 0;
}

/* Table Games Section */
.chip_wood_6ea8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-active-0999 {
    margin: 2rem 0;
}

.middle_5fcc {
    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);
}

.middle_5fcc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.middle_5fcc .notification_warm_f436 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.middle_5fcc .south_b32d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.gradient-orange-9d7b {
    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);
}

.gradient-orange-9d7b .notice_450e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.gradient_3332 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_thick_67bf {
    margin: 2rem 0;
}

.column_5330 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.medium-0760 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary_2c6b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.selected-4a68 {
    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);
}

.selected-4a68:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.selected-4a68.fn-active-8daa {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large_6b37 {
    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);
}

.item_38fa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item_38fa strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.cold-8e3d {
    padding: var(--section-padding);
}

.brown_e9a2 {
    margin: 2rem 0;
}

.modal_dark_6ace {
    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);
}

.modal_dark_6ace:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .modal_dark_6ace {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sidebar_steel_58b5 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.slow-86d3 {
    flex: 1;
}

.primary_1790 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.layout-brown-da8e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.item_9b78 {
    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;
}

.form-orange-6b84 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notification-white-87da {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.silver-7372 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.soft-a0cb {
    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;
}

.soft-a0cb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dim-bd60 {
    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);
}

.hover-fb03 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hover-fb03 strong {
    color: var(--accent-color);
}

/* New Games Section */
.sort-12e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered-c99f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hovered-c99f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hovered-c99f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_fast_6345 {
    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;
}

.shadow_fast_6345:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.frame-7b68 {
    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;
}

.wrapper_iron_249d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.search-light-3945 {
    font-size: 2rem;
}

.new-dc12 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.popup_1020 {
    flex: 1;
}

.plasma-8b67 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.fixed_b702 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.selected-83b9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget-tall-9c90 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.border_west_8e00 {
    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;
}

.current-6def {
    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;
}

.current-6def:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.summary-advanced-5fba {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge_3f27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs_1ef1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tabs_1ef1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table_hot_6181 {
    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);
}

.layout_bronze_9e4c {
    color: var(--text-white);
    font-weight: 600;
}

.tiny-4c5e {
    color: var(--accent-color);
    font-weight: 600;
}

.status_1304 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.status_1304 strong {
    color: var(--accent-color);
}

/* Security Section */
.prev-b447 {
    padding: var(--section-padding);
}

/* Benefits Section */
.border-active-b255 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.stone-fc57 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.badge-complex-4cb4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm_388d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.chip-stale-e31c {
    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) {
    .chip-stale-e31c {
        flex-direction: column;
        gap: 1rem;
    }
}

.chip-stale-e31c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.chip-stale-e31c .popup-d69e {
    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;
}

.chip-stale-e31c .sidebar_8407 {
    flex: 1;
}

.chip-stale-e31c .cold_90f3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.chip-stale-e31c .action_c4d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hard-acc9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-acc9 .paper_d029 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard-acc9 .sidebar_stone_61ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-acc9 .sidebar_stone_61ad li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hard-acc9 .sidebar_stone_61ad li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.panel-dynamic-0451 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.thick-f662 {
    padding: var(--section-padding);
}

.row-dirty-3fda {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .row-dirty-3fda {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-left-0894 {
    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);
}

.background-left-0894:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.background-left-0894 .alert_a1b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-left-0894 .image-fc26 {
    flex: 1;
}

.background-left-0894 .stale-b29c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background-left-0894 .hero-up-5a1a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail_bottom_f9aa {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_bottom_f9aa .primary_de06 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_bottom_f9aa .accent_smooth_75ae {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.thumbnail_bottom_f9aa .accent_smooth_75ae 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);
}

.thumbnail_bottom_f9aa .accent_smooth_75ae li:last-child {
    border-bottom: none;
}

.thumbnail_bottom_f9aa .accent_smooth_75ae 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;
}

.thumbnail_bottom_f9aa .accent_smooth_75ae li strong {
    color: var(--text-white);
}

.picture_gold_12a2 {
    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);
}

.picture_gold_12a2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture_gold_12a2 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.sort_medium_af64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_bright_1a54 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .caption_bright_1a54 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outline-outer-66c7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outline-outer-66c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail_51a9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade-lite-56db {
    font-size: 2rem;
}

.first_da73 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.message-1048 {
    flex: 1;
}

.picture-4b02 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture-4b02 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.picture-4b02 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.easy-40ae {
    margin-top: 3rem;
}

.green-0319 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.focused-5c13 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.simple-dd77 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-dd77 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.simple-dd77 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.simple-dd77 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.pattern_in_f236 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_fluid_dff8 {
    margin: 2rem 0;
}

.iron-aff2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.iron-aff2 .soft_bce6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.last_7343 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .last_7343 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-8023 {
    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);
}

.text-8023:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.label-white-0394 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-light-08b1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.down_008c {
    padding: var(--section-padding);
}

.tabs-down-dae5 {
    margin: 2rem 0;
}

.table_2dc1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .table_2dc1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_2dc1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-9d14 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main-9d14:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.filter_simple_c236 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tall-5d9e {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.tag_d452 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag_d452.pattern-dirty-28f7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.fluid-55b6 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.breadcrumb-c7d4 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.backdrop-18c1 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container-f067 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.short_b941 {
    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);
}

.short_b941 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.short_b941 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.tabs-medium-b596 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_f43c {
    margin: 2rem 0;
}

.dropdown_756b {
    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) {
    .dropdown_756b {
        flex-direction: column;
        gap: 1rem;
    }
}

.dropdown_756b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dropdown_756b::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);
}

.tiny-9c3e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.east-b832 {
    flex: 1;
}

.label_tiny_5daf {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.menu-tiny-8de0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-tiny-8de0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.component-f8ab {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-4f5e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prev_c5cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .prev_c5cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-645b {
    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);
}

.south_c50d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active-4a17 {
    flex: 1;
}

.popup_top_0877 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.north_bd96 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fixed-6c0e {
    margin-top: 2rem;
    text-align: center;
}

.message_iron_8c36 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message_iron_8c36 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.title_6eec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_6eec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-black-eb9e {
    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);
}

.summary-black-eb9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-black-eb9e .pagination_5a3d {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-black-eb9e .notice_8034 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.summary-black-eb9e .texture_wide_6bd6 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.summary-black-eb9e .search-tiny-d89b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.header_narrow_cdc7 {
    padding: var(--section-padding);
}

.purple-61e6 .sidebar-6a2a {
    flex: 1;
}

/* Promo Calendar Section */
.chip-advanced-dfe1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification_top_d8bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_top_d8bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic_78ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-fea9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.disabled_pressed_bcdd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paragraph-green-e30c {
    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);
}

.aside-silver-d80b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hard_5d75 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.title_plasma_441d {
    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);
}

.title_plasma_441d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title_plasma_441d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.disabled-north-32f2 {
    padding: var(--section-padding);
}

.pagination_505f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination_505f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input-2d6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_9097 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_0a0f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_0a0f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-plasma-a4fd {
    margin-top: 3rem;
}

.texture-plasma-a4fd .green-0319 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.texture-plasma-a4fd .focused-5c13 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture-plasma-a4fd .simple-dd77 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.texture-plasma-a4fd .simple-dd77 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.texture-plasma-a4fd .simple-dd77 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.texture-plasma-a4fd .simple-dd77 li strong {
    color: var(--warning-color);
}

.content_6629 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.content_6629 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.thumbnail-15df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.center-6b23 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center-6b23 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-inner-db50 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-inner-db50 .soft_bce6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.liquid-a6ca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail_e580 {
    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);
}

.thumbnail_e580:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.label-advanced-a854 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main-e4eb {
    flex: 1;
}

.dropdown_north_5389 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.complex_7ea5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.row_0220 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.active_2fae {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.small-6a2a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .small-6a2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_brown_c15f {
    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);
}

.content_brown_c15f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy-336a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery_advanced_200c {
    color: var(--text-gray);
    font-size: 1rem;
}

.button_right_2af3 {
    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);
}

.solid_d0db {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.solid_d0db strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.message_gold_fad4 { 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; }
.hard_6a99, .feature_2e34 { max-width:100%; height:auto; }

.picture-c051, .bright-0972, .carousel_plasma_ea46 { white-space:normal; }

.north_4443,
.row_dirty_dcca,
.footer-59f9,
.title_6eec,
.media_over_adc1,
.text-center-1ea1 {
  flex-wrap:wrap;
}

[class*="grid"],
.small-6a2a,
.table_2dc1,
.block_white_f228 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.section-37f8 img,
.row_dirty_dcca img,
.footer_29a1 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.wrapper-first-5610, .huge-d345,
.action-7904, .white_f4f5 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.label_48b1 { width:100%; overflow-x:auto; }
.label_48b1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.progress_2980 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .progress_2980 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.tabs-9c41 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.avatar-silver-efb2,
.pagination-249b,
.tabs-b288,
.footer_100a,
.light-969d,
.small-6a2a,
.table_2dc1,
.block_white_f228,
.status-top-786d,
.brown_e9a2,
.progress_2980 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .avatar-silver-efb2,
  .pagination-249b,
  .tabs-b288,
  .footer_100a,
  .light-969d,
  .small-6a2a,
  .table_2dc1,
  .block_white_f228,
  .status-top-786d,
  .brown_e9a2,
  .progress_2980 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.pagination_57e7,
.wrapper-7d6d,
.content_brown_c15f,
.row-static-c6b8,
.main-9d14,
.tooltip_thick_46e0,
.modal_dark_6ace,
.tabs-9c41 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.thumbnail_75f8,
.breadcrumb_dark_7f14,
.brown_5ee4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.thumbnail_75f8 > *,
.breadcrumb_dark_7f14 > *,
.brown_5ee4 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: a9da */
.ghost-box-v4 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
