/* {$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;
}

.white-23aa {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.image-pro-fb85 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .image-pro-fb85 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .image-pro-fb85 {
        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 */
.copper_3bd7 {
    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);
}

.inner_3b59 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .inner_3b59 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .menu_06bc {
        grid-column: 1;
    }
    
    .gradient_6a12 {
        grid-column: 2;
    }
    
    .image_orange_3746 {
        grid-column: 3;
    }
}

.menu_06bc img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.menu_06bc:hover img {
    transform: scale(1.05);
}

/* Navigation */
.carousel_action_695e {
    display: none;
}

@media (min-width: 1024px) {
    .carousel_action_695e {
        display: block;
    }
}

/* Grouped Navigation */
.pagination-9083 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.gradient_copper_8ed2 {
    position: relative;
}

.tag_4f13 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.gradient_copper_8ed2 .basic_b55d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.basic_b55d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.content_a308 {
    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;
}

.content_a308:hover,
.content_a308.fn-active-e7f4 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.preview_e37e {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .preview_e37e {
        display: flex;
    }
}

/* Mobile Register Button */
.gradient_6a12 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient_6a12 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.fixed-7f9e {
    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;
}

.fixed-7f9e::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 */
.image_orange_3746 {
    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) {
    .image_orange_3746 {
        display: none;
    }
}

.image_orange_3746 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.image_orange_3746.fn-active-e7f4 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.image_orange_3746.fn-active-e7f4 span:nth-child(2) {
    opacity: 0;
}

.image_orange_3746.fn-active-e7f4 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tiny_a565 {
    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;
}

.tiny_a565.fn-active-e7f4 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.steel-0277 {
    overflow: hidden;
}

.narrow_ac22 {
    list-style: none;
    padding: 0.75rem 0;
}

.liquid-77d5 {
    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;
}

.liquid-77d5:hover,
.liquid-77d5.fn-active-e7f4 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.liquid-77d5.tag_simple_45f3 {
    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;
}

.liquid-77d5.tag_simple_45f3::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 */
.disabled-7bd4 {
    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;
}

.border_a351 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.border_a351:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.preview-glass-f3a7 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.preview-glass-f3a7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gas_e050 {
    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;
}

.gas_e050:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.section_left_a85d {
    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;
}

.center-d139 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.center-d139:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-upper-9e2b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-upper-9e2b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.under-fde7 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.under-fde7: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);
}

.icon_liquid_0592 {
    font-size: 1em;
    font-weight: 700;
}

.focused_7c4e {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.modal-motion-49c8 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.modal-motion-49c8::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;
}

.section-glass-0ea4 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .section-glass-0ea4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.input-3baa {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.soft-c638 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.focus_77ee {
    margin-bottom: 2rem;
}

.button-6bb0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .button-6bb0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_green_26af {
    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);
}

.hero-pro-2aa9 {
    font-size: 1.5rem;
}

.chip-current-f156 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.avatar_right_d92d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.old-fd37 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.old-fd37:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hovered-e49d {
    text-align: center;
    margin-bottom: 3rem;
}

.red-325a {
    margin-bottom: 1rem;
}

.block-bfdd {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.old_d817 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .old_d817 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .old_d817.mini_e4d6 {
        direction: rtl;
    }
    
    .old_d817.mini_e4d6 > * {
        direction: ltr;
    }
}

.frame_basic_09a3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.frame_basic_09a3:first-child {
    margin-top: 0;
}

