/* {$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;
}

.motion_45b2 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.sidebar_narrow_dd42 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .sidebar_narrow_dd42 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .sidebar_narrow_dd42 {
        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 */
.clean_46e1 {
    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);
}

.middle-45e4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .middle-45e4 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .orange_12d9 {
        grid-column: 1;
    }
    
    .item-4012 {
        grid-column: 2;
    }
    
    .banner_23cb {
        grid-column: 3;
    }
}

.orange_12d9 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.orange_12d9:hover img {
    transform: scale(1.05);
}

/* Navigation */
.container-086c {
    display: none;
}

@media (min-width: 1024px) {
    .container-086c {
        display: block;
    }
}

/* Grouped Navigation */
.column_02b2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.texture-liquid-1f7a {
    position: relative;
}

.hidden_yellow_81ad {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.texture-liquid-1f7a .pattern-slow-1455 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.pattern-slow-1455 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.slider-e92e {
    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;
}

.slider-e92e:hover,
.slider-e92e.fn-active-4547 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.pattern_complex_d68f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .pattern_complex_d68f {
        display: flex;
    }
}

/* Mobile Register Button */
.item-4012 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .item-4012 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.article_new_d7ad {
    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;
}

.article_new_d7ad::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 */
.banner_23cb {
    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) {
    .banner_23cb {
        display: none;
    }
}

.banner_23cb span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.banner_23cb.fn-active-4547 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.banner_23cb.fn-active-4547 span:nth-child(2) {
    opacity: 0;
}

.banner_23cb.fn-active-4547 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.detail-bronze-c0d7 {
    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;
}

.detail-bronze-c0d7.fn-active-4547 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.footer_8807 {
    overflow: hidden;
}

.notification_wood_f400 {
    list-style: none;
    padding: 0.75rem 0;
}

.pagination-yellow-48b6 {
    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;
}

.pagination-yellow-48b6:hover,
.pagination-yellow-48b6.fn-active-4547 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.pagination-yellow-48b6.summary_complex_a183 {
    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;
}

.pagination-yellow-48b6.summary_complex_a183::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 */
.nav-5fa9 {
    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;
}

.component_e68c {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.component_e68c:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.tooltip-action-0289 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.tooltip-action-0289:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.action-6480 {
    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;
}

.action-6480:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.gradient_b0cf {
    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;
}

.last_9dc5 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.last_9dc5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.description-b63f {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.description-b63f:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.message_orange_0f54 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.message_orange_0f54: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);
}

.highlight_7cc1 {
    font-size: 1em;
    font-weight: 700;
}

.fixed-b028 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.shadow_fef7 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.shadow_fef7::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;
}

.highlight_7a87 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .highlight_7a87 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.texture_737a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.right_dba7 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.layout-1da3 {
    margin-bottom: 2rem;
}

.content_first_d569 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .content_first_d569 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean-7063 {
    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);
}

.basic_fcb1 {
    font-size: 1.5rem;
}

.chip-298a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.module_b2d5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget-3e83 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.widget-3e83:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.thick_1382 {
    text-align: center;
    margin-bottom: 3rem;
}

.hard_f35b {
    margin-bottom: 1rem;
}

.modal-24fa {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.background_e2c7 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .background_e2c7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .background_e2c7.carousel_5425 {
        direction: rtl;
    }
    
    .background_e2c7.carousel_5425 > * {
        direction: ltr;
    }
}

.tabs_5f65 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tabs_5f65:first-child {
    margin-top: 0;
}

.thick_0576 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dirty_d8c9 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dirty_d8c9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.frame-rough-2fd2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-rough-2fd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-9a1f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article-fluid-42ff {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.progress_1df1 {
    list-style: none;
}

.progress_1df1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress_1df1 li:last-child {
    border-bottom: none;
}

/* Games Features */
.summary-fcb0 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.over-5776 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.description-5e1f {
    font-size: 2rem;
    flex-shrink: 0;
}

.in_148c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.column-last-6c57 {
    margin: 2rem 0;
}

.box-lite-4718 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.red-f744 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.tag_7d8f {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.focus_b92e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.disabled_af19 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_af19 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-518b {
    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);
}

.dropdown-518b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tag_orange_f398 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-old-1fc3 {
    font-size: 1.5rem;
}

.texture-new-1033 {
    color: var(--accent-color);
    margin: 0;
}

.detail_4ac7 {
    list-style: none;
}

.detail_4ac7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.detail_4ac7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.label-dark-bd87 {
    margin: 2rem 0;
}

.sidebar_8fc6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.top_11cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .top_11cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east_6c72 {
    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);
}

.aside-full-5f9a {
    font-size: 1.25rem;
}

.sidebar_36e0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.accordion_small_34ce,
.logo_b043 {
    text-align: center;
    margin: 2rem 0;
}

