/* {$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;
}

.sidebar_1d19 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.brown_eb5a {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .brown_eb5a {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .brown_eb5a {
        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 */
.focus_5ab8 {
    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);
}

.main-dd8a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .main-dd8a {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .out-8cbf {
        grid-column: 1;
    }
    
    .active-basic-5186 {
        grid-column: 2;
    }
    
    .gradient-57b1 {
        grid-column: 3;
    }
}

.out-8cbf img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.out-8cbf:hover img {
    transform: scale(1.05);
}

/* Navigation */
.smooth-5d0d {
    display: none;
}

@media (min-width: 1024px) {
    .smooth-5d0d {
        display: block;
    }
}

/* Grouped Navigation */
.media-fbb1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.progress-plasma-0ed1 {
    position: relative;
}

.narrow-af35 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.progress-plasma-0ed1 .cool-67ff {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.cool-67ff {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.paragraph-cd1a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}

.paragraph-cd1a:hover,
.paragraph-cd1a.fn-active-4a33 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.banner_12d4 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .banner_12d4 {
        display: flex;
    }
}

/* Mobile Register Button */
.active-basic-5186 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .active-basic-5186 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.paragraph_old_03a0 {
    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;
}

.paragraph_old_03a0::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 */
.gradient-57b1 {
    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) {
    .gradient-57b1 {
        display: none;
    }
}

.gradient-57b1 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.gradient-57b1.fn-active-4a33 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.gradient-57b1.fn-active-4a33 span:nth-child(2) {
    opacity: 0;
}

.gradient-57b1.fn-active-4a33 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.caption_fluid_23be {
    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;
}

.caption_fluid_23be.fn-active-4a33 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.layout-small-7bbb {
    overflow: hidden;
}

.detail-solid-c657 {
    list-style: none;
    padding: 0.75rem 0;
}

.media-8618 {
    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;
}

.media-8618:hover,
.media-8618.fn-active-4a33 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.media-8618.short_9d3e {
    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;
}

.media-8618.short_9d3e::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 */
.outer_c148 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.hard_b9e3 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.hard_b9e3:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.fluid_f186 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.fluid_f186:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.green-f33e {
    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;
}

.green-f33e:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.fixed_5f3b {
    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;
}

.paragraph-3dc0 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.paragraph-3dc0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fast-a1ec {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fast-a1ec:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.slow-90ef {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.slow-90ef: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);
}

.dim-e183 {
    font-size: 1em;
    font-weight: 700;
}

.sidebar_8c83 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.avatar-a71c {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.avatar-a71c::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;
}

.lite_213f {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .lite_213f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.alert-c1b9 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-a269 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hidden-0708 {
    margin-bottom: 2rem;
}

.status-ff58 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .status-ff58 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-7e19 {
    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);
}

.header_eb60 {
    font-size: 1.5rem;
}

.label_d141 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.tabs_white_db05 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.down-dcea {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.down-dcea:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.old-ab7d {
    text-align: center;
    margin-bottom: 3rem;
}

.column_slow_281c {
    margin-bottom: 1rem;
}

.frame_focused_e715 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.static_c457 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .static_c457 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .static_c457.paragraph_gold_02b6 {
        direction: rtl;
    }
    
    .static_c457.paragraph_gold_02b6 > * {
        direction: ltr;
    }
}

.bottom-a15a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.bottom-a15a:first-child {
    margin-top: 0;
}

.feature_selected_7e82 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-057d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.section-057d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.down_b0e7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_b0e7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-in-eb38 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.plasma_3729 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.paragraph_warm_1eec {
    list-style: none;
}

.paragraph_warm_1eec li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_warm_1eec li:last-child {
    border-bottom: none;
}

/* Games Features */
.tall-961e {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.fixed_8a39 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wrapper_fc5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini_6929 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.grid_yellow_e16f {
    margin: 2rem 0;
}

.media_hot_6b5f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.last_2dc6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.content-1691 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.simple_bb8d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.background_040d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_040d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal_tall_fc3c {
    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);
}

.modal_tall_fc3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.focused-bbc9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.top-49d1 {
    font-size: 1.5rem;
}

.accent-advanced-d498 {
    color: var(--accent-color);
    margin: 0;
}

.dropdown-center-a38d {
    list-style: none;
}

.dropdown-center-a38d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.dropdown-center-a38d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.texture_3165 {
    margin: 2rem 0;
}