.next-c01b {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.item-fresh-703e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.item-fresh-703e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.pattern_east_d022 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_east_d022 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-full-6a7c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-copper-aedb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.motion_a1b6 {
    list-style: none;
}

.motion_a1b6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.motion_a1b6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.button-right-8c0d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.video-short-a62b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu_soft_a90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-selected-21ee {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.active_purple_3ce9 {
    margin: 2rem 0;
}

.shade_black_b6e1 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.pink-6f8d {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.motion-1cb9 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.box-tall-e307 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.breadcrumb_short_30ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_short_30ec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-8ffc {
    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);
}

.pro-8ffc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.over_9e62 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.slider_old_5612 {
    font-size: 1.5rem;
}

.outer_7a1d {
    color: var(--accent-color);
    margin: 0;
}

.red_3237 {
    list-style: none;
}

.red_3237 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.red_3237 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.input_top_d71f {
    margin: 2rem 0;
}

.module-a54b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pagination_67e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pagination_67e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-copper-d124 {
    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);
}

.block-b54e {
    font-size: 1.25rem;
}

.complex_3cf4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.banner-narrow-b9ec,
.header-9f76 {
    text-align: center;
    margin: 2rem 0;
}

.mask-f88f,
.stone_4e28 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.row_north_84cf {
    margin: 2rem 0;
    text-align: center;
}

.selected-fc4b {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.selected-fc4b::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;
}

.element_liquid_2725 {
    position: relative;
    z-index: 1;
}

.dropdown_d00b {
    margin-bottom: 1rem;
}

.old-3346 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.green_7b06 {
    margin-bottom: 3rem;
}

.item-98e3 {
    margin-top: 3rem;
}

.footer_b330 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer_b330 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_b330 .shadow_green_26af {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row-ce5a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard-c9b8 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.fixed_7c8b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.stale-bb6e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .stale-bb6e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stale-bb6e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.description-soft-77e3 {
    margin-bottom: 1rem;
}

.detail_light_8bbe img {
    margin-bottom: 1rem;
}

.column_ed7f {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_red_1559 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.shadow_gas_643e {
    list-style: none;
}

.shadow_gas_643e li {
    margin-bottom: 0.5rem;
}

.shadow_gas_643e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.shadow_gas_643e a:hover {
    color: var(--accent-color);
}

.cool-0bf3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.primary_974d {
    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);
}

.primary_974d:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.backdrop-new-5714 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.backdrop-new-5714 p {
    margin-bottom: 0.25rem;
}

.paper-1772 {
    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) {
    .paper-1772 {
        flex-direction: row;
    }
}

.picture_dynamic_7f93 {
    text-align: center;
}

@media (min-width: 768px) {
    .picture_dynamic_7f93 {
        text-align: left;
    }
}

.picture_dynamic_7f93 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight_f5df {
    font-size: 0.75rem !important;
}

.hot-5967 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.item-dynamic-279a {
    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);
    }
}

.caption-16a7 {
    animation: fadeInUp 0.6s ease-out;
}

.panel_light_f6cb {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.header_red_9d62 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_red_9d62 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.carousel_left_95c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_left_95c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_left_44da {
    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);
}

.form_left_44da .menu_soft_a90c {
    font-size: 1.25rem;
}

.form_left_44da .description-d9e2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.banner-818c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-818c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_full_b551 {
    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);
}

.notification_full_b551:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_fixed_9845 {
    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);
}

.active-d45e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-a44a {
    color: var(--text-gray);
    line-height: 1.6;
}

.last_fe0b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_84df {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery_84df .description-selected-21ee {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_84df .rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-c9fe {
    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);
}

.simple-fd8b {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.simple-fd8b img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.simple-fd8b img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.description_pressed_6bbe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.slider_a940 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card_dirty_9bd3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card_dirty_9bd3 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.card_dirty_9bd3 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);
}

.card_dirty_9bd3 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.card_dirty_9bd3 input::placeholder {
    color: var(--text-muted);
}

.banner_1aea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.static-6a06 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.static-6a06 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.light-bbfd {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.light-bbfd:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pagination_67e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_67e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-copper-d124 {
    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);
}

.highlight-copper-d124 .block-b54e {
    font-size: 1.25rem;
}

.highlight-copper-d124 .complex_3cf4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.stale_2ffa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large_be2c {
    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);
}

.large_be2c .menu_soft_a90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.large_be2c .description-selected-21ee {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.large_be2c .rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_aa4f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_5f80 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component_5f80 .hidden-down-9940 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_5f80 .search-glass-cc95 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-e254 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-thick-a413 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo-thick-a413 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light-b5c5 {
    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);
}

.light-b5c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_081d {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.wrapper-e155 {
    flex: 1;
}

.surface_6642 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.glass-ddd2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.breadcrumb_tiny_dcf6 {
    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);
}

.breadcrumb_tiny_dcf6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.input-2b5d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-2b5d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_small_eb98 {
    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_small_eb98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over-7415 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_c1f4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fresh-a7c6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gradient_de87 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask_b223 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_8caa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_cac5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_cac5 .article-pro-e30a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar_cac5 .border_dark_7a34 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-clean-e91a {
    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);
}

.heading_action_9075 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-c0ba {
    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);
}

.frame-c0ba .menu_soft_a90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-c0ba .description-selected-21ee {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.frame-c0ba .rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_blue_0397 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_blue_0397 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-dirty-485d {
    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);
}

.alert-dirty-485d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.shadow_old_f231 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_old_f231 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange_e09f {
    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);
}

.orange_e09f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.light-bedc {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture-in-6818 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pink-6f8d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.icon-light-662d {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.list-6929 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_0162 {
    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);
}

.sort_0162:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_cc28 {
    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);
}

.paper_8bd2 {
    flex: 1;
}

.progress_hot_1c09 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.picture-8526 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hot_f220 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast-6163 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-red-4df1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-red-4df1 .hidden-down-9940 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-red-4df1 .search-glass-cc95 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-9f76 {
    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);
}

.active_f4e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_f4e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.main_inner_971d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_inner_971d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple_fa7e {
    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);
}