.wrapper_65e4,
.secondary-orange-49e6 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.dim_990c {
    margin: 2rem 0;
    text-align: center;
}

.frame_hard_c99c {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.frame_hard_c99c::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;
}

.pagination-91c4 {
    position: relative;
    z-index: 1;
}

.light_fe19 {
    margin-bottom: 1rem;
}

.black-01c0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shadow_9079 {
    margin-bottom: 3rem;
}

.green-294c {
    margin-top: 3rem;
}

.wrapper_out_422a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wrapper_out_422a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_out_422a .clean-7063 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row_wood_daeb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-east-439d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.modal-8c05 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.summary-0163 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .summary-0163 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary-0163 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.filter-b210 {
    margin-bottom: 1rem;
}

.message_plasma_fc33 img {
    margin-bottom: 1rem;
}

.top_1eca {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_tiny_5d9c {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.shadow_center_d082 {
    list-style: none;
}

.shadow_center_d082 li {
    margin-bottom: 0.5rem;
}

.shadow_center_d082 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.shadow_center_d082 a:hover {
    color: var(--accent-color);
}

.out-7700 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview_e16f {
    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);
}

.preview_e16f:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.container_019c {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.container_019c p {
    margin-bottom: 0.25rem;
}

.active_d60f {
    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) {
    .active_d60f {
        flex-direction: row;
    }
}

.slider_cool_6a6f {
    text-align: center;
}

@media (min-width: 768px) {
    .slider_cool_6a6f {
        text-align: left;
    }
}

.slider_cool_6a6f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container-62fd {
    font-size: 0.75rem !important;
}

.text-ed9e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.description-a6b0 {
    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);
    }
}

.list-down-b571 {
    animation: fadeInUp 0.6s ease-out;
}

.secondary_b04e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.gallery-c384 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-c384 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.block_0cfb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_0cfb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple-f13c {
    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);
}

.purple-f13c .description-5e1f {
    font-size: 1.25rem;
}

.purple-f13c .white_c6d6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.white-bcdc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .white-bcdc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upper-5d71 {
    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);
}

.upper-5d71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_97ee {
    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);
}

.first_fc88 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.liquid_7eb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-mini-1af3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-77f9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-77f9 .in_148c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup-77f9 .texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_static_dc12 {
    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);
}

.avatar_green_5bf4 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.avatar_green_5bf4 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.avatar_green_5bf4 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.over_fa63 {
    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);
}

.active-e915 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.component-tall-b31e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.component-tall-b31e label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.component-tall-b31e 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);
}

.component-tall-b31e input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.component-tall-b31e input::placeholder {
    color: var(--text-muted);
}

.header-up-c62d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.secondary-f810 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.secondary-f810 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.item-e6bc {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.item-e6bc:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.top_11cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_11cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east_6c72 {
    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);
}

.east_6c72 .aside-full-5f9a {
    font-size: 1.25rem;
}

.east_6c72 .sidebar_36e0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.list_0702 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_old_db97 {
    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);
}

.breadcrumb_old_db97 .description-5e1f {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_old_db97 .in_148c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_old_db97 .texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-52bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-under-8fc0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter-under-8fc0 .slider_dirty_5cf8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-under-8fc0 .action_2eeb {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-5717 {
    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);
}

.accordion_52cf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion_52cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold-ab33 {
    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);
}

.cold-ab33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white_5ef7 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.huge_c681 {
    flex: 1;
}

.hover-4c99 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shade-iron-b889 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tall-493f {
    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);
}

.tall-493f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.tiny-6d8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-6d8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_2d98 {
    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);
}

.focus_2d98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_9e0d {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_narrow_5056 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture-2407 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.form_motion_0cbd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern-b37e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-64eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty_1abc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dirty_1abc .texture_dirty_a72d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dirty_1abc .hover-cb3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_c4be {
    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);
}

.gradient_a918 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_bc33 {
    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);
}

.old_bc33 .description-5e1f {
    font-size: 2rem;
    flex-shrink: 0;
}

.old_bc33 .in_148c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_bc33 .texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-4fdb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic-4fdb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite_81f2 {
    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);
}

.lite_81f2:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.simple_9024 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple_9024 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-purple-e039 {
    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);
}

.section-purple-e039:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-7e08 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column_orange_a7c9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.red-f744 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.primary_8d56 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.prev_3060 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-2447 {
    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);
}

.disabled-2447:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_f485 {
    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);
}

.center_7ef7 {
    flex: 1;
}

.blue-dd3c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.header_0f7b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form_green_4889 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow-61a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_63c3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_63c3 .slider_dirty_5cf8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_63c3 .action_2eeb {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_b043 {
    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);
}

.east_9db5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_9db5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.sidebar-rough-4aaf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-rough-4aaf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-f987 {
    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);
}

.dark-f987:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_mini_12a8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-e81e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.light_9e21 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.lower_5182 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper_19ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-dark-9a62 {
    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);
}