.menu_small_ad5c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature_b2d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .feature_b2d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-5d6e {
    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_8834 {
    font-size: 1.25rem;
}

.outline_2bfb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.soft_5961,
.aside-large-7db2 {
    text-align: center;
    margin: 2rem 0;
}

.thumbnail-255e,
.mask-726d {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.left-6e63 {
    margin: 2rem 0;
    text-align: center;
}

.widget_4bc0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.widget_4bc0::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;
}

.widget-plasma-b36f {
    position: relative;
    z-index: 1;
}

.video_west_685f {
    margin-bottom: 1rem;
}

.tabs-7129 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-2a4a {
    margin-bottom: 3rem;
}

.header-a475 {
    margin-top: 3rem;
}

.panel_db23 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .panel_db23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_db23 .gradient-7e19 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info_2c1e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pro_cdf5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.footer_f9f8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.active-d8f7 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .active-d8f7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-d8f7 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.paragraph-slow-1ac8 {
    margin-bottom: 1rem;
}

.texture-next-4550 img {
    margin-bottom: 1rem;
}

.outer-98da {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-current-57f4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.under-8a5f {
    list-style: none;
}

.under-8a5f li {
    margin-bottom: 0.5rem;
}

.under-8a5f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.under-8a5f a:hover {
    color: var(--accent-color);
}

.pattern-50f6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-f056 {
    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);
}

.slider-f056:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.grid-1d1d {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.grid-1d1d p {
    margin-bottom: 0.25rem;
}

.shade_smooth_6e28 {
    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) {
    .shade_smooth_6e28 {
        flex-direction: row;
    }
}

.accordion_8f15 {
    text-align: center;
}

@media (min-width: 768px) {
    .accordion_8f15 {
        text-align: left;
    }
}

.accordion_8f15 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade-solid-438e {
    font-size: 0.75rem !important;
}

.card_inner_ec6f {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.easy-9827 {
    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);
    }
}

.row-a645 {
    animation: fadeInUp 0.6s ease-out;
}

.message-last-b61b {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.highlight_current_5950 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_current_5950 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pattern-b198 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-b198 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-14d7 {
    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);
}

.current-14d7 .wrapper_fc5f {
    font-size: 1.25rem;
}

.current-14d7 .frame_1142 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.lite_50dc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lite_50dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-light-8824 {
    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);
}

.icon-light-8824:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-blue-bb77 {
    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);
}

.section-down-3e5a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.clean_d60e {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-e718 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_345c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_345c .mini_6929 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form_345c .medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-7397 {
    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);
}

.notification_cc50 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.notification_cc50 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.notification_cc50 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.table-3432 {
    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);
}

.prev-51f7 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.center_d6a8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.center_d6a8 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.center_d6a8 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);
}

.center_d6a8 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.center_d6a8 input::placeholder {
    color: var(--text-muted);
}

.blue_481b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress_8b22 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.progress_8b22 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.last-7634 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.last-7634:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.feature_b2d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_b2d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-5d6e {
    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);
}

.status-5d6e .secondary_8834 {
    font-size: 1.25rem;
}

.status-5d6e .outline_2bfb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.liquid-f258 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_wood_8cd0 {
    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);
}

.accent_wood_8cd0 .wrapper_fc5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_wood_8cd0 .mini_6929 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent_wood_8cd0 .medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paper_f075 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced_6982 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.advanced_6982 .outline_small_5925 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced_6982 .paragraph-9e2e {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_7202 {
    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);
}

.tag_down_22d7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag_down_22d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_c8bb {
    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);
}

.inner_c8bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget_east_f060 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.media-cool-c5b9 {
    flex: 1;
}

.breadcrumb_ac95 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled-pressed-15fe {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.selected-92f9 {
    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);
}

.selected-92f9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.highlight_basic_b182 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_basic_b182 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-steel-4095 {
    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);
}

.tertiary-steel-4095:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_static_5b2e {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced_6d76 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bronze_9fa9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.panel-fluid-b3fe {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout_4ca0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-tall-0fd8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark_d0cf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark_d0cf .highlight_de4d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark_d0cf .gas_b93e {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_outer_4496 {
    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);
}

.down-2feb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_b677 {
    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);
}

.primary_b677 .wrapper_fc5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_b677 .mini_6929 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary_b677 .medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-3fba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-3fba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-b18d {
    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);
}

.tooltip-b18d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.full_ae9d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_ae9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_ed28 {
    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);
}

.upper_ed28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-d607 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-medium-0a52 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last_2dc6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.badge-4d69 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.first-ca3e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade-basic-fce4 {
    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);
}

.shade-basic-fce4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow-c761 {
    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);
}

.fixed-2251 {
    flex: 1;
}

.smooth_0d62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.chip_green_66f6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery_complex_4aaf {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_motion_b1e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_north_5d14 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_north_5d14 .outline_small_5925 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_north_5d14 .paragraph-9e2e {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-large-7db2 {
    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);
}

.preview-next-8332 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-next-8332 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.paragraph-4845 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-4845 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_a5ad {
    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);
}

.red_a5ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft-c139 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-lite-6618 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inner-025d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.next-aeb5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element-pressed-9006 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_simple_0e55 {
    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);
}