.purple_fa7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow-fa4a {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_a149 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rough-3435 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.wrapper-9c65 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.warm-e457 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_bdec {
    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);
}

.filter-731b {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-steel-4f18 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_7e24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_action_9075 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-c0ba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.frame-c0ba .description-selected-21ee {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-c0ba .rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_7d6a {
    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);
}

.column-small-06ed {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column-small-06ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-small-06ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white_a06f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.white_a06f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_full_48bf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.new-26f5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.thumbnail-pro-178e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.mini-73b1 {
    padding: 1.5rem;
}

.disabled_outer_e74a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rough-350a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rough-350a 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;
}

.rough-350a li:last-child {
    border-bottom: none;
}

.rough-350a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.notification-3123 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-3123 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_7c5e {
    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);
}

.pagination_7c5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider_0ad5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-large-d352 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu_outer_7a1e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accordion_9791 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper-fccb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-0ebe {
    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);
}

.mini_d916 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article-edc1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-advanced-c633 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_lower_2018 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.short-a35b {
    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);
}

.advanced_03ea {
    text-align: center;
}

.row-8861 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold-1a41 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main_fc73 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-rough-88bd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-rough-88bd .description-selected-21ee {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-rough-88bd .rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-201b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right-201b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right-201b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_93ac {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.row_93ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-0fab {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.main-short-0c7f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.description-selected-21ee {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.medium-0b52 {
    padding: 1.5rem;
}

.rough-ff0f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notification-2967 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-2967 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;
}

.notification-2967 li:last-child {
    border-bottom: none;
}

.notification-2967 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.link-down-44c3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.block_623b {
    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);
}

.block_623b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_over_f2f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu_liquid_de4a {
    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);
}

.message_fixed_9845 {
    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;
}

.active-d45e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header-a44a {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-fd84 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-9333 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info_new_d799 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_d229 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.label_e7ed {
    display: flex;
    gap: 1rem;
}

.label_e7ed .mask-center-6186 {
    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;
}

.detail_next_431a {
    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);
}

.medium_3ae1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.block-fe1b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-fe1b 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;
}

.block-fe1b li:last-child {
    border-bottom: none;
}

.block-fe1b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.tertiary-6db1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-6db1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-6db1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption-509c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.caption-509c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_3945 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.item-outer-12c7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article-pro-e30a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.west_3a8b {
    font-size: 1rem;
}

.gold_c31d {
    padding: 1.5rem;
}

.border_dark_7a34 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.disabled-15ed {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.disabled-15ed .advanced_03ea {
    text-align: center;
}

.disabled-15ed .gold-1a41 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.disabled-15ed .tall_e2b4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.slow_aa97 {
    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);
}

.slow_aa97:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.highlight-pressed-11a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-pressed-11a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_8405 {
    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);
}

.tooltip_8405:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up-eaa6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_1ef9 {
    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);
}

.paragraph-dark-2723 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-38ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-wood-b5e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_wood_b011 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pagination-ce2c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface_old_4357 {
    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);
}

.widget_2ead {
    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;
}

.widget_2ead.out-464e {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.widget_2ead.stone_6eb9 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.widget_2ead.grid-8f14 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.widget_2ead.summary_0178 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.widget_2ead.frame_motion_4217 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.background-e80a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-02ca {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-west-e501 {
    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);
}

.header-27e4 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column_aa4f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_aa4f 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;
}

.column_aa4f li:last-child {
    border-bottom: none;
}

.column_aa4f li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.breadcrumb_iron_acd9 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_iron_acd9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_iron_acd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft_fe26 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.soft_fe26:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_fe26.notice-e1d2 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .soft_fe26.notice-e1d2 {
        grid-column: span 3;
    }
}

.hot-e096 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.soft_fe26.notice-e1d2 .hot-e096 {
    background: rgba(6, 182, 212, 0.1);
}

.wide_b880 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.dark_5e5b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.soft_fe26.notice-e1d2 .dark_5e5b {
    color: var(--info-color);
}

.component_under_8f7d {
    padding: 1.5rem;
    text-align: center;
}

.icon-large-f013 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.soft_fe26.notice-e1d2 .icon-large-f013 {
    color: var(--info-color);
}

.search_99dc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hovered_32e1 {
    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 */
.pressed-054e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-054e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-22a0 {
    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);
}

.slider-22a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-thick-7f8e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large_be2c {
    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);
}

.block-b54e {
    font-size: 2rem;
    flex-shrink: 0;
}

.light-5357 {
    flex: 1;
}

.module-a54b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right_9d9f {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale_b625 {
    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);
}

.header_advanced_e817 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.component-huge-a4e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item-dynamic-279a {
    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);
}

.out-f260 {
  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);
}

.out-f260 .advanced_03ea {
    text-align: center;
}

