/* {$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;
}

.gas_aece {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.aside-stale-f3e1 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .aside-stale-f3e1 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .aside-stale-f3e1 {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Header Styles */
.focus_b932 {
    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);
}

.dynamic_7a43 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .dynamic_7a43 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .widget-bd04 {
        grid-column: 1;
    }
    
    .notice-6676 {
        grid-column: 2;
    }
    
    .border_silver_b21e {
        grid-column: 3;
    }
}

.widget-bd04 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.widget-bd04:hover img {
    transform: scale(1.05);
}

/* Navigation */
.accordion_c128 {
    display: none;
}

@media (min-width: 1024px) {
    .accordion_c128 {
        display: block;
    }
}

/* Grouped Navigation */
.blue-9a79 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.clean_79ca {
    position: relative;
}

.alert_full_cd28 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.clean_79ca .south-4076 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.south-4076 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.slider-5e88 {
    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-5e88:hover,
.slider-5e88.fn-active-5449 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.widget-basic-15d3 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .widget-basic-15d3 {
        display: flex;
    }
}

/* Mobile Register Button */
.notice-6676 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .notice-6676 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.summary-middle-777a {
    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;
}

.summary-middle-777a::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 */
.border_silver_b21e {
    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) {
    .border_silver_b21e {
        display: none;
    }
}

.border_silver_b21e span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.border_silver_b21e.fn-active-5449 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.border_silver_b21e.fn-active-5449 span:nth-child(2) {
    opacity: 0;
}

.border_silver_b21e.fn-active-5449 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.layout-pro-ac52 {
    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;
}

.layout-pro-ac52.fn-active-5449 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.component-febc {
    overflow: hidden;
}

.purple-d1a3 {
    list-style: none;
    padding: 0.75rem 0;
}

.backdrop-40d7 {
    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;
}

.backdrop-40d7:hover,
.backdrop-40d7.fn-active-5449 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.backdrop-40d7.paragraph-7b8d {
    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;
}

.backdrop-40d7.paragraph-7b8d::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 */
.filter_over_2049 {
    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;
}

.iron_49d2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.iron_49d2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.list-4665 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.list-4665:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple-7a64 {
    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;
}

.purple-7a64:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.fresh_a2ef {
    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;
}

.advanced_c234 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.advanced_c234:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.motion_c0b3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.motion_c0b3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.article_gas_cbce {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.article_gas_cbce: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);
}

.hovered-628c {
    font-size: 1em;
    font-weight: 700;
}

.tooltip_east_c932 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.footer_1fbe {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.footer_1fbe::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;
}

.badge_4398 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .badge_4398 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.photo_aaa7 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.secondary-59cd {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.slider-40b2 {
    margin-bottom: 2rem;
}

.down-16a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .down-16a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-under-5480 {
    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);
}

.footer_out_46fe {
    font-size: 1.5rem;
}

.thick_1526 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.block-under-9090 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.in_d5a4 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.in_d5a4:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.main_62b6 {
    text-align: center;
    margin-bottom: 3rem;
}

.banner_tall_42a6 {
    margin-bottom: 1rem;
}

.large-244d {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.footer-warm-5b21 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .footer-warm-5b21 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-warm-5b21.row_0067 {
        direction: rtl;
    }
    
    .footer-warm-5b21.row_0067 > * {
        direction: ltr;
    }
}