.basic-a689 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-a06b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.inner_ee9c {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-2feb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_b677 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.primary_b677 .mini_6929 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_b677 .medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-cold-0a9f {
    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);
}

.under_06d7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .under_06d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .under_06d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_c552 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.simple_c552:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture_d8d3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slow-9c15 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status-6ece {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tertiary_large_2ce9 {
    padding: 1.5rem;
}

.hidden_left_6e74 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden_051f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_051f 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;
}

.hidden_051f li:last-child {
    border-bottom: none;
}

.hidden_051f li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.banner-11c2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner-11c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_0568 {
    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);
}

.backdrop_0568:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface_df34 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west-62b0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copper_d11e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo-new-d2a8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.info-thick-7a86 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-c89e {
    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);
}

.next-429b {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold_e5e0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress-motion-d3cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_83f0 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dark-2b17 {
    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);
}

.green-2afc {
    text-align: center;
}

.medium-7f17 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lite-2872 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice_fced {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-advanced-0cd1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-advanced-0cd1 .mini_6929 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-advanced-0cd1 .medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-56a7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid-56a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-56a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action_e9b9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.action_e9b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper_6b7e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_3e81 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mini_6929 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.slider_a5f7 {
    padding: 1.5rem;
}

.medium_1228 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row-purple-3969 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row-purple-3969 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;
}

.row-purple-3969 li:last-child {
    border-bottom: none;
}

.row-purple-3969 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.glass-c18e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.in_354c {
    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_354c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas-ac7a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_last_3920 {
    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);
}

.tooltip-blue-bb77 {
    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;
}

.section-down-3e5a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.clean_d60e {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-f998 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-805d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail_bronze_e370 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.purple-6d66 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wrapper_ac01 {
    display: flex;
    gap: 1rem;
}

.wrapper_ac01 .widget-3bef {
    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;
}

.last-2fd6 {
    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);
}

.gallery-1433 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shade-inner-2eb7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade-inner-2eb7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.shade-inner-2eb7 li:last-child {
    border-bottom: none;
}

.shade-inner-2eb7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.small_68da {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small_68da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small_68da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-2967 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shadow-2967:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid_cold_650c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.summary_02c2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight_de4d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.smooth-b9c3 {
    font-size: 1rem;
}

.carousel-fresh-ac0f {
    padding: 1.5rem;
}

.gas_b93e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.secondary-646c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.secondary-646c .green-2afc {
    text-align: center;
}

.secondary-646c .lite-2872 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.secondary-646c .thumbnail-df35 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.badge-in-5955 {
    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);
}

.badge-in-5955:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.left-5331 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-5331 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer-2fb3 {
    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);
}

.outer-2fb3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused-a741 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-a12e {
    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);
}

.primary_e664 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-f9c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination-gas-7abd {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-09c1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo_bronze_8a79 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_gold_53dc {
    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);
}

.thumbnail-9505 {
    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;
}

.thumbnail-9505.thumbnail_tall_21f9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.thumbnail-9505.solid-ddef {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.thumbnail-9505.disabled-hard-9dbd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.thumbnail-9505.list_warm_734c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.thumbnail-9505.slider-113a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.in-b447 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.narrow_43f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current-c232 {
    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);
}

.old_a0e1 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.paper_f075 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper_f075 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;
}

.paper_f075 li:last-child {
    border-bottom: none;
}

.paper_f075 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.right_f2f1 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right_f2f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right_f2f1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_1ce4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout_1ce4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_1ce4.container_new_7820 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .layout_1ce4.container_new_7820 {
        grid-column: span 3;
    }
}

.pro-c0d4 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.layout_1ce4.container_new_7820 .pro-c0d4 {
    background: rgba(6, 182, 212, 0.1);
}

.aside-huge-2dd9 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero_0b3b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.layout_1ce4.container_new_7820 .hero_0b3b {
    color: var(--info-color);
}

.frame-mini-ecf4 {
    padding: 1.5rem;
    text-align: center;
}

.plasma_452c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.layout_1ce4.container_new_7820 .plasma_452c {
    color: var(--info-color);
}

.preview_5a5e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blue-204b {
    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 */
.up-fb9d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .up-fb9d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary-b764 {
    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);
}

.primary-b764:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_a21f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_wood_8cd0 {
    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_8834 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_9d54 {
    flex: 1;
}

.menu_small_ad5c {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid_d40a {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_5f59 {
    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);
}

.chip_down_04d2 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus_small_6dbb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.easy-9827 {
    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);
}

.short-b6b1 {
  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);
}

.short-b6b1 .green-2afc {
    text-align: center;
}

.short-b6b1 .medium-7f17 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.short-b6b1 .lite-2872 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.card-bb35 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.blue_e7e6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_warm_5653 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_inner_a00d {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex-0fb2 {
    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);
}