.out-f260 .row-8861 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.out-f260 .gold-1a41 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper_6cc9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected-b51d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-35d0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_smooth_3c00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_advanced_490b {
    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);
}

.pattern-604c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.basic_0dc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-fb65 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first-fb65 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first-fb65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_prev_4c8b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main_prev_4c8b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow_7f83 {
    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);
}

.hidden_south_6a1f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.module-out-a2d1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.short-cd2a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.short-cd2a.gas_1234 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.short-cd2a.banner_8024 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.short-cd2a.footer-4a2e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.popup_8d71 {
    padding: 1.5rem;
    text-align: center;
}

.status_a5cf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_new_b078 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background_new_b078 .selected-e3c5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.summary-5055 {
    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);
}

.summary-5055:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.primary_e6a0 {
  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);
}

.tall-02a7 {
    text-align: center;
}

.tall-02a7 .row-8861 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.tall-02a7 .gold-1a41 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.mask_5771 { text-align: center; }
.module_focused_d0d0 { text-align: left; }
.prev-2e29 { text-align: right; }

.shade_efda { margin-bottom: 0; }
.footer_5d5c { margin-bottom: 0.5rem; }
.shade-e2c8 { margin-bottom: 1rem; }
.footer-5970 { margin-bottom: 1.5rem; }
.status_short_3b04 { margin-bottom: 2rem; }

.filter_prev_a24f { margin-top: 0; }
.full_20ce { margin-top: 0.5rem; }
.frame_9d09 { margin-top: 1rem; }
.summary_6c15 { margin-top: 1.5rem; }
.small-c946 { margin-top: 2rem; }

.fn-hidden-e7f4 { display: none; }
.fn-visible-e7f4 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .modal-motion-49c8 {
        padding: 6rem 0 3rem;
    }
    
    .section-glass-0ea4 {
        text-align: center;
    }
    
    .old_d817 {
        text-align: center;
    }
    
    .button-6bb0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .copper_3bd7,
    .tiny_a565,
    .selected-fc4b,
    .fixed_7c8b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .modal-motion-49c8 {
        background: none;
    }
}

/* Providers Section */
.east-53e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-active-283b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-active-283b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-active-283b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_rough_89a5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row_rough_89a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion_d24e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.label-next-abf7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.easy_beb6 {
    list-style: none;
    padding: 0;
}

.easy_beb6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.easy_beb6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.title_3cbb {
    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);
}

.title_3cbb p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.column_copper_e534 {
    padding: var(--section-padding);
}

.thumbnail-green-e5a4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-green-e5a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_stale_b8d2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_stale_b8d2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.nav_05c7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-liquid-fba0 {
    display: flex;
    flex-direction: column;
}

.thumbnail_a15c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.static_a9fc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sort-69d7 {
    color: var(--accent-color);
}

.dynamic-c5de {
    font-size: 1.25rem;
}

.hard_0fc0 {
    margin-bottom: 1rem;
}

.hard_0fc0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.fluid_d267 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hovered_e5c9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.advanced_03ea {
    text-align: center;
}

.row-8861 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold-1a41 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.element_6c3c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-gold-001b {
    margin: 2rem 0;
}