.disabled_34ad {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.disabled_34ad:first-child {
    margin-top: 0;
}

.border-out-79f8 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.complex_caa3 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.complex_caa3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.label_5f26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_5f26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_2f99 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row-light-9d35 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.label_37ab {
    list-style: none;
}

.label_37ab li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_37ab li:last-child {
    border-bottom: none;
}

/* Games Features */
.hidden_abf5 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.tabs-motion-97fe {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.input-19f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_iron_e432 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.action-d29a {
    margin: 2rem 0;
}

.cool-e77b {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.layout_dim_4ea1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.footer-static-fb46 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.selected-8098 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.alert_iron_28e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_iron_28e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-21e2 {
    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);
}

.article-21e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover_aa9f {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fixed_9ad6 {
    font-size: 1.5rem;
}

.block_solid_19fd {
    color: var(--accent-color);
    margin: 0;
}

.thumbnail-iron-8531 {
    list-style: none;
}

.thumbnail-iron-8531 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.thumbnail-iron-8531 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.label-simple-81c3 {
    margin: 2rem 0;
}

.panel-38e6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.current-5b89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .current-5b89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_4c6a {
    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);
}

.red-d70c {
    font-size: 1.25rem;
}

.east-99a2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.secondary_lower_1aec,
.media-3256 {
    text-align: center;
    margin: 2rem 0;
}

.brown-94e7,
.sort-basic-a129 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.modal-hard-19cd {
    margin: 2rem 0;
    text-align: center;
}

.slider-advanced-1f3c {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slider-advanced-1f3c::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;
}

.east-b3e9 {
    position: relative;
    z-index: 1;
}

.complex-7437 {
    margin-bottom: 1rem;
}

.shadow_7a60 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-e947 {
    margin-bottom: 3rem;
}

.smooth-f141 {
    margin-top: 3rem;
}

.icon-0196 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .icon-0196 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-0196 .thumbnail-under-5480 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-48b3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bronze_6480 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.frame_ca33 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.short-54d2 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .short-54d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short-54d2 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.card-focused-0f60 {
    margin-bottom: 1rem;
}

.nav_thick_bc89 img {
    margin-bottom: 1rem;
}

.module-dim-4cbf {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_stale_a8a6 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.wrapper-4dfb {
    list-style: none;
}

.wrapper-4dfb li {
    margin-bottom: 0.5rem;
}

.wrapper-4dfb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.wrapper-4dfb a:hover {
    color: var(--accent-color);
}

.breadcrumb_63fe {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hard_7555 {
    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);
}

.hard_7555:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.yellow-b6fb {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.yellow-b6fb p {
    margin-bottom: 0.25rem;
}

.wood_11e8 {
    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) {
    .wood_11e8 {
        flex-direction: row;
    }
}

.icon_full_20ed {
    text-align: center;
}

@media (min-width: 768px) {
    .icon_full_20ed {
        text-align: left;
    }
}

.icon_full_20ed p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.disabled_light_8526 {
    font-size: 0.75rem !important;
}

.sort_outer_ef0d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.section_small_d798 {
    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);
    }
}

.mask_upper_4e6f {
    animation: fadeInUp 0.6s ease-out;
}

.badge_7d2e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.plasma_1d8e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_1d8e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.icon-24da {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-24da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow-7e6a {
    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);
}

.narrow-7e6a .input-19f9 {
    font-size: 1.25rem;
}

.narrow-7e6a .dropdown_motion_e719 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary_hot_8338 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary_hot_8338 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-old-d2f0 {
    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);
}

.highlight-old-d2f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_c939 {
    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);
}

.summary_bronze_ba01 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notice_7ce2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-1dfd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-static-dcae {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-static-dcae .popup_iron_e432 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-static-dcae .shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_3c84 {
    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);
}

.background-9597 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.background-9597 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.background-9597 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.wood_fd10 {
    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);
}

.search_prev_de47 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-large-2187 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-large-2187 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-large-2187 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);
}

.progress-large-2187 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.progress-large-2187 input::placeholder {
    color: var(--text-muted);
}

.hero-pink-a2d5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.yellow-8101 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.yellow-8101 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.list_thick_3e31 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.list_thick_3e31:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.current-5b89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-5b89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_4c6a {
    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);
}

.light_4c6a .red-d70c {
    font-size: 1.25rem;
}

.light_4c6a .east-99a2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.notice_6b64 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_9cc6 {
    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);
}

.shadow_9cc6 .input-19f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow_9cc6 .popup_iron_e432 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow_9cc6 .shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_tall_1d18 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_8392 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table_8392 .overlay-3466 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_8392 .wide-f64e {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_8f6d {
    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);
}

.fixed-4040 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed-4040 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-40ef {
    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);
}

.breadcrumb-40ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-complex-b1da {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.down_4429 {
    flex: 1;
}

.nav_plasma_b219 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dropdown_rough_fb70 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.border_selected_c453 {
    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);
}

.border_selected_c453:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.icon-fast-20f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-fast-20f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-cold-dd4f {
    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);
}

.column-cold-dd4f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-ad2b {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-f00f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pagination_cold_6390 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.menu-center-603b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip-green-ab2a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-d702 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-668d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple-668d .shade-651b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple-668d .footer_47c0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left_0f46 {
    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);
}

.wrapper_9839 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search_rough_8b3c {
    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);
}

.search_rough_8b3c .input-19f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_rough_8b3c .popup_iron_e432 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search_rough_8b3c .shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-soft-0611 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-soft-0611 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal_23de {
    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);
}

.modal_23de:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.notice-inner-1d9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-inner-1d9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-6d36 {
    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);
}

.cool-6d36:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough_1dfc {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_blue_880d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layout_dim_4ea1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.blue_8b4b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.middle-65ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft_fc02 {
    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);
}

.soft_fc02:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-655e {
    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);
}

.new_f2f4 {
    flex: 1;
}

.active-9c79 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.button-in-82a2 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.primary-cool-57a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-d5b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-8a7d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-8a7d .overlay-3466 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery-8a7d .wide-f64e {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-3256 {
    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);
}

.center_9211 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center_9211 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.title_thick_5157 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_thick_5157 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-57ee {
    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);
}