.input_silver_e081 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-28f1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_5aa5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_5aa5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon_5aa5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_short_66d0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.avatar_short_66d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_green_3852 {
    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);
}

.fluid-4ce7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article-d02d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.over-fb4b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.over-fb4b.column-stone-d9ba {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.over-fb4b.article-e417 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.over-fb4b.description_large_e1f0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.dark-bde8 {
    padding: 1.5rem;
    text-align: center;
}

.title-a8d4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight_thick_6644 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight_thick_6644 .disabled-simple-546e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.card-pressed-d55b {
    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);
}

.card-pressed-d55b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.section-c7ff {
  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);
}

.north_edf4 {
    text-align: center;
}

.north_edf4 .medium-7f17 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.north_edf4 .lite-2872 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.article_mini_bda4 { text-align: center; }
.paragraph_e30b { text-align: left; }
.east-7e88 { text-align: right; }

.table-eec0 { margin-bottom: 0; }
.image-294a { margin-bottom: 0.5rem; }
.full-a394 { margin-bottom: 1rem; }
.logo_cdbf { margin-bottom: 1.5rem; }
.blue-70ff { margin-bottom: 2rem; }

.widget_700d { margin-top: 0; }
.large-99a2 { margin-top: 0.5rem; }
.tooltip-db56 { margin-top: 1rem; }
.element-6f57 { margin-top: 1.5rem; }
.badge_inner_7719 { margin-top: 2rem; }

.fn-hidden-4a33 { display: none; }
.fn-visible-4a33 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .avatar-a71c {
        padding: 6rem 0 3rem;
    }
    
    .lite_213f {
        text-align: center;
    }
    
    .static_c457 {
        text-align: center;
    }
    
    .status-ff58 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .focus_5ab8,
    .caption_fluid_23be,
    .widget_4bc0,
    .footer_f9f8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .avatar-a71c {
        background: none;
    }
}

/* Providers Section */
.surface_077d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_542d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_542d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_542d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-paper-5d52 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container-paper-5d52:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_complex_0acf {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description_6433 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-afc8 {
    list-style: none;
    padding: 0;
}

.mask-afc8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask-afc8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.thumbnail_ac45 {
    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);
}

.thumbnail_ac45 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.highlight_cold_ec16 {
    padding: var(--section-padding);
}

.secondary-dd8e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-dd8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_769b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_769b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.caption-65e7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.paper_2f27 {
    display: flex;
    flex-direction: column;
}

.text-1565 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.mini_c07f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status_332f {
    color: var(--accent-color);
}

.advanced-3647 {
    font-size: 1.25rem;
}

.item_inner_4bb0 {
    margin-bottom: 1rem;
}

.item_inner_4bb0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.texture-over-db69 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.first-674f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.green-2afc {
    text-align: center;
}

.medium-7f17 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lite-2872 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.smooth-3208 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_f81a {
    margin: 2rem 0;
}

.input-fresh-885f {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.input-fresh-885f .wrapper_fc5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.pressed-467b {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.grid_d59b {
    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;
}

.grid_d59b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-0eea {
    font-size: 2rem;
}

.purple-3757 {
    display: flex;
    flex-direction: column;
}

.summary_outer_c7d3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.overlay-ff1a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.smooth_5343 {
    padding: var(--section-padding);
}

.iron_4ff9 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .iron_4ff9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .iron_4ff9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed-176e {
    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);
}

.fixed-176e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fixed-176e .medium-7f17 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.fixed-176e .lite-2872 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.fixed-176e .list_a55e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.message-d394 {
    margin-top: 4rem;
}

.plasma-da71 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.title-static-2350 {
    overflow-x: auto;
}

.large_ad1b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.large_ad1b thead {
    background: var(--accent-color);
}

.large_ad1b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.large_ad1b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.large_ad1b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.large_ad1b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.block_selected_6894 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_cool_abc2 {
    max-width: 900px;
    margin: 0 auto;
}

.narrow-9857 {
    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);
}

.narrow-9857:hover {
    border-color: var(--accent-color);
}

.panel-151b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.panel-151b h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.active_over_6bc1 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.narrow-9857.fn-active-4a33 .active_over_6bc1 {
    transform: rotate(45deg);
}

.image-fed8 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.narrow-9857.fn-active-4a33 .image-fed8 {
    max-height: 1000px;
}

.image-fed8 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.focus-ea43 {
    padding: var(--section-padding);
}

.notification_cc50 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.link_first_9b79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-f87b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-f87b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_76b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_febc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.steel-270f {
    font-size: 2rem;
}

.inner_5582 {
    color: var(--text-white);
    margin: 0;
}

.block_fast_a8df {
    list-style: none;
    padding: 0;
}

.block_fast_a8df li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block_fast_a8df li:last-child {
    border-bottom: none;
}