.form_690e {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.form_690e .menu_soft_a90c {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-13bd {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.new_3189 {
    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;
}

.new_3189:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.container-fa10 {
    font-size: 2rem;
}

.media_dynamic_8a03 {
    display: flex;
    flex-direction: column;
}

.hard_f8d8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.over_2597 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.hover-new-f95c {
    padding: var(--section-padding);
}

.wide_a091 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wide_a091 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide_a091 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_06e2 {
    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);
}

.hard_06e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard_06e2 .row-8861 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.hard_06e2 .gold-1a41 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.hard_06e2 .wrapper_fb73 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.menu-f96e {
    margin-top: 4rem;
}

.avatar_4534 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.accordion_9253 {
    overflow-x: auto;
}

.sidebar_advanced_2f56 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar_advanced_2f56 thead {
    background: var(--accent-color);
}

.sidebar_advanced_2f56 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.sidebar_advanced_2f56 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_advanced_2f56 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.sidebar_advanced_2f56 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.notification-large-0cd1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-new-73bc {
    max-width: 900px;
    margin: 0 auto;
}

.orange_b113 {
    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);
}

.orange_b113:hover {
    border-color: var(--accent-color);
}

.column-hot-8e41 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.column-hot-8e41 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.picture_3b11 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.orange_b113.fn-active-e7f4 .picture_3b11 {
    transform: rotate(45deg);
}

.purple_d507 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.orange_b113.fn-active-e7f4 .purple_d507 {
    max-height: 1000px;
}

.purple_d507 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.footer-0a22 {
    padding: var(--section-padding);
}

.simple-fd8b {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.simple_dc2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_large_33c7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_large_33c7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_4202 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver_a8ec {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status_hard_37b8 {
    font-size: 2rem;
}

.stone_47f2 {
    color: var(--text-white);
    margin: 0;
}

.logo-c808 {
    list-style: none;
    padding: 0;
}

.logo-c808 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-c808 li:last-child {
    border-bottom: none;
}

.slider_7a2d {
    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);
}

.slider_7a2d p {
    color: var(--success-color);
    margin: 0;
}

.fluid-4ee7 {
    margin-top: 3rem;
}

.medium_3ae1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.basic_5cd3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .basic_5cd3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.static-12ef {
    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);
}

.shadow-77a8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.static-12ef p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.short_7354 {
    padding: var(--section-padding);
}

.widget-warm-f5a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-warm-f5a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_60ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination_60ba:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tag-ea76 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.soft_ba5f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.gallery-75a9 {
    flex: 1;
}

.small_8998 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.next-da43 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.banner_86c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_aeef {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail_aeef:last-child {
    border-bottom: none;
}

/* Comparison Section */
.notification-hard-695b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.card-narrow-7ab9 {
    padding: var(--section-padding);
}

.black_fe19 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.up_2232 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up_2232 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_7d34 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_0df6, .advanced_d8fb, .video_3f6b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.video_3f6b {
    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 */
.narrow_962a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini_c91e {
    margin: 2rem 0;
}

.summary_51e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected_da64 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.yellow-9320 {
    list-style: none;
    padding: 0;
}

.yellow-9320 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;
}

.yellow-9320 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.yellow-9320 li:last-child {
    border-bottom: none;
}

.silver_1388 {
    text-align: center;
    margin-top: 2rem;
}

.search-pressed-f327 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.preview-huge-5ce9 {
    padding: var(--section-padding);
}

.mask-b862 {
    margin: 2rem 0;
}

.pattern-6056 {
    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) {
    .pattern-6056 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pattern-6056:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component-3cb5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.column-fast-5ac1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.under_a998 {
    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;
}

.element_0fad {
    flex: 1;
}

.highlight_c0eb {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.input_ce70 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.list_6d98 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.paragraph-bottom-292a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .paragraph-bottom-292a {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gold-189f {
    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);
}

.gold-189f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold-189f .row-8861 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold-189f .gold-1a41 {
    color: var(--text-gray);
    font-size: 1rem;
}

.shadow_67ba {
    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);
}

.surface_orange_24fe {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.surface_orange_24fe strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.steel_b539 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .steel_b539 {
        grid-template-columns: 1fr 1fr;
    }
}

.icon-5000 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_thick_1f36 {
    margin-bottom: 1.5rem;
}

.list_thick_1f36 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.list_thick_1f36 input,
.list_thick_1f36 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;
}

.list_thick_1f36 input:focus,
.list_thick_1f36 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.slow-bd38 {
    width: 100%;
    margin-top: 1rem;
}

.rough_16b9 {
    display: flex;
    align-items: center;
}

.message-c21f {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.green_7f3f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.nav-medium-cb54 {
    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;
}

.layout_medium_cbd2 {
    color: var(--text-gray);
}

.glass_768d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gas-5d12 {
    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);
}

.gas-5d12 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.paragraph-top-827c {
    margin-top: 3rem;
}

.cold-55a9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.backdrop-24a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_a3c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.soft-d015 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soft-d015:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.sort_0c01 {
    padding: var(--section-padding);
}

.inner_43ef {
    margin: 2rem 0;
}

.logo_center_51e4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.media-easy-92ce {
    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;
}

.media-easy-92ce:hover, .media-easy-92ce.fn-active-e7f4 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.last-3230 {
    display: none;
}

.last-3230.fn-active-e7f4 {
    display: block;
}

.component-1786 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-b47c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.north-2186 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.north-2186 ul {
    list-style: none;
    padding: 0;
}

.north-2186 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.north-2186 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.card-0480 {
    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 */
.new_1b62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_c375 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-44a6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gradient_huge_6b2e {
    color: var(--accent-color);
    margin: 0;
}

.up-c4b7 {
    display: flex;
    gap: 1.5rem;
}

.search_full_4691 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.small-d053 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.layout-6484 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.layout-6484.steel-4c9d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.layout-6484.form-large-fba0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.layout-6484.west_9bb9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.sidebar_8dbc {
    margin-top: 2rem;
}

.label-large-eb3b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.progress-fc36 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .progress-fc36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_c65c {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.south_025e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.focus_ce2b {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight-ee61 {
    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 */
.plasma-9a30 {
    padding: var(--section-padding);
}

.gallery_f23b {
    margin: 2rem 0;
}

.main-bottom-b539 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.title-top-3f6a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.filter_green_139d {
    list-style: none;
    padding: 0;
}

.filter_green_139d 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;
}

.filter_green_139d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.filter_green_139d li:last-child {
    border-bottom: none;
}

.item_60a3 {
    margin: 2rem 0;
}

.frame_gas_85d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline-clean-c8b8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline-clean-c8b8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solid-c107 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-7159 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mini_f27c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.box-paper-8bf3 {
    margin-top: 2rem;
}

.surface_6642 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.first-97d1 {
    list-style: none;
    padding: 0;
}

.photo-36b5 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.photo-36b5 a {
    color: var(--accent-color);
    text-decoration: none;
}

.photo-36b5 a:hover {
    text-decoration: underline;
}

.inner-6e2e {
    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 */
.shadow-paper-b08f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_first_1536 {
    margin: 2rem 0;
}

.accent-b015 {
    margin-bottom: 3rem;
}

.accent-b015 .selected_da64 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.brown-9b7a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.message-eb18 {
    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);
}

.message-eb18:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.active-025a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .active-025a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mini_5433 {
    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 */
.outline_98ae {
    padding: var(--section-padding);
}

.popup-2d48 {
    margin: 2rem 0;
}

.primary-a877 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.north-8308 {
    overflow-x: auto;
    margin: 2rem 0;
}

.slider_ffb1 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.stone_63e6 {
    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;
}

.wide_fccf {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.large_e933 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .large_e933 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-0649 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-0649 .menu_soft_a90c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.message-0649 .description-selected-21ee {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover_pressed_da3c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.aside-49f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_8e0a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_8e0a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_60aa {
    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;
}

.in_60aa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gallery-338d {
    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);
}

.overlay_bc99 {
    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;
}

.notification-ec3b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop_655a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.gallery-8292 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.disabled_lite_b5c0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.heading_5608 {
    color: var(--text-white);
    font-weight: 600;
}

.footer-bright-d866 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery-7143 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-7143 .mask-center-6186 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent-under-a90f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent-under-a90f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_2743 {
    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);
}

.dynamic_2743:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic_2743 .row-8861 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic_2743 .gold-1a41 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hidden_93a0 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_f2f8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.disabled_f2f8 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.warm-e457 {
    margin: 2rem 0;
}

.shadow_bdec {
    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);
}

.shadow_bdec:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.filter-731b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.west_c5cb {
    flex: 1;
}

.sort-steel-4f18 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_7e24 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.heading_action_9075 {
    margin: 2rem 0;
}

.frame-c0ba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-c0ba .description-selected-21ee {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.frame-c0ba .rough-ff0f {
    color: var(--text-gray);
    margin: 0;
}

.message_7d6a {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.message_7d6a .mask-f88f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.hover_pressed_da3c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.backdrop_cc28 {
    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;
}

.paper_8bd2 {
    flex: 1;
}

.picture-8526 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hot_f220 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.message_fixed_9845 {
    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;
}

.orange_ad05 {
    flex: 1;
}

.active-d45e {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.header-a44a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.info_new_d799 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.preview_d229 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.label_e7ed {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.label_e7ed .mask-center-6186 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail_next_431a {
    margin-top: 2rem;
}

.detail_next_431a .medium_3ae1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.video-dirty-ebe7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short-a35b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .short-a35b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-a35b .advanced_03ea {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_fc73 {
    margin: 2rem 0;
}

.text-rough-88bd {
    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 */
.overlay_a1f4 {
    padding: var(--section-padding);
}

.medium-0b52 {
    margin-top: 1rem;
}

.notification-2967 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.notification-2967 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.notification-2967 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.banner_static_038f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_red_8b00 {
    margin: 2rem 0;
}

.surface-outer-c8b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.video_fe6a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sidebar-complex-9129 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.module-0313 {
    margin: 2rem 0;
}

.detail-4faa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.detail-4faa .selected_da64 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_plasma_ce52 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .caption_plasma_ce52 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini_0ef9 {
    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);
}

.advanced_d7cb {
    color: var(--text-white);
    font-weight: 600;
}

.wood-c878 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.section-eda9 {
    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);
}

.section-eda9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tabs-5bb8 {
    padding: var(--section-padding);
}

.banner-north-a64a {
    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;
}

.banner-north-a64a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.breadcrumb-6a49 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-6a49 .shadow-77a8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb-6a49 .outline_smooth_0ff4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.disabled_new_796c {
    flex: 1;
}

.fast-0db8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dropdown-2259 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-2259 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.dropdown-2259 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.column-1060 {
    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);
}

.column-1060 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.column-1060 strong {
    color: var(--warning-color);
}

/* Slots Section */
.light-4e49 {
    padding: var(--section-padding);
}

.mask_b223 {
    margin: 2rem 0;
}

/* Table Games Section */
.gradient_right_de93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_8caa {
    margin: 2rem 0;
}

.sidebar_cac5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sidebar_cac5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sidebar_cac5 .article-pro-e30a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar_cac5 .border_dark_7a34 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tertiary-clean-e91a {
    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);
}

.tertiary-clean-e91a .mask-f88f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.header_5394 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_hard_340c {
    margin: 2rem 0;
}

.feature_69d6 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_west_75c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prev-b47b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gradient-cf52 {
    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);
}

.gradient-cf52:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.gradient-cf52.fn-active-e7f4 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-ebe0 {
    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);
}

.panel-e998 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel-e998 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.info-7dd3 {
    padding: var(--section-padding);
}

.detail_focused_f281 {
    margin: 2rem 0;
}

.modal_blue_40e1 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.modal_blue_40e1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .modal_blue_40e1 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.border-simple-a342 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.top-c7fc {
    flex: 1;
}

.pink-65b1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search_dea9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.button-02f6 {
    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;
}

.pattern_5842 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dropdown_top_a9d5 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.backdrop-0955 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bottom_48c5 {
    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;
}

.bottom_48c5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.motion-1d89 {
    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);
}

.paper_d2b9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paper_d2b9 strong {
    color: var(--accent-color);
}

/* New Games Section */
.header_a94c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red-c1e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .red-c1e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .red-c1e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_glass_5470 {
    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;
}

.breadcrumb_glass_5470:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.inner-5461 {
    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;
}

.overlay_under_ef05 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.north-256e {
    font-size: 2rem;
}

.accent_c19d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.sort-paper-e484 {
    flex: 1;
}

.paragraph_95ff {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.orange_f31b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.image-gold-0f84 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-c181 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dim_3b59 {
    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;
}

.menu-ab51 {
    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;
}

.menu-ab51:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cold_736c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_east_7535 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu_6739 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .menu_6739 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_dbbb {
    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);
}

.overlay_right_5d82 {
    color: var(--text-white);
    font-weight: 600;
}

.texture_e2e9 {
    color: var(--accent-color);
    font-weight: 600;
}

.widget-pro-ef17 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.widget-pro-ef17 strong {
    color: var(--accent-color);
}

/* Security Section */
.motion-54a9 {
    padding: var(--section-padding);
}

/* Benefits Section */
.carousel-under-518e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.yellow_b07c {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.photo_fluid_c422 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_hot_bdda {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.wrapper_c219 {
    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) {
    .wrapper_c219 {
        flex-direction: column;
        gap: 1rem;
    }
}

.wrapper_c219:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper_c219 .message_fixed_9845 {
    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;
}

.wrapper_c219 .orange_ad05 {
    flex: 1;
}

.wrapper_c219 .active-d45e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wrapper_c219 .header-a44a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.popup_lower_a599 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_lower_a599 .module-a54b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup_lower_a599 .stale_2ffa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup_lower_a599 .stale_2ffa li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.popup_lower_a599 .stale_2ffa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.backdrop_plasma_4565 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.disabled_ce66 {
    padding: var(--section-padding);
}

.old_e20a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .old_e20a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-d744 {
    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);
}

.motion-d744:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.motion-d744 .outer_4574 {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion-d744 .middle_0a51 {
    flex: 1;
}

.motion-d744 .hidden-down-9940 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion-d744 .action_3ea7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.grid-gold-8fff {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-gold-8fff .simple-9282 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid-gold-8fff .summary_2bb9 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.grid-gold-8fff .summary_2bb9 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);
}

.grid-gold-8fff .summary_2bb9 li:last-child {
    border-bottom: none;
}

.grid-gold-8fff .summary_2bb9 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;
}

.grid-gold-8fff .summary_2bb9 li strong {
    color: var(--text-white);
}

.up-4098 {
    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);
}

.up-4098 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.up-4098 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.paper-b33e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-gold-fa6a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .active-gold-fa6a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cold_9cf3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cold_9cf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb_6d25 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tall_7f6c {
    font-size: 2rem;
}

.bronze-fad5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.widget_top_a406 {
    flex: 1;
}

.east-fda2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east-fda2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.east-fda2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.outline-wood-5ab1 {
    margin-top: 3rem;
}

.main-bottom-b539 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.title-top-3f6a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter_green_139d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_green_139d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.filter_green_139d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.filter_green_139d li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.solid-898c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-30bd {
    margin: 2rem 0;
}

.primary_f91d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.primary_f91d .selected_da64 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prev_ce30 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .prev_ce30 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description-out-bb11 {
    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);
}

.description-out-bb11:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pattern_dirty_fde7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.simple_ba4f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pattern-e498 {
    padding: var(--section-padding);
}

.layout_brown_2973 {
    margin: 2rem 0;
}

.outer_899c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .outer_899c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer_899c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-bd09 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module-bd09:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer-cab6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.under_74b5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.layout-tall-2c79 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.layout-tall-2c79.slider_blue_dd95 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.liquid_64c3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.tooltip-up-c493 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.aside-next-ee31 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.short_778c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.photo_first_38e4 {
    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);
}

.photo_first_38e4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo_first_38e4 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.notice_mini_e737 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-light-29f5 {
    margin: 2rem 0;
}

.pattern_09d5 {
    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) {
    .pattern_09d5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.pattern_09d5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pattern_09d5::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);
}