.light-57ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-06ed {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-0c88 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.full_1f66 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.secondary_f053 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon_under_3c28 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_5dc3 {
    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);
}

.box-lower-6bac {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture-down-bd70 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-c1ca {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_9839 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search_rough_8b3c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.search_rough_8b3c .popup_iron_e432 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search_rough_8b3c .shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
}

.first_b6cd {
    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);
}

.wide_a872 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wide_a872 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide_a872 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_3b5c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.component_3b5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs-dfcc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fluid_ca5f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.section-20aa {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bright_437e {
    padding: 1.5rem;
}

.info-ef9e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.in-da68 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in-da68 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;
}

.in-da68 li:last-child {
    border-bottom: none;
}

.in-da68 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.red-dba0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red-dba0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-1bb7 {
    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);
}

.active-1bb7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-dirty-d4ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-dbf8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.panel-smooth-3441 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.label_c979 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary-simple-53c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-23e3 {
    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);
}

.preview_e94f {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_bronze_f6c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid_b270 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-c0ff {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.border_a00c {
    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);
}

.pro_81c2 {
    text-align: center;
}

.button_faa7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title-2179 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.accent-red-93a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-d43f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-d43f .popup_iron_e432 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article-d43f .shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-59a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu-59a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-59a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-hard-7e56 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hidden-hard-7e56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_glass_e00e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.main_8333 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup_iron_e432 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.outline-d1a9 {
    padding: 1.5rem;
}

.shade-hovered-c26d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.focused_9837 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused_9837 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;
}

.focused_9837 li:last-child {
    border-bottom: none;
}

.focused_9837 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.description-pink-7795 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.clean_bc30 {
    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);
}

.clean_bc30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west-5c70 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-full-32c9 {
    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);
}

.status_c939 {
    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;
}

.summary_bronze_ba01 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_7ce2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic_3f30 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-6076 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-cfb7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.current-5891 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.paragraph-hard-3f78 {
    display: flex;
    gap: 1rem;
}

.paragraph-hard-3f78 .list-hard-5595 {
    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;
}

.paper-9a47 {
    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);
}

.section_7e2f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.basic_da53 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.basic_da53 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;
}

.basic_da53 li:last-child {
    border-bottom: none;
}

.basic_da53 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.huge-ddce {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .huge-ddce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .huge-ddce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_b9cb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.block_b9cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-951c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.text_hot_a059 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shade-651b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.logo-north-ffcd {
    font-size: 1rem;
}

.content-8a67 {
    padding: 1.5rem;
}

.footer_47c0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.image_9137 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.image_9137 .pro_81c2 {
    text-align: center;
}

.image_9137 .title-2179 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.image_9137 .grid-new-36bd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside_6ba4 {
    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);
}

.aside_6ba4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.link-7e9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-7e9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_d537 {
    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);
}

.down_d537:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-584a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_a15e {
    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);
}

.notice_bright_fbe1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-2c99 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav-cool-8f87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-4534 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.thick_d296 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_cf1a {
    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);
}

.purple_7f09 {
    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;
}

.purple_7f09.description_new_bae1 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.purple_7f09.detail_8f8d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.purple_7f09.black_6519 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.purple_7f09.motion_ee16 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.purple_7f09.title_b3ea {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hard-a9cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row_hot_ca08 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_solid_5ebe {
    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);
}

.photo_narrow_5f01 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.slider_tall_1d18 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider_tall_1d18 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;
}

.slider_tall_1d18 li:last-child {
    border-bottom: none;
}

.slider_tall_1d18 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.media_f552 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media_f552 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media_f552 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left_00d3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.left_00d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_00d3.down-82a4 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .left_00d3.down-82a4 {
        grid-column: span 3;
    }
}

.hidden-03f7 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.left_00d3.down-82a4 .hidden-03f7 {
    background: rgba(6, 182, 212, 0.1);
}

.content-east-80b9 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.bronze-ed08 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.left_00d3.down-82a4 .bronze-ed08 {
    color: var(--info-color);
}

.row-glass-e383 {
    padding: 1.5rem;
    text-align: center;
}

.accordion-acbc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.left_00d3.down-82a4 .accordion-acbc {
    color: var(--info-color);
}

.input_ad02 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.mask-south-34d3 {
    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 */
.thumbnail_efda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_efda {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple-c05e {
    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);
}

.simple-c05e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main_light_0f66 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_9cc6 {
    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);
}

.red-d70c {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_slow_b9ab {
    flex: 1;
}

.panel-38e6 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter-dff0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom_804a {
    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);
}

.bottom-33bf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo-91c4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section_small_d798 {
    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);
}

.content-6fd2 {
  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);
}

.content-6fd2 .pro_81c2 {
    text-align: center;
}