.pressed_7ce3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-6247 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.prev-a3a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_a918 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_bc33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.old_bc33 .in_148c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.old_bc33 .texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_891a {
    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);
}

.full-f721 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .full-f721 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .full-f721 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_ccfd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask_ccfd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-9bc6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.button-fast-6f40 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.paragraph-upper-48f6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.video-a724 {
    padding: 1.5rem;
}

.modal-fast-ff70 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient-984d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-984d 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;
}

.gradient-984d li:last-child {
    border-bottom: none;
}

.gradient-984d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.disabled_f0c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_f0c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-b3b5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.modal-b3b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid_8fea {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-e900 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-soft-c99a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.active_dark_68a1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern_331e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_red_3c1a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notification_ea80 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-small-8328 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_c9d9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_dirty_10f1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pressed_0b7b {
    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);
}

.mini-61cf {
    text-align: center;
}

.progress_under_c49c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-f629 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.aside-ad37 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-fd16 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up-fd16 .in_148c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.up-fd16 .texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-c162 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-c162 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-c162 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-large-3374 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.disabled-large-3374:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-outer-d3aa {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.background_pink_ff9f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.in_148c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.large_fe7f {
    padding: 1.5rem;
}

.texture-0160 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient_west_ea39 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient_west_ea39 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;
}

.gradient_west_ea39 li:last-child {
    border-bottom: none;
}

.gradient_west_ea39 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.disabled-46db {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.element-c13a {
    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);
}

.element-c13a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget_huge_d99a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_6647 {
    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);
}

.up_97ee {
    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;
}

.first_fc88 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid_7eb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up_cfec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_71e9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.main-south-79f4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu_ac26 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hidden-3c59 {
    display: flex;
    gap: 1rem;
}

.hidden-3c59 .bronze-36aa {
    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;
}

.block_5be0 {
    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);
}

.widget_f02f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.nav_6bdb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_6bdb 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;
}

.nav_6bdb li:last-child {
    border-bottom: none;
}

.nav_6bdb li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.avatar_pink_2a46 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar_pink_2a46 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar_pink_2a46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-7e3b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.light-7e3b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-selected-f87f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.light_d968 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture_dirty_a72d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.input-0abd {
    font-size: 1rem;
}

.pattern_new_7de6 {
    padding: 1.5rem;
}

.hover-cb3d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tabs-hovered-532f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tabs-hovered-532f .mini-61cf {
    text-align: center;
}

.tabs-hovered-532f .carousel-f629 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tabs-hovered-532f .wrapper-fresh-c622 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar_04bf {
    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);
}

.sidebar_04bf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.info_12f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_12f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_5ac4 {
    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);
}

.large_5ac4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-hovered-811d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_complex_0266 {
    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);
}

.badge-945b {
    font-size: 2rem;
    flex-shrink: 0;
}

.label-wood-d724 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-1759 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_82d6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dark-0c88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow-2edf {
    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);
}

.icon_77e9 {
    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;
}

.icon_77e9.carousel-east-338b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.icon_77e9.upper_a5b8 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.icon_77e9.rough_0153 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.icon_77e9.tertiary-0790 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.icon_77e9.logo-green-689c {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.secondary_pink_a6df {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph_6292 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_c9dd {
    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);
}

.box_e374 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.element-52bc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element-52bc 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;
}

.element-52bc li:last-child {
    border-bottom: none;
}

.element-52bc li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.dropdown-fresh-2cca {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dropdown-fresh-2cca {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-fresh-2cca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown-4885 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.brown-4885:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown-4885.picture_f514 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .brown-4885.picture_f514 {
        grid-column: span 3;
    }
}

.bronze_2c28 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.brown-4885.picture_f514 .bronze_2c28 {
    background: rgba(6, 182, 212, 0.1);
}

.upper-8e2a {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.copper-5e79 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.brown-4885.picture_f514 .copper-5e79 {
    color: var(--info-color);
}

.image_63a4 {
    padding: 1.5rem;
    text-align: center;
}

.pattern-north-cd35 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.brown-4885.picture_f514 .pattern-north-cd35 {
    color: var(--info-color);
}

.logo_fluid_e1d1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.picture_new_6bb2 {
    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 */
.last_3049 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_3049 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_rough_aebf {
    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);
}

.input_rough_aebf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_72b3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_old_db97 {
    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);
}

.aside-full-5f9a {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_c7a0 {
    flex: 1;
}

.sidebar_8fc6 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-526d {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_4a27 {
    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);
}

.panel-short-84ad {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.menu_e7d1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.description-a6b0 {
    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);
}

.static_c582 {
  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);
}

.static_c582 .mini-61cf {
    text-align: center;
}

.static_c582 .progress_under_c49c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.static_c582 .carousel-f629 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern-e3f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion-0cbf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-middle-4adb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fast_ba89 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static-1ad9 {
    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);
}