.tooltip-white-2f39 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.up-1f20 {
    flex: 1;
}

.complex-656d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notification_7017 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_7017 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-d64a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_small_11ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stale_1c0e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stale_1c0e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_5310 {
    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);
}

.mini_7db2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.prev_ffd3 {
    flex: 1;
}

.wide_222f {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-8b9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight-e82f {
    margin-top: 2rem;
    text-align: center;
}

.dim_1513 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dim_1513 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.highlight-pressed-11a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-pressed-11a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_8405 {
    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);
}

.tooltip_8405:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip_8405 .slider_0ad5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_8405 .shadow-large-d352 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tooltip_8405 .menu_outer_7a1e {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tooltip_8405 .accordion_9791 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.smooth-312a {
    padding: var(--section-padding);
}

.media_1ef9 .under_9edc {
    flex: 1;
}

/* Promo Calendar Section */
.thick-d9b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_under_f9e4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_under_f9e4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-fast-9c19 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_fast_55ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.complex-1cec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focus-hot-1a6c {
    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);
}

.tooltip_liquid_0911 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.image_7e2c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.slow_faeb {
    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);
}

.slow_faeb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow_faeb strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hovered-3a26 {
    padding: var(--section-padding);
}

.nav_top_3bc6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav_top_3bc6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.label-e9a8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-51d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-6632 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-6632 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-purple-3574 {
    margin-top: 3rem;
}