.pagination_3fb0 {
    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);
}

.pagination_3fb0 p {
    color: var(--success-color);
    margin: 0;
}

.progress_bf5b {
    margin-top: 3rem;
}

.gallery-1433 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.shadow_f5f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shadow_f5f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.glass_69f0 {
    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);
}

.header-selected-8e03 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.glass_69f0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.photo-0d25 {
    padding: var(--section-padding);
}

.hover_fixed_5e9e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_fixed_5e9e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-22d2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pressed-22d2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.accordion-cold-4a38 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chip-upper-568b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.item-f6f7 {
    flex: 1;
}

.rough_6d98 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tall-1c89 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.shadow_stale_868e {
    color: var(--text-gray);
    line-height: 1.6;
}

.north_8c84 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.north_8c84:last-child {
    border-bottom: none;
}

/* Comparison Section */
.thick-e268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.photo_0fe6 {
    padding: var(--section-padding);
}

.advanced-0c14 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.gold-7503 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-7503 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-c07f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-white-43db, .mini-1471, .secondary-0e14 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.secondary-0e14 {
    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 */
.rough-68cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_6c1b {
    margin: 2rem 0;
}

.feature-brown-8211 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_stone_1c73 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.glass-e81e {
    list-style: none;
    padding: 0;
}

.glass-e81e 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;
}

.glass-e81e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.glass-e81e li:last-child {
    border-bottom: none;
}

.tooltip_df18 {
    text-align: center;
    margin-top: 2rem;
}

.wrapper_fec5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.red-3f46 {
    padding: var(--section-padding);
}

.gallery-0306 {
    margin: 2rem 0;
}

.search-dark-bac7 {
    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) {
    .search-dark-bac7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.search-dark-bac7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focus_8359 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.fresh_0225 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.stone-21ef {
    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;
}

.hover_8c0c {
    flex: 1;
}

.background_stone_3d68 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.detail_hard_4b10 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tiny_5fcf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.content_last_354e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .content_last_354e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.accordion-fdb8 {
    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);
}

.accordion-fdb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion-fdb8 .medium-7f17 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-fdb8 .lite-2872 {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop_north_06ba {
    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);
}

.table-60a9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.table-60a9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.search_motion_40da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .search_motion_40da {
        grid-template-columns: 1fr 1fr;
    }
}

.full_95d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white_309e {
    margin-bottom: 1.5rem;
}

.white_309e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.white_309e input,
.white_309e 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;
}

.white_309e input:focus,
.white_309e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pagination-a820 {
    width: 100%;
    margin-top: 1rem;
}

.element-c7da {
    display: flex;
    align-items: center;
}

.secondary-dark-8948 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.logo-easy-3696 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.small_5acd {
    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;
}

.pattern_b352 {
    color: var(--text-gray);
}

.modal_ea60 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.red_b965 {
    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);
}

.red_b965 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.background_up_18ee {
    margin-top: 3rem;
}

.thumbnail_ec4d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.grid_gold_5c1a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_501b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.pressed_eef4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pressed_eef4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.gradient-top-ceaf {
    padding: var(--section-padding);
}

.alert_rough_5a1f {
    margin: 2rem 0;
}

.aside-prev-7097 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.content_5eb3 {
    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;
}

.content_5eb3:hover, .content_5eb3.fn-active-4a33 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.notice-4a08 {
    display: none;
}

.notice-4a08.fn-active-4a33 {
    display: block;
}

.backdrop_21c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_422d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface-19c1 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.surface-19c1 ul {
    list-style: none;
    padding: 0;
}