.content-6fd2 .button_faa7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.content-6fd2 .title-2179 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.medium_3d8a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall-9e33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-9fac {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed-d6f7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-new-a10d {
    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);
}

.frame-2162 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_focused_0c0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_focused_88e4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .layout_focused_88e4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout_focused_88e4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-15fb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.in-15fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy_982e {
    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);
}

.pink_0ad6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.table-81a0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.outer-d7d0 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outer-d7d0.info-lite-61a8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.outer-d7d0.sort-tiny-712d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.outer-d7d0.status_white_038e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.article-f106 {
    padding: 1.5rem;
    text-align: center;
}

.link_4c7e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.silver-c7ad {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.silver-c7ad .gallery-8522 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.cool-c087 {
    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);
}

.cool-c087:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filter_east_d350 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.north-3ac2 {
    text-align: center;
}

.north-3ac2 .button_faa7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.north-3ac2 .title-2179 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.texture-fede { text-align: center; }
.fresh_ad30 { text-align: left; }
.current_0b49 { text-align: right; }

.grid-new-dba3 { margin-bottom: 0; }
.gallery_efb9 { margin-bottom: 0.5rem; }
.out_8e94 { margin-bottom: 1rem; }
.list_new_42ea { margin-bottom: 1.5rem; }
.aside_out_7a82 { margin-bottom: 2rem; }

.small_d078 { margin-top: 0; }
.frame_lower_d6e1 { margin-top: 0.5rem; }
.column_3554 { margin-top: 1rem; }
.wrapper-gold-5903 { margin-top: 1.5rem; }
.alert_aaca { margin-top: 2rem; }

.fn-hidden-5449 { display: none; }
.fn-visible-5449 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .footer_1fbe {
        padding: 6rem 0 3rem;
    }
    
    .badge_4398 {
        text-align: center;
    }
    
    .footer-warm-5b21 {
        text-align: center;
    }
    
    .down-16a8 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .focus_b932,
    .layout-pro-ac52,
    .slider-advanced-1f3c,
    .frame_ca33 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .footer_1fbe {
        background: none;
    }
}

/* Providers Section */
.rough-9ba3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification_1822 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_1822 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_1822 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_e332 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent_e332:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar_hovered_eee8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight_cf5e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus-99ff {
    list-style: none;
    padding: 0;
}

.focus-99ff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.focus-99ff li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.description-advanced-85dc {
    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);
}

.description-advanced-85dc p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.small-7a31 {
    padding: var(--section-padding);
}

.nav_77a8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_77a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_9b29 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image_9b29:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stale_5c60 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.border-7f13 {
    display: flex;
    flex-direction: column;
}

.badge_static_1609 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.primary_plasma_d6a2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer_909d {
    color: var(--accent-color);
}

.logo-green-7721 {
    font-size: 1.25rem;
}

.over_c64b {
    margin-bottom: 1rem;
}

.over_c64b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.paragraph_9a29 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.mask-south-daa1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.pro_81c2 {
    text-align: center;
}

.button_faa7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title-2179 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.message-basic-d942 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_purple_24b0 {
    margin: 2rem 0;
}

.preview_154a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.preview_154a .input-19f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-purple-4887 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.out_77c9 {
    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;
}

.out_77c9:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon_9e99 {
    font-size: 2rem;
}

.info_0759 {
    display: flex;
    flex-direction: column;
}

.upper_f0b1 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.cool_8189 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.row_tall_6c23 {
    padding: var(--section-padding);
}

.green-c9de {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .green-c9de {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .green-c9de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-5e70 {
    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);
}

.avatar-5e70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar-5e70 .button_faa7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.avatar-5e70 .title-2179 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.avatar-5e70 .row_dirty_d42f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.frame_cee9 {
    margin-top: 4rem;
}

.overlay_thick_59c0 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.aside-3fb5 {
    overflow-x: auto;
}

.message_large_dec9 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.message_large_dec9 thead {
    background: var(--accent-color);
}

.message_large_dec9 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.message_large_dec9 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.message_large_dec9 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.message_large_dec9 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.dropdown-815b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_fb85 {
    max-width: 900px;
    margin: 0 auto;
}

.mini-c931 {
    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);
}

.mini-c931:hover {
    border-color: var(--accent-color);
}

.alert_b981 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.alert_b981 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.module-dc2f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.mini-c931.fn-active-5449 .module-dc2f {
    transform: rotate(45deg);
}