.wrapper-purple-3574 .main-bottom-b539 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wrapper-purple-3574 .title-top-3f6a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-purple-3574 .filter_green_139d {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wrapper-purple-3574 .filter_green_139d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wrapper-purple-3574 .filter_green_139d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wrapper-purple-3574 .filter_green_139d li strong {
    color: var(--warning-color);
}

.glass_06b6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.glass_06b6 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.easy_e205 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm_3d86 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm_3d86 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_6926 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_6926 .selected_da64 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.frame-3c44 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.column_aa52 {
    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);
}

.column_aa52:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.progress_45ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth_c584 {
    flex: 1;
}

.east_fe6b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.silver_8e0f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.text_outer_a891 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.main-e693 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.header_smooth_a62a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .header_smooth_a62a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-under-72c5 {
    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);
}

.progress-under-72c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight-bright-4989 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white_2eef {
    color: var(--text-gray);
    font-size: 1rem;
}

.surface_orange_24fe {
    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);
}

.fresh-58a8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.fresh-58a8 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.image-pro-fb85 { 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; }
.old-fd37, .item-fresh-703e { max-width:100%; height:auto; }

.disabled-7bd4, .gas_e050, .section_left_a85d { white-space:normal; }

.section-glass-0ea4,
.old_d817,
.pressed-054e,
.highlight-pressed-11a4,
.heading_action_9075,
.first-fb65 {
  flex-wrap:wrap;
}