.surface-19c1 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.surface-19c1 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.preview_6525 {
    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 */
.module_smooth_bb47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-8ce1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old-7383 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.avatar-plasma-351a {
    color: var(--accent-color);
    margin: 0;
}

.disabled-1fa5 {
    display: flex;
    gap: 1.5rem;
}

.chip_medium_756a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.module-fixed-2143 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.badge_206f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.badge_206f.sort-213b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge_206f.logo_dynamic_a17f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge_206f.caption_out_a1f4 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.sort-pressed-f64c {
    margin-top: 2rem;
}

.hard-2e71 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.component-inner-31d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .component-inner-31d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_f7ae {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.gold_3dfa {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form_8395 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.container_1233 {
    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 */
.tiny_0f6e {
    padding: var(--section-padding);
}

.hot_4e1e {
    margin: 2rem 0;
}

.message_focused_8842 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.surface-b9c5 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.row_a633 {
    list-style: none;
    padding: 0;
}

.row_a633 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;
}

.row_a633 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.row_a633 li:last-child {
    border-bottom: none;
}

.pattern-82a2 {
    margin: 2rem 0;
}

.huge-6926 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.short-9b64 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .short-9b64 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.avatar_fast_91a1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-warm-e9c3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.inner-47ad {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tall-11fd {
    margin-top: 2rem;
}

.breadcrumb_ac95 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.progress_mini_34f3 {
    list-style: none;
    padding: 0;
}

.module-bottom-5f16 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.module-bottom-5f16 a {
    color: var(--accent-color);
    text-decoration: none;
}

.module-bottom-5f16 a:hover {
    text-decoration: underline;
}

.wrapper-c7e7 {
    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 */
.white-a662 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper_5b2f {
    margin: 2rem 0;
}

.overlay-5bda {
    margin-bottom: 3rem;
}

.overlay-5bda .link_stone_1c73 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.popup_fixed_2d6b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.huge-66ee {
    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);
}

.huge-66ee:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.huge-9b2c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .huge-9b2c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-6cae {
    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 */
.texture-clean-b398 {
    padding: var(--section-padding);
}

.heading_71ca {
    margin: 2rem 0;
}

.image_03fa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline-white-0638 {
    overflow-x: auto;
    margin: 2rem 0;
}

.wood_fff6 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.media_liquid_378c {
    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;
}

.badge_c7e6 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.dropdown-purple-6781 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .dropdown-purple-6781 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-9185 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-9185 .wrapper_fc5f {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.top-9185 .mini_6929 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail_dynamic_c551 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.blue_81d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma_e5ba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_e5ba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-cool-b8ae {
    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;
}

.article-cool-b8ae:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.backdrop_soft_d0c7 {
    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);
}

.main-selected-a78f {
    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;
}

.dark-9aeb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.disabled-51b9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.tooltip-5beb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.focus_bottom_8f3b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced_28f5 {
    color: var(--text-white);
    font-weight: 600;
}

.tabs-0cd7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.last-2409 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last-2409 .widget-3bef {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.description_first_599d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .description_first_599d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-yellow-eb91 {
    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-yellow-eb91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-yellow-eb91 .medium-7f17 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-yellow-eb91 .lite-2872 {
    color: var(--text-gray);
    font-size: 1rem;
}

.background_warm_1d9e {
    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);
}

.first_c3f1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.first_c3f1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.element-pressed-9006 {
    margin: 2rem 0;
}

.pattern_simple_0e55 {
    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);
}

.pattern_simple_0e55:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.basic-a689 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.narrow_25eb {
    flex: 1;
}

.hero-a06b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.inner_ee9c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.down-2feb {
    margin: 2rem 0;
}

.primary_b677 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_b677 .mini_6929 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.primary_b677 .medium_1228 {
    color: var(--text-gray);
    margin: 0;
}

.mask-cold-0a9f {
    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);
}

.mask-cold-0a9f .thumbnail-255e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.thumbnail_dynamic_c551 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.shadow-c761 {
    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;
}

.fixed-2251 {
    flex: 1;
}

.chip_green_66f6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.gallery_complex_4aaf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.tooltip-blue-bb77 {
    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;
}

.caption_30f9 {
    flex: 1;
}

.section-down-3e5a {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.clean_d60e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.thumbnail_bronze_e370 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.purple-6d66 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.wrapper_ac01 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.wrapper_ac01 .widget-3bef {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.last-2fd6 {
    margin-top: 2rem;
}

.last-2fd6 .gallery-1433 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.thick-d8b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark-2b17 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dark-2b17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-2b17 .green-2afc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_fced {
    margin: 2rem 0;
}

.feature-advanced-0cd1 {
    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 */
.tabs_small_c5a2 {
    padding: var(--section-padding);
}

.slider_a5f7 {
    margin-top: 1rem;
}

.row-purple-3969 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.row-purple-3969 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.row-purple-3969 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.border-5309 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold_4028 {
    margin: 2rem 0;
}

.west_fc56 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.active_95c0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero_9cdd {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.item_first_4680 {
    margin: 2rem 0;
}

.accordion-hard-e43e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accordion-hard-e43e .link_stone_1c73 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon_8a49 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .icon_8a49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip_95cf {
    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);
}

.picture_6b72 {
    color: var(--text-white);
    font-weight: 600;
}

.easy_d86e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.primary-stale-163c {
    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);
}

.primary-stale-163c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.component-east-f616 {
    padding: var(--section-padding);
}

.layout_warm_3c2f {
    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;
}

.layout_warm_3c2f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.lower_522d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lower_522d .header-selected-8e03 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower_522d .input-out-0840 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.thumbnail_faad {
    flex: 1;
}

.picture-huge-49bb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focused-97ce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-97ce li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focused-97ce li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.center-a08f {
    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);
}

.center-a08f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center-a08f strong {
    color: var(--warning-color);
}

/* Slots Section */
.wrapper_complex_afd2 {
    padding: var(--section-padding);
}

.layout_4ca0 {
    margin: 2rem 0;
}

/* Table Games Section */
.status_c1b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-tall-0fd8 {
    margin: 2rem 0;
}

.dark_d0cf {
    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);
}

.dark_d0cf:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dark_d0cf .highlight_de4d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark_d0cf .gas_b93e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.logo_outer_4496 {
    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);
}

.logo_outer_4496 .thumbnail-255e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.orange-47ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-8a87 {
    margin: 2rem 0;
}

.block-hovered-dcec {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-in-7d20 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.advanced-2614 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider_new_48e4 {
    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);
}

.slider_new_48e4:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.slider_new_48e4.fn-active-4a33 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-1ac1 {
    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);
}

.gallery_7316 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery_7316 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.background_fixed_60a1 {
    padding: var(--section-padding);
}

.outer_9ccd {
    margin: 2rem 0;
}

.light-41c2 {
    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);
}

.light-41c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .light-41c2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.warm_80eb {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.progress-45b4 {
    flex: 1;
}

.dim-8c74 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tertiary_bronze_8182 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.banner_736d {
    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_bright_cecb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus-current-eb0d {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pattern-slow-79c1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.smooth-4ac5 {
    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;
}

.smooth-4ac5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filter-out-3ef8 {
    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);
}

.lite-6111 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lite-6111 strong {
    color: var(--accent-color);
}

/* New Games Section */
.card-down-d558 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-37af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .basic-37af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-37af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-hard-a13b {
    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;
}

.background-hard-a13b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.mini_373c {
    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;
}

.info_paper_6dfb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.tertiary-a0a0 {
    font-size: 2rem;
}

.progress_dynamic_92a1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.paper-e1ad {
    flex: 1;
}

.focus-d283 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.card_south_c62b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-977d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.basic_dd9c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.medium-6e16 {
    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;
}

.frame_9509 {
    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;
}

.frame_9509:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.grid-317f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-2065 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_advanced_e00f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .description_advanced_e00f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-short-25ed {
    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);
}

.background_34c2 {
    color: var(--text-white);
    font-weight: 600;
}

.pattern-small-4130 {
    color: var(--accent-color);
    font-weight: 600;
}

.primary_brown_bccd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.primary_brown_bccd strong {
    color: var(--accent-color);
}

/* Security Section */
.brown-de39 {
    padding: var(--section-padding);
}

/* Benefits Section */
.dark-b004 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.shadow_7d4a {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.description_9311 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_gold_70fc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.filter-a188 {
    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) {
    .filter-a188 {
        flex-direction: column;
        gap: 1rem;
    }
}

.filter-a188:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.filter-a188 .tooltip-blue-bb77 {
    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;
}

.filter-a188 .caption_30f9 {
    flex: 1;
}

.filter-a188 .section-down-3e5a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.filter-a188 .clean_d60e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.blue_7c50 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_7c50 .menu_small_ad5c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue_7c50 .liquid-f258 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue_7c50 .liquid-f258 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.blue_7c50 .liquid-f258 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.carousel-yellow-f076 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.header-5f03 {
    padding: var(--section-padding);
}

.table_cc9a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .table_cc9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-0586 {
    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);
}

.shade-0586:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.shade-0586 .slow-6cbc {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-0586 .logo-0f25 {
    flex: 1;
}

.shade-0586 .outline_small_5925 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade-0586 .modal-lite-7363 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fresh-79c7 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh-79c7 .hover-76ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh-79c7 .logo-large-fa66 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.fresh-79c7 .logo-large-fa66 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);
}

.fresh-79c7 .logo-large-fa66 li:last-child {
    border-bottom: none;
}

.fresh-79c7 .logo-large-fa66 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;
}