.grid_fe47 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb-f42b {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-advanced-93c9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button-advanced-93c9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button-advanced-93c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_c6ec {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero_c6ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_db14 {
    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);
}

.module_huge_775f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.under_356b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.paragraph_fixed_b8b0 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paragraph_fixed_b8b0.section-baff {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.paragraph_fixed_b8b0.nav-yellow-e470 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.paragraph_fixed_b8b0.description-22ec {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.alert-eeaa {
    padding: 1.5rem;
    text-align: center;
}

.filter_lite_685d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rough_36b3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rough_36b3 .short_e75b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.overlay_clean_9d91 {
    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);
}

.overlay_clean_9d91:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.accent-cef4 {
  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);
}

.table-tiny-dcc0 {
    text-align: center;
}

.table-tiny-dcc0 .progress_under_c49c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.table-tiny-dcc0 .carousel-f629 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.image-stale-0c1b { text-align: center; }
.inner-4469 { text-align: left; }
.alert_soft_5f3c { text-align: right; }

.fast-757c { margin-bottom: 0; }
.shadow_19aa { margin-bottom: 0.5rem; }
.border-a4bd { margin-bottom: 1rem; }
.detail-76d3 { margin-bottom: 1.5rem; }
.texture_clean_de78 { margin-bottom: 2rem; }

.selected_60e3 { margin-top: 0; }
.image_clean_dc70 { margin-top: 0.5rem; }
.table-dynamic-f926 { margin-top: 1rem; }
.description-out-4d11 { margin-top: 1.5rem; }
.carousel_15b1 { margin-top: 2rem; }

.fn-hidden-4547 { display: none; }
.fn-visible-4547 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .shadow_fef7 {
        padding: 6rem 0 3rem;
    }
    
    .highlight_7a87 {
        text-align: center;
    }
    
    .background_e2c7 {
        text-align: center;
    }
    
    .content_first_d569 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .clean_46e1,
    .detail-bronze-c0d7,
    .frame_hard_c99c,
    .modal-8c05 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .shadow_fef7 {
        background: none;
    }
}

/* Providers Section */
.blue_ff39 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue_6598 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_6598 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blue_6598 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-down-3712 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel-down-3712:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.selected_2f58 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-e8af {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.description_410c {
    list-style: none;
    padding: 0;
}

.description_410c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.description_410c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.down_93d3 {
    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);
}

.down_93d3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.layout_85d2 {
    padding: var(--section-padding);
}

.text_83aa {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_83aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_last_8b3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block_last_8b3c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tabs_orange_cad4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tabs-e17a {
    display: flex;
    flex-direction: column;
}

.accordion_current_885d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.block_6dd6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gradient_491e {
    color: var(--accent-color);
}

.active-28b0 {
    font-size: 1.25rem;
}

.fast-ea05 {
    margin-bottom: 1rem;
}

.fast-ea05 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.border-fea1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-top-93b5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.mini-61cf {
    text-align: center;
}

.progress_under_c49c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-f629 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.alert-e4dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_9649 {
    margin: 2rem 0;
}

.progress-6236 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.progress-6236 .description-5e1f {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-1c16 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dynamic_60be {
    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;
}

.dynamic_60be:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter-selected-40a1 {
    font-size: 2rem;
}

.grid-liquid-540c {
    display: flex;
    flex-direction: column;
}

.purple-d648 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.outline_c6cd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.over_27cf {
    padding: var(--section-padding);
}

.gradient-hot-323d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gradient-hot-323d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient-hot-323d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_93e2 {
    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);
}

.photo_93e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_93e2 .progress_under_c49c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.photo_93e2 .carousel-f629 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.photo_93e2 .primary_27d8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.narrow_8deb {
    margin-top: 4rem;
}

.active_cd8e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.motion-45a4 {
    overflow-x: auto;
}

.wide_4890 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wide_4890 thead {
    background: var(--accent-color);
}

.wide_4890 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.wide_4890 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.wide_4890 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.wide_4890 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.feature-basic-1b59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-851c {
    max-width: 900px;
    margin: 0 auto;
}

.row_c443 {
    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);
}

.row_c443:hover {
    border-color: var(--accent-color);
}

.hot-7648 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hot-7648 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.gallery-9480 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.row_c443.fn-active-4547 .gallery-9480 {
    transform: rotate(45deg);
}

.hidden-bronze-7e11 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.row_c443.fn-active-4547 .hidden-bronze-7e11 {
    max-height: 1000px;
}

.hidden-bronze-7e11 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.focus-cold-7575 {
    padding: var(--section-padding);
}

.avatar_green_5bf4 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.component_056f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_center_d3a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_center_d3a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.banner_medium_5297 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-d88a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bright-1bd0 {
    font-size: 2rem;
}

.smooth-1343 {
    color: var(--text-white);
    margin: 0;
}