.texture_96de {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.mini-c931.fn-active-5449 .texture_96de {
    max-height: 1000px;
}

.texture_96de p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.progress_gold_55d3 {
    padding: var(--section-padding);
}

.background-9597 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.accent-79af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_pressed_15af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_pressed_15af {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort-4406 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_db64 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accent_634d {
    font-size: 2rem;
}

.backdrop-e88a {
    color: var(--text-white);
    margin: 0;
}

.yellow_c128 {
    list-style: none;
    padding: 0;
}

.yellow_c128 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yellow_c128 li:last-child {
    border-bottom: none;
}

.shadow-upper-03f5 {
    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);
}

.shadow-upper-03f5 p {
    color: var(--success-color);
    margin: 0;
}

.tag-e3e5 {
    margin-top: 3rem;
}

.section_7e2f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.image_rough_5dc3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image_rough_5dc3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature_silver_aad0 {
    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);
}

.paragraph_d676 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature_silver_aad0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tiny_baf7 {
    padding: var(--section-padding);
}

.input_9bd6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_9bd6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_dynamic_da44 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content_dynamic_da44:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.glass_89c9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cold_36a5 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.photo-west-a737 {
    flex: 1;
}

.slow-4369 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.dark-1ac7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.focus-2590 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_red_eea5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort_red_eea5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.component_1572 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.caption-down-2bb0 {
    padding: var(--section-padding);
}

.shadow-outer-6265 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.section_a088 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_a088 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_adc9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_d400, .smooth-1fc3, .banner-df55 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.banner-df55 {
    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 */
.filter_8c9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected-c5d2 {
    margin: 2rem 0;
}

.active-pressed-c5e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_tall_0d80 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.new_937c {
    list-style: none;
    padding: 0;
}

.new_937c 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;
}

.new_937c li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.new_937c li:last-child {
    border-bottom: none;
}

.hot_5802 {
    text-align: center;
    margin-top: 2rem;
}

.button-0d87 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.avatar-4b0a {
    padding: var(--section-padding);
}

.row_6c20 {
    margin: 2rem 0;
}

.south-1f02 {
    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) {
    .south-1f02 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.south-1f02:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.warm-7bf5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.silver_894b {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.icon-east-8613 {
    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;
}

.paper-da24 {
    flex: 1;
}

.table_slow_1115 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.active-4474 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hard_bb47 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.slider-a72b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .slider-a72b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.header_south_d9b5 {
    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);
}

.header_south_d9b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header_south_d9b5 .button_faa7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_south_d9b5 .title-2179 {
    color: var(--text-gray);
    font-size: 1rem;
}

.clean_ef5c {
    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);
}

.paragraph-dirty-f3cc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.paragraph-dirty-f3cc strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.breadcrumb_slow_e0fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .breadcrumb_slow_e0fd {
        grid-template-columns: 1fr 1fr;
    }
}

.focus-small-eb25 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_2ccf {
    margin-bottom: 1.5rem;
}

.active_2ccf label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.active_2ccf input,
.active_2ccf 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;
}

.active_2ccf input:focus,
.active_2ccf select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.box-98c7 {
    width: 100%;
    margin-top: 1rem;
}

.section-7073 {
    display: flex;
    align-items: center;
}

.motion_2e8e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.notification_5078 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.slider-inner-6bf8 {
    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;
}

.image_0f46 {
    color: var(--text-gray);
}

.status-d1f2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.purple_61be {
    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);
}

.purple_61be p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.selected-860c {
    margin-top: 3rem;
}

.tabs_c514 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.form-6032 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_ae75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.modal-blue-6937 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-blue-6937:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.media_c4de {
    padding: var(--section-padding);
}

.column-copper-84a7 {
    margin: 2rem 0;
}

.detail-mini-98d4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.wide_6aa8 {
    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;
}

.wide_6aa8:hover, .wide_6aa8.fn-active-5449 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.module-41ee {
    display: none;
}

.module-41ee.fn-active-5449 {
    display: block;
}

.table-82ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action_f963 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice_8a40 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.notice_8a40 ul {
    list-style: none;
    padding: 0;
}