.fresh-79c7 .logo-large-fa66 li strong {
    color: var(--text-white);
}

.easy-31df {
    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);
}

.easy-31df p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.easy-31df strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.message_slow_ec53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh-3355 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fresh-3355 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.short_2705 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.short_2705:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_9998 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.small_f327 {
    font-size: 2rem;
}

.chip-green-65ce {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.copper_fe20 {
    flex: 1;
}

.plasma-c5c0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma-c5c0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.plasma-c5c0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.filter_2d32 {
    margin-top: 3rem;
}

.message_focused_8842 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.surface-b9c5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_a633 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row_a633 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.row_a633 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.row_a633 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.fluid-a853 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_over_9881 {
    margin: 2rem 0;
}

.secondary-clean-dccb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.secondary-clean-dccb .link_stone_1c73 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center-9d2e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .center-9d2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-white-07c6 {
    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);
}

.summary-white-07c6:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hard_a892 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-c071 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.mask_b14c {
    padding: var(--section-padding);
}

.carousel-a6e7 {
    margin: 2rem 0;
}

.notification_09d6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .notification_09d6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_09d6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-middle-b1e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface-middle-b1e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_ee41 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.border-out-78e9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.shadow_hovered_df37 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.shadow_hovered_df37.layout-hovered-fecb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.chip-fresh-9aa4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.footer_pink_17cb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.notification_362d {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.heading_top_1355 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-4de0 {
    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);
}