.fixed-92eb {
    list-style: none;
    padding: 0;
}

.fixed-92eb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-92eb li:last-child {
    border-bottom: none;
}

.gold_5028 {
    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);
}

.gold_5028 p {
    color: var(--success-color);
    margin: 0;
}

.header_0852 {
    margin-top: 3rem;
}

.widget_f02f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form_e003 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form_e003 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-0a4a {
    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);
}

.rough-42a7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-0a4a p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tiny_8e58 {
    padding: var(--section-padding);
}

.right-d25e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-d25e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex_0c17 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.complex_0c17:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.message-9c82 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tooltip-9faa {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.photo_664d {
    flex: 1;
}

.container_8cd3 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.paragraph_hard_4808 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.content_hot_04e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_021c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block_021c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.secondary-7bda {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.north-df91 {
    padding: var(--section-padding);
}

.mask_tiny_73a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.smooth-2c59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth-2c59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-e65c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_7ff3, .banner_9dad, .glass_be38 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.glass_be38 {
    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 */
.title_e8f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_e7df {
    margin: 2rem 0;
}

.easy_429a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-gold-edc4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search-430a {
    list-style: none;
    padding: 0;
}

.search-430a 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;
}

.search-430a li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.search-430a li:last-child {
    border-bottom: none;
}

.hard-f123 {
    text-align: center;
    margin-top: 2rem;
}

.panel_silver_e785 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.motion_cbad {
    padding: var(--section-padding);
}

.form_west_9c81 {
    margin: 2rem 0;
}

.progress_iron_3afa {
    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) {
    .progress_iron_3afa {
        flex-direction: column;
        align-items: flex-start;
    }
}

.progress_iron_3afa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media_simple_a96a {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.steel-60c5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.carousel_54e3 {
    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;
}

.module_dim_3335 {
    flex: 1;
}

.link-gold-70a6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.list-huge-0c05 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.message-3145 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.message_east_7a45 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .message_east_7a45 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.breadcrumb-2f13 {
    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);
}

.breadcrumb-2f13:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb-2f13 .progress_under_c49c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-2f13 .carousel-f629 {
    color: var(--text-gray);
    font-size: 1rem;
}

.column_8adb {
    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);
}

.description-inner-71df {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.description-inner-71df strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hover-e05a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hover-e05a {
        grid-template-columns: 1fr 1fr;
    }
}

.primary_1676 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new_13f0 {
    margin-bottom: 1.5rem;
}

.new_13f0 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.new_13f0 input,
.new_13f0 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;
}

.new_13f0 input:focus,
.new_13f0 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.lite-94a2 {
    width: 100%;
    margin-top: 1rem;
}

.rough-5365 {
    display: flex;
    align-items: center;
}

.button_hard_c4b9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.grid-full-096c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.gradient-iron-fc74 {
    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;
}

.pagination-d5b6 {
    color: var(--text-gray);
}

.avatar_pro_f8ca {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.backdrop-in-59d2 {
    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);
}

.backdrop-in-59d2 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.thumbnail_plasma_eb28 {
    margin-top: 3rem;
}

.silver_65a4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.message-wide-0abb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_0cec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.caption-silver-9678 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-silver-9678:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.iron_93f0 {
    padding: var(--section-padding);
}

.avatar_ba43 {
    margin: 2rem 0;
}