.notice_8a40 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.notice_8a40 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.south_e78e {
    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 */
.surface_active_a184 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_in_5000 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black_8ec4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.module-dirty-e604 {
    color: var(--accent-color);
    margin: 0;
}

.image-4527 {
    display: flex;
    gap: 1.5rem;
}

.picture-focused-79b3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture_b10f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.caption-2d22 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption-2d22.focus_5b41 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.caption-2d22.layout-45ca {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.caption-2d22.over_331d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.block-2a0f {
    margin-top: 2rem;
}

.gallery-silver-b8fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-pink-d63e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .main-pink-d63e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_ddfc {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.table-9604 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.iron-b1f5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.stone-224a {
    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 */
.preview_short_6155 {
    padding: var(--section-padding);
}

.dirty-c936 {
    margin: 2rem 0;
}

.detail_active_426a {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.smooth_f124 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.modal-4cfe {
    list-style: none;
    padding: 0;
}

.modal-4cfe 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;
}

.modal-4cfe li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.modal-4cfe li:last-child {
    border-bottom: none;
}

.popup-bfa9 {
    margin: 2rem 0;
}

.liquid-3185 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.south_98c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .south_98c4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip_c5e8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_hard_a5ab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.upper_bae9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.label_ec99 {
    margin-top: 2rem;
}

.nav_plasma_b219 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.purple-3f8f {
    list-style: none;
    padding: 0;
}

.carousel-5de3 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.carousel-5de3 a {
    color: var(--accent-color);
    text-decoration: none;
}

.carousel-5de3 a:hover {
    text-decoration: underline;
}

.list-slow-1b2f {
    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 */
.short-31ba {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-5174 {
    margin: 2rem 0;
}

.under-cbcf {
    margin-bottom: 3rem;
}

.under-cbcf .article_tall_0d80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.black-0652 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top_5e2f {
    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);
}

.top_5e2f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.image_8586 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .image_8586 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-red-b05d {
    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 */
.chip_b074 {
    padding: var(--section-padding);
}

.label_dirty_b320 {
    margin: 2rem 0;
}

.lite-0371 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.last_98a0 {
    overflow-x: auto;
    margin: 2rem 0;
}

.column_bronze_96a5 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.gradient-current-036a {
    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;
}

.right_1c3d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.element_1742 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .element_1742 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_focused_5f8a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_focused_5f8a .input-19f9 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.nav_focused_5f8a .popup_iron_e432 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_pro_9da2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.pattern-a9d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_inner_5e78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_inner_5e78 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_liquid_833b {
    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;
}

.notification_liquid_833b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.active_fresh_672c {
    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);
}

.photo-615e {
    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;
}

.complex_f186 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wrapper-0f45 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.component-center-0e73 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.accent-7283 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in_4200 {
    color: var(--text-white);
    font-weight: 600;
}

.label_4875 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.large-204d {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.large-204d .list-hard-5595 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.small-3256 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small-3256 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_3185 {
    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);
}

.summary_3185:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary_3185 .button_faa7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary_3185 .title-2179 {
    color: var(--text-gray);
    font-size: 1rem;
}

.inner-7fb5 {
    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);
}

.info-ecdf {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.info-ecdf strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.icon_under_3c28 {
    margin: 2rem 0;
}

.tiny_5dc3 {
    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);
}

.tiny_5dc3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.box-lower-6bac {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.heading-9bb0 {
    flex: 1;
}

.texture-down-bd70 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-c1ca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.wrapper_9839 {
    margin: 2rem 0;
}

.search_rough_8b3c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_rough_8b3c .popup_iron_e432 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.search_rough_8b3c .shade-hovered-c26d {
    color: var(--text-gray);
    margin: 0;
}

.first_b6cd {
    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);
}

.first_b6cd .brown-94e7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.media_pro_9da2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.detail-655e {
    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;
}

.new_f2f4 {
    flex: 1;
}

.button-in-82a2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.primary-cool-57a2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.status_c939 {
    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;
}

.secondary-ff56 {
    flex: 1;
}

.summary_bronze_ba01 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.notice_7ce2 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.backdrop-cfb7 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.current-5891 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.paragraph-hard-3f78 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.paragraph-hard-3f78 .list-hard-5595 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paper-9a47 {
    margin-top: 2rem;
}

.paper-9a47 .section_7e2f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.footer_d43f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border_a00c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .border_a00c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_a00c .pro_81c2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-red-93a8 {
    margin: 2rem 0;
}

.article-d43f {
    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 */
.mini_cfac {
    padding: var(--section-padding);
}

.outline-d1a9 {
    margin-top: 1rem;
}

.focused_9837 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.focused_9837 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.focused_9837 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.outline_920e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-dabc {
    margin: 2rem 0;
}

.black_f9f6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.out-1bbd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.backdrop_clean_69ca {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.aside_paper_76da {
    margin: 2rem 0;
}

.link_south_577e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.link_south_577e .article_tall_0d80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.large_6a95 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .large_6a95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.progress_59a9 {
    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);
}

.simple_20b8 {
    color: var(--text-white);
    font-weight: 600;
}

.container-dirty-93e5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.medium-0efc {
    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);
}

.medium-0efc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.focus_green_8a2b {
    padding: var(--section-padding);
}

.photo-4a6a {
    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;
}

.photo-4a6a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table_d19b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table_d19b .paragraph_d676 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_d19b .mask-440f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tag-top-9306 {
    flex: 1;
}

.summary-6517 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.background_ced1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_ced1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.background_ced1 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.middle_bca6 {
    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);
}

.middle_bca6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.middle_bca6 strong {
    color: var(--warning-color);
}

/* Slots Section */
.sort-ffe9 {
    padding: var(--section-padding);
}

.tooltip-green-ab2a {
    margin: 2rem 0;
}

/* Table Games Section */
.status_purple_7b73 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-d702 {
    margin: 2rem 0;
}

.simple-668d {
    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);
}

.simple-668d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.simple-668d .shade-651b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple-668d .footer_47c0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.left_0f46 {
    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);
}

.left_0f46 .brown-94e7 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.widget_fast_bdd2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-short-dd09 {
    margin: 2rem 0;
}

.center_c356 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_0958 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_f1ed {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-complex-0ac5 {
    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);
}

.carousel-complex-0ac5:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.carousel-complex-0ac5.fn-active-5449 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south_cb3c {
    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);
}