.hero-4de0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hero-4de0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.tertiary-f4e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview-warm-dfa3 {
    margin: 2rem 0;
}

.clean_6e8b {
    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) {
    .clean_6e8b {
        flex-direction: column;
        gap: 1rem;
    }
}

.clean_6e8b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.clean_6e8b::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);
}

.shadow-bb9e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.breadcrumb_104c {
    flex: 1;
}

.inner_9842 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay_9ce3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay_9ce3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-c820 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner_8e1e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-smooth-79fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo-smooth-79fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_active_b3af {
    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);
}

.medium-e1de {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.progress-61ea {
    flex: 1;
}

.grid_6866 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.dim-0233 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.box_red_4f87 {
    margin-top: 2rem;
    text-align: center;
}

.hot_2c6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hot_2c6b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.left-5331 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-5331 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer-2fb3 {
    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);
}

.outer-2fb3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.outer-2fb3 .surface_df34 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer-2fb3 .west-62b0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.outer-2fb3 .copper_d11e {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.outer-2fb3 .logo-new-d2a8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.advanced-8604 {
    padding: var(--section-padding);
}

.wrapper-a12e .plasma-1b09 {
    flex: 1;
}

/* Promo Calendar Section */
.input-new-c068 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-cf50 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-cf50 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_a374 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_out_9d68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.new_0708 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-cb64 {
    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);
}

.avatar_north_8a65 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.green-53cc {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.hero_0fac {
    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);
}

.hero_0fac p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hero_0fac strong {
    color: var(--accent-color);
}

/* Requirements Section */
.brown-f093 {
    padding: var(--section-padding);
}

.clean_790f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .clean_790f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-cf65 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.prev-9309 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.simple-32f5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-32f5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-d642 {
    margin-top: 3rem;
}

.lite-d642 .message_focused_8842 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.lite-d642 .surface-b9c5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lite-d642 .row_a633 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lite-d642 .row_a633 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.lite-d642 .row_a633 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.lite-d642 .row_a633 li strong {
    color: var(--warning-color);
}

.form_091a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_091a strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.search_thick_61a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-563a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-563a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-warm-0e60 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-warm-0e60 .link_stone_1c73 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.overlay-9d56 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification_038f {
    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);
}

.notification_038f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pink_f3e2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pressed-37d4 {
    flex: 1;
}

.logo-28cf {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.hovered_685f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.silver-74df {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.logo_de63 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dropdown_bronze_4ab2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .dropdown_bronze_4ab2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-64fe {
    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-64fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-last-c13f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list_complex_91bc {
    color: var(--text-gray);
    font-size: 1rem;
}

.table-60a9 {
    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);
}

.content-7f06 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.content-7f06 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.brown_eb5a { width:100%; max-width:1200px; padding:0 16px; box-sizing:border-box; }
* { box-sizing:border-box; }

img, video, svg { max-width:100%; height:auto; display:block; }
.down-dcea, .section-057d { max-width:100%; height:auto; }

.outer_c148, .green-f33e, .fixed_5f3b { white-space:normal; }

.lite_213f,
.static_c457,
.up-fb9d,
.left-5331,
.down-2feb,
.icon_5aa5 {
  flex-wrap:wrap;
}

[class*="grid"],
.dropdown_bronze_4ab2,
.notification_09d6,
.panel_db23 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.avatar-a71c img,
.static_c457 img,
.tabs_white_db05 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.alert-c1b9, .text-a269,
.column_slow_281c, .frame_focused_e715 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.title-static-2350 { width:100%; overflow-x:auto; }
.title-static-2350 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.list_542d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .list_542d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.container-paper-5d52 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.iron_4ff9,
.summary_easy_531c,
.bright-400f,
.element-yellow-de8b,
.content_last_354e,
.dropdown_bronze_4ab2,
.notification_09d6,
.panel_db23,
.section-c7ff,
.outer_9ccd,
.list_542d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .iron_4ff9,
  .summary_easy_531c,
  .bright-400f,
  .element-yellow-de8b,
  .content_last_354e,
  .dropdown_bronze_4ab2,
  .notification_09d6,
  .panel_db23,
  .section-c7ff,
  .outer_9ccd,
  .list_542d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.fixed-176e,
.accordion-fdb8,
.wrapper-64fe,
.gradient-7e19,
.surface-middle-b1e0,
.north_edf4,
.light-41c2,
.container-paper-5d52 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.tabs-north-4042,
.primary_copper_7820,
.shade_red_608e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tabs-north-4042 > *,
.primary_copper_7820 > *,
.shade_red_608e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f200 */
.ghost-box-r2 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