.down_59ea {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.logo-53e4 {
    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;
}

.logo-53e4:hover, .logo-53e4.fn-active-4547 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.image-gold-f68e {
    display: none;
}

.image-gold-f68e.fn-active-4547 {
    display: block;
}

.surface_stone_8cb3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_gold_256e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-focused-0fbb h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.main-focused-0fbb ul {
    list-style: none;
    padding: 0;
}

.main-focused-0fbb ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.main-focused-0fbb ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.notice_5f76 {
    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 */
.tabs_fixed_495e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-solid-5403 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_tall_58ea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.last_b92a {
    color: var(--accent-color);
    margin: 0;
}

.article-hovered-eac5 {
    display: flex;
    gap: 1.5rem;
}

.silver-c7b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.heading_clean_70ca {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.header-1d6e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.header-1d6e.gold-4eae {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.header-1d6e.paragraph-blue-5f9a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.header-1d6e.filter-f56a {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.block-down-f6a8 {
    margin-top: 2rem;
}

.accordion-477a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tiny-44dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tiny-44dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-b0c5 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.paper-15c0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tertiary_iron_4ff2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.yellow-533e {
    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 */
.video_f5a6 {
    padding: var(--section-padding);
}

.top_2866 {
    margin: 2rem 0;
}

.link-hot-979b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.backdrop-c9fe {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.tiny_2fb5 {
    list-style: none;
    padding: 0;
}

.tiny_2fb5 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;
}

.tiny_2fb5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.tiny_2fb5 li:last-child {
    border-bottom: none;
}

.surface_left_5c6f {
    margin: 2rem 0;
}

.media-4ba2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.inner_ba9a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .inner_ba9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask-e45b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east-4099 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.liquid-18bd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.banner_pink_3456 {
    margin-top: 2rem;
}

.hover-4c99 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.pagination-6d48 {
    list-style: none;
    padding: 0;
}

.accent-under-8984 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.accent-under-8984 a {
    color: var(--accent-color);
    text-decoration: none;
}

.accent-under-8984 a:hover {
    text-decoration: underline;
}

.video_upper_92dd {
    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 */
.inner-3c43 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_08ca {
    margin: 2rem 0;
}

.tooltip-cool-b005 {
    margin-bottom: 3rem;
}

.tooltip-cool-b005 .hidden-gold-edc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.highlight_b94b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search_brown_11e0 {
    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);
}

.search_brown_11e0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.logo_huge_a0a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .logo_huge_a0a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down-4e79 {
    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 */
.row-right-b3e8 {
    padding: var(--section-padding);
}

.cool_e7f0 {
    margin: 2rem 0;
}

.hovered-7378 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.row_plasma_a045 {
    overflow-x: auto;
    margin: 2rem 0;
}

.down_9a0a {
    background: rgba(6, 182, 212, 0.1) !important;
}

.hovered-89af {
    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;
}

.notification-thick-c07d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.layout-black-27e6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .layout-black-27e6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim_4eef {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim_4eef .description-5e1f {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.dim_4eef .in_148c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-pressed-aabc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.info_tall_b586 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-9f91 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright-9f91 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim_3c26 {
    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;
}

.dim_3c26:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.cold-52fa {
    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);
}

.avatar-action-a793 {
    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;
}

.footer_over_ac2d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.last_ffd6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.pro-a387 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.popup_a38a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.north-59ca {
    color: var(--text-white);
    font-weight: 600;
}

.accent-stone-fcd1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pink-d14f {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pink-d14f .bronze-36aa {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.link_5318 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_5318 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas_a679 {
    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);
}

.gas_a679:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gas_a679 .progress_under_c49c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gas_a679 .carousel-f629 {
    color: var(--text-gray);
    font-size: 1rem;
}

.column_27d2 {
    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);
}

.inner_0168 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.inner_0168 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.wrapper_19ef {
    margin: 2rem 0;
}

.list-dark-9a62 {
    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);
}

.list-dark-9a62:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pressed_7ce3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.light-0b0e {
    flex: 1;
}

.red-6247 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.prev-a3a9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.gradient_a918 {
    margin: 2rem 0;
}

.old_bc33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old_bc33 .in_148c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.old_bc33 .texture-0160 {
    color: var(--text-gray);
    margin: 0;
}

.dim_891a {
    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);
}

.dim_891a .wrapper_65e4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.video-pressed-aabc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.progress_f485 {
    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;
}

.center_7ef7 {
    flex: 1;
}

.header_0f7b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.form_green_4889 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.up_97ee {
    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;
}

.pressed_3d62 {
    flex: 1;
}

.first_fc88 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.liquid_7eb5 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.main-south-79f4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.menu_ac26 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hidden-3c59 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hidden-3c59 .bronze-36aa {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.block_5be0 {
    margin-top: 2rem;
}

.block_5be0 .widget_f02f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.heading_cbae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_0b7b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pressed_0b7b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_0b7b .mini-61cf {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-ad37 {
    margin: 2rem 0;
}

.up-fd16 {
    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 */
.outline_middle_3b5d {
    padding: var(--section-padding);
}

.large_fe7f {
    margin-top: 1rem;
}

.gradient_west_ea39 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.gradient_west_ea39 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gradient_west_ea39 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.content_left_6a47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_7997 {
    margin: 2rem 0;
}

.simple-1703 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.component-7a0d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.box_gas_8e4f {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.full-b0f5 {
    margin: 2rem 0;
}

.message_current_9882 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.message_current_9882 .hidden-gold-edc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_e8bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion_e8bc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.popup-dirty-a05e {
    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);
}

.full-7d84 {
    color: var(--text-white);
    font-weight: 600;
}

.highlight-7a8b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.preview-hard-1143 {
    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);
}

.preview-hard-1143 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.status-392f {
    padding: var(--section-padding);
}

.texture-3140 {
    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;
}

.texture-3140:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.slider-dark-4a8a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dark-4a8a .rough-42a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-dark-4a8a .filter-right-1761 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.preview-fc14 {
    flex: 1;
}

.tabs_hard_cd10 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.header_c22f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_c22f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.header_c22f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.green_49d5 {
    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);
}

.green_49d5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.green_49d5 strong {
    color: var(--warning-color);
}

/* Slots Section */
.menu-77b1 {
    padding: var(--section-padding);
}

.pattern-b37e {
    margin: 2rem 0;
}

/* Table Games Section */
.container-smooth-454b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro-64eb {
    margin: 2rem 0;
}

.dirty_1abc {
    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);
}

.dirty_1abc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dirty_1abc .texture_dirty_a72d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dirty_1abc .hover-cb3d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.input_c4be {
    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);
}

.input_c4be .wrapper_65e4 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.dropdown-b086 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_inner_a0bd {
    margin: 2rem 0;
}

.gradient_up_d145 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_5147 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active-4354 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_6efe {
    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);
}

.popup_6efe:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.popup_6efe.fn-active-4547 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article-tall-ca96 {
    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);
}

.active-0d86 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active-0d86 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.accordion_ae67 {
    padding: var(--section-padding);
}

.pagination_65e8 {
    margin: 2rem 0;
}

.gallery_f4f8 {
    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);
}

.gallery_f4f8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .gallery_f4f8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.surface_short_068b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tooltip_east_7488 {
    flex: 1;
}

.soft_03bf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.inner_2533 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.large-969d {
    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;
}

.grid_copper_c0fa {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.preview_96e8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.basic-d4ad {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.progress-037d {
    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;
}

.progress-037d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.west-0c57 {
    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);
}

.badge_prev_beec {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.badge_prev_beec strong {
    color: var(--accent-color);
}

/* New Games Section */
.item-4165 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_blue_d284 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .detail_blue_d284 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_blue_d284 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-clean-5ddc {
    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;
}

.secondary-clean-5ddc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.easy_8723 {
    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;
}

.stone-8f4e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.pink_7ff3 {
    font-size: 2rem;
}

.description_stale_cb51 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.accent_75ed {
    flex: 1;
}

.shadow_orange_ae07 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.content-fluid-6443 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shade-black-9e6b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sort_e0e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.overlay_pro_e668 {
    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;
}

.main-4667 {
    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;
}

.main-4667:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hard-a838 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north-7927 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner_d0ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .inner_d0ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid-1cb5 {
    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);
}

.block_a70a {
    color: var(--text-white);
    font-weight: 600;
}

.thumbnail_prev_b4c8 {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-f533 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hero-f533 strong {
    color: var(--accent-color);
}

/* Security Section */
.hero-light-de2d {
    padding: var(--section-padding);
}

/* Benefits Section */
.border_ed7c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.column_last_8986 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.breadcrumb_pink_9cdf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue-052e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.dirty_fa35 {
    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) {
    .dirty_fa35 {
        flex-direction: column;
        gap: 1rem;
    }
}

.dirty_fa35:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dirty_fa35 .up_97ee {
    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;
}

.dirty_fa35 .pressed_3d62 {
    flex: 1;
}

.dirty_fa35 .first_fc88 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dirty_fa35 .liquid_7eb5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.white-7038 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white-7038 .sidebar_8fc6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white-7038 .list_0702 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.white-7038 .list_0702 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.white-7038 .list_0702 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.row_tall_10f7 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.hard-6a56 {
    padding: var(--section-padding);
}

.thick-14ca {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .thick-14ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-slow-e2f0 {
    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);
}

.feature-slow-e2f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.feature-slow-e2f0 .layout-ed17 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-slow-e2f0 .text_373c {
    flex: 1;
}

.feature-slow-e2f0 .slider_dirty_5cf8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-slow-e2f0 .avatar_silver_bd4b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture-23e6 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-23e6 .element-west-128d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture-23e6 .green_fbde {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.texture-23e6 .green_fbde 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);
}

.texture-23e6 .green_fbde li:last-child {
    border-bottom: none;
}

.texture-23e6 .green_fbde 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;
}

.texture-23e6 .green_fbde li strong {
    color: var(--text-white);
}

.active-8209 {
    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);
}

.active-8209 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active-8209 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.popup-acc3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_cold_487e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading_cold_487e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-5ed1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mini-5ed1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article-cff3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-east-c50a {
    font-size: 2rem;
}

.background-19ea {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.filter_dynamic_b78f {
    flex: 1;
}

.panel_old_460f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel_old_460f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.panel_old_460f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.button_7402 {
    margin-top: 3rem;
}

.link-hot-979b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.backdrop-c9fe {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tiny_2fb5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiny_2fb5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tiny_2fb5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tiny_2fb5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.bottom_8f6b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_6fcb {
    margin: 2rem 0;
}

.clean_336f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.clean_336f .hidden-gold-edc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article_steel_b8ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .article_steel_b8ee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.backdrop-cfd3 {
    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);
}

.backdrop-cfd3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.alert_cd4c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.button-simple-9fb6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.gradient_fef1 {
    padding: var(--section-padding);
}

.mini-9fcd {
    margin: 2rem 0;
}

.backdrop_advanced_fe5b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .backdrop_advanced_fe5b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_advanced_fe5b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-80a4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active-80a4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.feature_e35b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wrapper-a89b {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.block_blue_df5b {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.block_blue_df5b.pattern-hovered-5007 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.old_02f2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.feature-south-87ba {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tabs_red_d8ce {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aside-tiny-6c18 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header-42a6 {
    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);
}

.header-42a6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header-42a6 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.link-silver-a4a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_6565 {
    margin: 2rem 0;
}

.footer_8dba {
    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) {
    .footer_8dba {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer_8dba:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.footer_8dba::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);
}

.accent-focused-2c10 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.image-f4d0 {
    flex: 1;
}

.easy-4937 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort_cool_8b05 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort_cool_8b05 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered_f680 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_4bdb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text-fixed-2429 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .text-fixed-2429 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_b8da {
    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);
}

.slow-bca1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail_first_6995 {
    flex: 1;
}

.widget_ffa0 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.background-tall-f3ab {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pattern-full-8659 {
    margin-top: 2rem;
    text-align: center;
}

.mini-41b9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mini-41b9 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.info_12f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_12f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_5ac4 {
    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);
}

.large_5ac4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.large_5ac4 .liquid_8fea {
    font-size: 2rem;
    flex-shrink: 0;
}

.large_5ac4 .box-e900 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.large_5ac4 .link-soft-c99a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.large_5ac4 .active_dark_68a1 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.search_cb06 {
    padding: var(--section-padding);
}

.footer_complex_0266 .west-9a9a {
    flex: 1;
}

/* Promo Calendar Section */
.notification_hovered_80a2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over-3eb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over-3eb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_tall_c93f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-light-aeb8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.overlay-huge-c6fe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.background-ef72 {
    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);
}

.feature-white-bf78 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.disabled_purple_2da6 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.black-9d12 {
    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);
}

.black-9d12 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black-9d12 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.narrow-05b2 {
    padding: var(--section-padding);
}

.next-e403 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .next-e403 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-ed5e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-advanced-c04b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in-001c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in-001c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.in-6eaf {
    margin-top: 3rem;
}

.in-6eaf .link-hot-979b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.in-6eaf .backdrop-c9fe {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in-6eaf .tiny_2fb5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.in-6eaf .tiny_2fb5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.in-6eaf .tiny_2fb5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.in-6eaf .tiny_2fb5 li strong {
    color: var(--warning-color);
}

.accent-9623 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent-9623 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.info_right_7ebf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-smooth-1f91 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-smooth-1f91 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-a213 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-a213 .hidden-gold-edc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.avatar-fast-ad75 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.picture-left-7ad3 {
    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);
}

.picture-left-7ad3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wide-7d6e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-cd50 {
    flex: 1;
}

.block_orange_9421 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.photo-3727 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.brown_4a36 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.stone-6047 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.logo-liquid-74b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .logo-liquid-74b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-e803 {
    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);
}

.secondary-e803:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup_3945 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-tall-6145 {
    color: var(--text-gray);
    font-size: 1rem;
}

.description-inner-71df {
    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);
}