.gradient-e434 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient-e434 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.north_0ddc {
    padding: var(--section-padding);
}

.hidden-c6bf {
    margin: 2rem 0;
}

.photo_0f1e {
    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);
}

.photo_0f1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .photo_0f1e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.notification_hard_2a13 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.form_fast_615b {
    flex: 1;
}

.thick_a3a2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.glass_14d9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.basic_b331 {
    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;
}

.link-fda7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hover-a5a3 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pink-5903 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tag-8df7 {
    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;
}

.tag-8df7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.banner_north_182b {
    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);
}

.upper-84d5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.upper-84d5 strong {
    color: var(--accent-color);
}

/* New Games Section */
.input-in-0172 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element-tall-5a20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .element-tall-5a20 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-tall-5a20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.south-353c {
    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;
}

.south-353c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.popup-blue-37f2 {
    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;
}

.alert-steel-6ae6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.video-e68e {
    font-size: 2rem;
}

.dynamic_8e1e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.mask_bottom_07cc {
    flex: 1;
}

.search_fixed_f540 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.avatar_silver_4075 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.header-blue-6ab4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.steel_b51a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.frame_320e {
    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;
}

.fluid_6a60 {
    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;
}

.fluid_6a60:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.logo-3bf1 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-365e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_paper_7645 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero_paper_7645 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-medium-f1ae {
    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);
}

.rough-c096 {
    color: var(--text-white);
    font-weight: 600;
}

.layout-action-5b4a {
    color: var(--accent-color);
    font-weight: 600;
}

.wrapper_yellow_6389 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.wrapper_yellow_6389 strong {
    color: var(--accent-color);
}

/* Security Section */
.link_fast_78a2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.first_f1ab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.short_efc1 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.wrapper_23a2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_active_caf4 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.media_inner_5d1f {
    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) {
    .media_inner_5d1f {
        flex-direction: column;
        gap: 1rem;
    }
}

.media_inner_5d1f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.media_inner_5d1f .status_c939 {
    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;
}

.media_inner_5d1f .secondary-ff56 {
    flex: 1;
}

.media_inner_5d1f .summary_bronze_ba01 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.media_inner_5d1f .notice_7ce2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.heading_fresh_c187 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_fresh_c187 .panel-38e6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading_fresh_c187 .notice_6b64 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading_fresh_c187 .notice_6b64 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.heading_fresh_c187 .notice_6b64 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.block_new_7550 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.breadcrumb-6cba {
    padding: var(--section-padding);
}

.hovered-bc3a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hovered-bc3a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-a7b0 {
    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);
}

.avatar-a7b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.avatar-a7b0 .wrapper-7f69 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-a7b0 .right-d410 {
    flex: 1;
}

.avatar-a7b0 .overlay-3466 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.avatar-a7b0 .rough_c61a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.card_69f3 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_69f3 .link_fluid_3d30 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card_69f3 .list-89d4 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.card_69f3 .list-89d4 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);
}

.card_69f3 .list-89d4 li:last-child {
    border-bottom: none;
}

.card_69f3 .list-89d4 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;
}

.card_69f3 .list-89d4 li strong {
    color: var(--text-white);
}

.notification-paper-6e9d {
    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);
}

.notification-paper-6e9d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification-paper-6e9d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hot_b824 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-down-027f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .label-down-027f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inner_ad7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.inner_ad7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.avatar_2e13 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.up_10b4 {
    font-size: 2rem;
}

.out-0ed4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.layout_next_0cb6 {
    flex: 1;
}

.title-down-6bd9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title-down-6bd9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.title-down-6bd9 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.search-5af5 {
    margin-top: 3rem;
}

.detail_active_426a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.smooth_f124 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-4cfe {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-4cfe li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.modal-4cfe li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.modal-4cfe li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.paragraph_5b2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh-4711 {
    margin: 2rem 0;
}

.gas-0616 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.gas-0616 .article_tall_0d80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.action-04ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .action-04ee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-4d50 {
    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);
}

.main-4d50:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.sort_9609 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-west-6142 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.simple_e940 {
    padding: var(--section-padding);
}

.accordion-7c06 {
    margin: 2rem 0;
}