[class*="grid"],
.header_smooth_a62a,
.outer_899c,
.footer_b330 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.modal-motion-49c8 img,
.old_d817 img,
.avatar_right_d92d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.input-3baa, .soft-c638,
.red-325a, .block-bfdd {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.accordion_9253 { width:100%; overflow-x:auto; }
.accordion_9253 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.primary-active-283b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .primary-active-283b {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.row_rough_89a5 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wide_a091,
.form-e3d6,
.modal_2065,
.bronze_3a7d,
.paragraph-bottom-292a,
.header_smooth_a62a,
.outer_899c,
.footer_b330,
.primary_e6a0,
.detail_focused_f281,
.primary-active-283b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wide_a091,
  .form-e3d6,
  .modal_2065,
  .bronze_3a7d,
  .paragraph-bottom-292a,
  .header_smooth_a62a,
  .outer_899c,
  .footer_b330,
  .primary_e6a0,
  .detail_focused_f281,
  .primary-active-283b {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.hard_06e2,
.gold-189f,
.progress-under-72c5,
.shadow_green_26af,
.module-bd09,
.tall-02a7,
.modal_blue_40e1,
.row_rough_89a5 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.widget-6d86,
.pattern_b74e,
.notice-cold-7e90 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.widget-6d86 > *,
.pattern_b74e > *,
.notice-cold-7e90 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7cb8 */
.shadow-element-a5 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