.complex-0001 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.complex-0001 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.sidebar_narrow_dd42 { 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; }
.widget-3e83, .dirty_d8c9 { max-width:100%; height:auto; }

.nav-5fa9, .action-6480, .gradient_b0cf { white-space:normal; }

.highlight_7a87,
.background_e2c7,
.last_3049,
.info_12f4,
.gradient_a918,
.button-advanced-93c9 {
  flex-wrap:wrap;
}

[class*="grid"],
.logo-liquid-74b6,
.backdrop_advanced_fe5b,
.wrapper_out_422a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.shadow_fef7 img,
.background_e2c7 img,
.module_b2d5 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.texture_737a, .right_dba7,
.hard_f35b, .modal-24fa {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.motion-45a4 { width:100%; overflow-x:auto; }
.motion-45a4 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.blue_6598 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .blue_6598 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.carousel-down-3712 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.gradient-hot-323d,
.footer-wood-3697,
.modal_liquid_e84a,
.huge_adfd,
.message_east_7a45,
.logo-liquid-74b6,
.backdrop_advanced_fe5b,
.wrapper_out_422a,
.accent-cef4,
.pagination_65e8,
.blue_6598 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .gradient-hot-323d,
  .footer-wood-3697,
  .modal_liquid_e84a,
  .huge_adfd,
  .message_east_7a45,
  .logo-liquid-74b6,
  .backdrop_advanced_fe5b,
  .wrapper_out_422a,
  .accent-cef4,
  .pagination_65e8,
  .blue_6598 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.photo_93e2,
.breadcrumb-2f13,
.secondary-e803,
.clean-7063,
.active-80a4,
.table-tiny-dcc0,
.gallery_f4f8,
.carousel-down-3712 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.warm-2004,
.table_static_80a5,
.text_black_600e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.warm-2004 > *,
.table_static_80a5 > *,
.text_black_600e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7d05 */
.promo-block-e6 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