.gallery-d49a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .gallery-d49a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-d49a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_e297 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask_e297:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.disabled_81a5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.clean_91f4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.texture_center_0a81 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.texture_center_0a81.easy_c7a0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.photo-ebef {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.badge-stale-1368 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.article_15eb {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-yellow-4dac {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb-cold-39a5 {
    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);
}

.breadcrumb-cold-39a5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb-cold-39a5 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.outline-0df8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider-83f5 {
    margin: 2rem 0;
}

.slider-80b1 {
    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) {
    .slider-80b1 {
        flex-direction: column;
        gap: 1rem;
    }
}

.slider-80b1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slider-80b1::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);
}

.gas_9e15 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.backdrop-hard-e919 {
    flex: 1;
}

.hidden_96fb {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.easy-6414 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-6414 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-17e7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_b92e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-center-3f11 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .label-center-3f11 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_narrow_a90d {
    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);
}

.gallery_da85 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail_bf7f {
    flex: 1;
}

.tooltip-warm-bf8d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.lite-65c0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.feature-paper-656c {
    margin-top: 2rem;
    text-align: center;
}

.soft_f097 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.soft_f097 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.link-7e9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-7e9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_d537 {
    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);
}

.down_d537:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.down_d537 .block-dirty-d4ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.down_d537 .mini-dbf8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.down_d537 .panel-smooth-3441 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.down_d537 .label_c979 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.secondary_9faa {
    padding: var(--section-padding);
}

.wrapper_a15e .secondary-action-6740 {
    flex: 1;
}

/* Promo Calendar Section */
.current_09dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_ccde {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_ccde {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-4fe9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-43e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.accent-gold-275c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table_2781 {
    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);
}

.hovered-caee {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-a7fc {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.in-b956 {
    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);
}

.in-b956 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in-b956 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.thick-0e5b {
    padding: var(--section-padding);
}

.heading-b541 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading-b541 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-left-5be3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_large_432f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media_8a02 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media_8a02 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.article_7b15 {
    margin-top: 3rem;
}

.article_7b15 .detail_active_426a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.article_7b15 .smooth_f124 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article_7b15 .modal-4cfe {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.article_7b15 .modal-4cfe li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.article_7b15 .modal-4cfe li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.article_7b15 .modal-4cfe li strong {
    color: var(--warning-color);
}

.layout_blue_5dd1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_blue_5dd1 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.tag-4dc2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick_45c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_45c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_advanced_5c2c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_advanced_5c2c .article_tall_0d80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.feature-5d3a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.in_e7b7 {
    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);
}

.in_e7b7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-92e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_top_aaa7 {
    flex: 1;
}

.wide-57ca {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.row-72d3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mask-b633 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.title-steel-6870 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.silver_c7e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .silver_c7e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-in-349b {
    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);
}

.paragraph-in-349b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info_brown_2b24 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-pink-243e {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph-dirty-f3cc {
    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);
}

.prev-a597 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.prev-a597 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.aside-stale-f3e1 { 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; }
.in_d5a4, .complex_caa3 { max-width:100%; height:auto; }

.filter_over_2049, .purple-7a64, .fresh_a2ef { white-space:normal; }

.badge_4398,
.footer-warm-5b21,
.thumbnail_efda,
.link-7e9e,
.wrapper_9839,
.layout_focused_88e4 {
  flex-wrap:wrap;
}

[class*="grid"],
.silver_c7e7,
.gallery-d49a,
.icon-0196 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.footer_1fbe img,
.footer-warm-5b21 img,
.block-under-9090 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.photo_aaa7, .secondary-59cd,
.banner_tall_42a6, .large-244d {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.aside-3fb5 { width:100%; overflow-x:auto; }
.aside-3fb5 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.notification_1822 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .notification_1822 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.accent_e332 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.green-c9de,
.detail-out-0cc4,
.fluid_e8c0,
.container_outer_15b9,
.slider-a72b,
.silver_c7e7,
.gallery-d49a,
.icon-0196,
.filter_east_d350,
.hidden-c6bf,
.notification_1822 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .green-c9de,
  .detail-out-0cc4,
  .fluid_e8c0,
  .container_outer_15b9,
  .slider-a72b,
  .silver_c7e7,
  .gallery-d49a,
  .icon-0196,
  .filter_east_d350,
  .hidden-c6bf,
  .notification_1822 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.avatar-5e70,
.header_south_d9b5,
.paragraph-in-349b,
.thumbnail-under-5480,
.mask_e297,
.north-3ac2,
.photo_0f1e,
.accent_e332 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.overlay-f675,
.label-fresh-9258,
.fresh_2143 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.overlay-f675 > *,
.label-fresh-9258 > *,
.fresh_2143 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f485 */
.shadow-element-p9 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
