/* {$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;
}

.tabs-up-0975 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.message_prev_7c8c {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .message_prev_7c8c {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .message_prev_7c8c {
        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 */
.wood_8bab {
    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);
}

.brown-da45 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .brown-da45 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .copper-2ef4 {
        grid-column: 1;
    }
    
    .dirty-6481 {
        grid-column: 2;
    }
    
    .label-7b2c {
        grid-column: 3;
    }
}

.copper-2ef4 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.copper-2ef4:hover img {
    transform: scale(1.05);
}

/* Navigation */
.detail-b4b4 {
    display: none;
}

@media (min-width: 1024px) {
    .detail-b4b4 {
        display: block;
    }
}

/* Grouped Navigation */
.shadow_tall_6ff8 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.notice_4fdf {
    position: relative;
}

.smooth-7c5d {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.notice_4fdf .hero-plasma-bb2f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hero-plasma-bb2f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.center_3976 {
    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;
}

.center_3976:hover,
.center_3976.fn-active-8bb5 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.tooltip-3404 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tooltip-3404 {
        display: flex;
    }
}

/* Mobile Register Button */
.dirty-6481 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .dirty-6481 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.mask-c3b7 {
    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;
}

.mask-c3b7::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 */
.label-7b2c {
    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) {
    .label-7b2c {
        display: none;
    }
}

.label-7b2c span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.label-7b2c.fn-active-8bb5 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.label-7b2c.fn-active-8bb5 span:nth-child(2) {
    opacity: 0;
}

.label-7b2c.fn-active-8bb5 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.content_narrow_dc7a {
    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;
}

.content_narrow_dc7a.fn-active-8bb5 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.sidebar_stale_4c7c {
    overflow: hidden;
}

.video-50d6 {
    list-style: none;
    padding: 0.75rem 0;
}

.preview_e387 {
    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;
}

.preview_e387:hover,
.preview_e387.fn-active-8bb5 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.preview_e387.accent_medium_0bcc {
    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;
}

.preview_e387.accent_medium_0bcc::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 */
.list_action_57c4 {
    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;
}

.secondary-slow-4bd1 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.secondary-slow-4bd1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.text_abe9 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.text_abe9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.dark-879b {
    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;
}

.dark-879b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.bright-d1af {
    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;
}

.medium_2b69 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.medium_2b69:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.wrapper-down-c520 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.wrapper-down-c520:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.red_5178 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.red_5178: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);
}

.surface_34a1 {
    font-size: 1em;
    font-weight: 700;
}

.section-huge-8ec1 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.sidebar_a7af {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.sidebar_a7af::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;
}

.pattern-cool-a681 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .pattern-cool-a681 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.banner_lite_6bfe {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.block_dirty_2127 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.input_wood_c211 {
    margin-bottom: 2rem;
}

.stale-76a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stale-76a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_top_4c3e {
    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);
}

.row-lite-61b3 {
    font-size: 1.5rem;
}

.advanced-a6d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.header-d859 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-smooth-709c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.footer-smooth-709c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hard_e9b5 {
    text-align: center;
    margin-bottom: 3rem;
}

.button_old_d1b8 {
    margin-bottom: 1rem;
}

.carousel-fixed-ac92 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.detail-a2a9 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .detail-a2a9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .detail-a2a9.caption-right-7da8 {
        direction: rtl;
    }
    
    .detail-a2a9.caption-right-7da8 > * {
        direction: ltr;
    }
}

.image_abe3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.image_abe3:first-child {
    margin-top: 0;
}

.prev_9738 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.icon-5a3c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.icon-5a3c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.progress_hard_9bba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_hard_9bba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-a31a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-bronze-981c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.chip_light_ac0a {
    list-style: none;
}

.chip_light_ac0a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip_light_ac0a li:last-child {
    border-bottom: none;
}

/* Games Features */
.dropdown_iron_ffb2 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.block-stone-b04c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hard_a5ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.under_b171 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.avatar-167c {
    margin: 2rem 0;
}

.lower_1d2c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.column_18ce {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.label_2668 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.accordion_f573 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.widget-medium-8a1e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-medium-8a1e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_white_c5d3 {
    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);
}

.aside_white_c5d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row_liquid_426f {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget_8ebd {
    font-size: 1.5rem;
}

.easy-168a {
    color: var(--accent-color);
    margin: 0;
}

.lower-dd70 {
    list-style: none;
}

.lower-dd70 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.lower-dd70 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.glass-a440 {
    margin: 2rem 0;
}

.aside-pro-e912 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.filter-selected-0826 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .filter-selected-0826 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_fb9e {
    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);
}

.panel_9349 {
    font-size: 1.25rem;
}

.breadcrumb-solid-554a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.gallery_motion_d65b,
.section_1717 {
    text-align: center;
    margin: 2rem 0;
}

.focused_50fc,
.secondary-a5f9 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.box_purple_472f {
    margin: 2rem 0;
    text-align: center;
}

.icon-prev-11d4 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.icon-prev-11d4::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;
}

.footer-7a5e {
    position: relative;
    z-index: 1;
}

.wrapper-866a {
    margin-bottom: 1rem;
}

.orange-ddcc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.iron_ca32 {
    margin-bottom: 3rem;
}

.glass_b595 {
    margin-top: 3rem;
}

.light-8846 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .light-8846 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-8846 .accordion_top_4c3e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.up_18f2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_4879 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.status-3472 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.summary_in_6f2d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .summary_in_6f2d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary_in_6f2d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notification_advanced_c34b {
    margin-bottom: 1rem;
}

.active-9ad3 img {
    margin-bottom: 1rem;
}

.hard-6bbd {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-ca7d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.active_last_5df4 {
    list-style: none;
}

.active_last_5df4 li {
    margin-bottom: 0.5rem;
}

.active_last_5df4 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.active_last_5df4 a:hover {
    color: var(--accent-color);
}

.warm-911d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-6c04 {
    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);
}

.old-6c04:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.section-slow-c203 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.section-slow-c203 p {
    margin-bottom: 0.25rem;
}

.easy_db42 {
    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) {
    .easy_db42 {
        flex-direction: row;
    }
}

.overlay-0961 {
    text-align: center;
}

@media (min-width: 768px) {
    .overlay-0961 {
        text-align: left;
    }
}

.overlay-0961 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.solid-09da {
    font-size: 0.75rem !important;
}

.list-334a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.preview_4ad6 {
    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);
    }
}

.in_26e3 {
    animation: fadeInUp 0.6s ease-out;
}

.notice_f82d {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hover-a4f8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-a4f8 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.list-8671 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-8671 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-bottom-104d {
    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);
}

.gradient-bottom-104d .hard_a5ec {
    font-size: 1.25rem;
}

.gradient-bottom-104d .down_3e6d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hidden-first-9078 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hidden-first-9078 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_0700 {
    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);
}

.item_0700:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_mini_a3cc {
    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);
}

.gold-160d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort_096b {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_fresh_f63d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-current-dd71 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero-current-dd71 .under_b171 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-current-dd71 .smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_6dbc {
    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);
}

.table-middle-9e60 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.table-middle-9e60 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.table-middle-9e60 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.content_inner_0a19 {
    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);
}

.last-23e8 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tabs_glass_756f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tabs_glass_756f label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tabs_glass_756f 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);
}

.tabs_glass_756f input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tabs_glass_756f input::placeholder {
    color: var(--text-muted);
}

.hot-55f4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article_medium_24fb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.article_medium_24fb input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tooltip-west-fc8c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tooltip-west-fc8c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.filter-selected-0826 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-selected-0826 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_fb9e {
    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);
}

.up_fb9e .panel_9349 {
    font-size: 1.25rem;
}

.up_fb9e .breadcrumb-solid-554a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.list_5c75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_c670 {
    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);
}

.link_c670 .hard_a5ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_c670 .under_b171 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link_c670 .smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-4b9c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.next-d83f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.next-d83f .orange_480b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.next-d83f .grid_last_e6a5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-ecac {
    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);
}

.bottom-2b9e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bottom-2b9e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-advanced-8e71 {
    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);
}

.video-advanced-8e71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel_outer_b367 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.silver_ddaf {
    flex: 1;
}

.backdrop_39fe {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pressed_8db5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.primary_7b3e {
    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);
}

.primary_7b3e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.panel_soft_11c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_soft_11c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_5462 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination_5462:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-eb4e {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_middle_5b02 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-d9a7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tooltip_glass_99b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.section-0392 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new_74b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.light_b4bf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.light_b4bf .medium-d336 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.light_b4bf .east-2f7d {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-outer-5f16 {
    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);
}

.dark-c4bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-9642 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter-9642 .hard_a5ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter-9642 .under_b171 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter-9642 .smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_center_bfaa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_center_bfaa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_steel_4872 {
    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);
}

.slider_steel_4872:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.disabled-black-86d5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-black-86d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_dynamic_e95b {
    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);
}

.link_dynamic_e95b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-top-09a3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_65c4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.column_18ce {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.top-4056 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.out_3df4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-937e {
    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);
}

.bright-937e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-prev-18b8 {
    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);
}

.photo_steel_1eb4 {
    flex: 1;
}

.section_purple_fc52 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.accordion-1f2b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.medium-19f7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-middle-0d87 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-old-c752 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-old-c752 .orange_480b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag-old-c752 .grid_last_e6a5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_1717 {
    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);
}

.shade-easy-a849 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-easy-a849 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.banner-c88e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner-c88e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-8e92 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture-8e92:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs-basic-efd9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-full-57b4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.box-black-0a7f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.background-85f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mini_be10 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old-57c9 {
    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);
}

.fluid_1d15 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-3542 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.warm_7891 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-c4bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-9642 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.filter-9642 .under_b171 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-9642 .smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-8070 {
    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);
}

.form_6a41 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .form_6a41 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_6a41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short_280a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.short_280a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_pressed_9e66 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.complex_e100 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress_1dad {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.summary_east_dbda {
    padding: 1.5rem;
}

.label-cc7e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav-a60c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-a60c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.nav-a60c li:last-child {
    border-bottom: none;
}

.nav-a60c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.tabs-0808 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-0808 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_fbe6 {
    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_fbe6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_8088 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_wide_f394 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.clean_1190 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.fast_8192 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.current-fec3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_over_60b8 {
    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);
}

.info-gas-73b6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_46c2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green-e4fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_upper_5e59 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row-e538 {
    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);
}

.gas-8c8d {
    text-align: center;
}

.solid_7d82 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cool-55b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element-gas-c671 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro_791a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro_791a .under_b171 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro_791a .smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_pressed_2272 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_pressed_2272 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_pressed_2272 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_edc8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status_edc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_362c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.copper-7443 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.under_b171 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.menu-pro-608d {
    padding: 1.5rem;
}

.smooth_e551 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter-00b2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-00b2 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;
}

.filter-00b2 li:last-child {
    border-bottom: none;
}

.filter-00b2 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.black_0cd9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tag_simple_0abf {
    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);
}

.tag_simple_0abf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under_507c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-5455 {
    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);
}

.frame_mini_a3cc {
    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;
}

.gold-160d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_096b {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_78e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_70ee {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row-copper-999b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary_478a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.column_liquid_038c {
    display: flex;
    gap: 1rem;
}

.column_liquid_038c .hero_stone_bfc0 {
    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;
}

.texture-down-ab54 {
    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);
}

.hot_21c5 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.large-de8b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.large-de8b 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;
}

.large-de8b li:last-child {
    border-bottom: none;
}

.large-de8b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.pattern_ee38 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern_ee38 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern_ee38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_7b05 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.paper_7b05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone-0fff {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.first-850e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.medium-d336 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.full_3a3a {
    font-size: 1rem;
}

.hard_f912 {
    padding: 1.5rem;
}

.east-2f7d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.grid_wide_4d0e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.grid_wide_4d0e .gas-8c8d {
    text-align: center;
}

.grid_wide_4d0e .cool-55b9 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.grid_wide_4d0e .media_narrow_096d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shadow-red-5929 {
    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);
}

.shadow-red-5929:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.element-a196 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-a196 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper-428f {
    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);
}

.paper-428f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-south-33cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_2d07 {
    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);
}

.table-gas-b9d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_a82c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel-down-101e {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-wide-bdb6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mini-c69a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-28e5 {
    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);
}

.secondary_efb4 {
    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;
}

.secondary_efb4.row_26b4 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.secondary_efb4.aside_fast_661d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.secondary_efb4.steel-af1d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.secondary_efb4.middle_7973 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.secondary_efb4.container-gold-1396 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.under_e15a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden_inner_d269 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-d51b {
    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);
}

.video-orange-739f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.element-4b9c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element-4b9c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.element-4b9c li:last-child {
    border-bottom: none;
}

.element-4b9c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.secondary_full_9469 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary_full_9469 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_full_9469 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_14cb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.backdrop_14cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_14cb.outer-f6f8 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .backdrop_14cb.outer-f6f8 {
        grid-column: span 3;
    }
}

.button_9452 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.backdrop_14cb.outer-f6f8 .button_9452 {
    background: rgba(6, 182, 212, 0.1);
}

.panel-wood-5379 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.soft-d82b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.backdrop_14cb.outer-f6f8 .soft-d82b {
    color: var(--info-color);
}

.primary_187a {
    padding: 1.5rem;
    text-align: center;
}

.button-stone-414e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.backdrop_14cb.outer-f6f8 .button-stone-414e {
    color: var(--info-color);
}

.status-narrow-cea2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.fluid_0a03 {
    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 */
.info-east-8aee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-east-8aee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-fresh-b81a {
    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);
}

.image-fresh-b81a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_288e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_c670 {
    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);
}

.panel_9349 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_paper_25e0 {
    flex: 1;
}

.aside-pro-e912 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_fluid_6daf {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_6d7f {
    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);
}

.summary-c910 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.header-purple-aca5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preview_4ad6 {
    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);
}

.element_9d2d {
  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);
}

.element_9d2d .gas-8c8d {
    text-align: center;
}

.element_9d2d .solid_7d82 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.element_9d2d .cool-55b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_be4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_305c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action_adc4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-9e42 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light-c82c {
    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);
}

.nav_7930 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main_active_5114 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_cool_aaaf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component_cool_aaaf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component_cool_aaaf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-b64d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card-b64d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_7f97 {
    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);
}

.badge_bronze_28a6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button-eca6 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.rough_a60d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rough_a60d.motion_a036 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.rough_a60d.medium_39ca {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.rough_a60d.outer_6b78 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.slow-4af3 {
    padding: 1.5rem;
    text-align: center;
}

.pagination-9dbd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sort_70b4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sort_70b4 .breadcrumb-ce9e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.container-7303 {
    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);
}

.container-7303:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.new_8386 {
  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);
}

.banner-inner-a1e0 {
    text-align: center;
}

.banner-inner-a1e0 .solid_7d82 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.banner-inner-a1e0 .cool-55b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.simple-45fd { text-align: center; }
.popup-pro-3e50 { text-align: left; }
.icon_40ad { text-align: right; }

.steel_4c9a { margin-bottom: 0; }
.nav-27ff { margin-bottom: 0.5rem; }
.input-lite-85b6 { margin-bottom: 1rem; }
.mask_7f0b { margin-bottom: 1.5rem; }
.menu-copper-872d { margin-bottom: 2rem; }

.caption-pro-c671 { margin-top: 0; }
.avatar_2a3b { margin-top: 0.5rem; }
.top_96f3 { margin-top: 1rem; }
.hidden-80e2 { margin-top: 1.5rem; }
.west_5e68 { margin-top: 2rem; }

.fn-hidden-8bb5 { display: none; }
.fn-visible-8bb5 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .sidebar_a7af {
        padding: 6rem 0 3rem;
    }
    
    .pattern-cool-a681 {
        text-align: center;
    }
    
    .detail-a2a9 {
        text-align: center;
    }
    
    .stale-76a9 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .wood_8bab,
    .content_narrow_dc7a,
    .icon-prev-11d4,
    .status-3472 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .sidebar_a7af {
        background: none;
    }
}

/* Providers Section */
.backdrop-top-d4f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_fresh_1767 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_fresh_1767 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card_fresh_1767 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_fdde {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover_fdde:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner-ac19 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.chip-purple-932e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.item-0844 {
    list-style: none;
    padding: 0;
}

.item-0844 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.item-0844 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section_slow_143d {
    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);
}

.section_slow_143d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.fast_2a29 {
    padding: var(--section-padding);
}

.fluid-8909 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-8909 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_action_2573 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel_action_2573:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slow_5f43 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.border_new_1732 {
    display: flex;
    flex-direction: column;
}

.gold_34e9 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.medium_d87f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info_65a4 {
    color: var(--accent-color);
}

.wood_61c3 {
    font-size: 1.25rem;
}

.light-a556 {
    margin-bottom: 1rem;
}

.light-a556 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.green_025e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.nav-tiny-6598 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.gas-8c8d {
    text-align: center;
}

.solid_7d82 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cool-55b9 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.media_2377 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_6eb2 {
    margin: 2rem 0;
}

.title-de68 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.title-de68 .hard_a5ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.dirty-9e55 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.backdrop-8af4 {
    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;
}

.backdrop-8af4:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.frame_43fa {
    font-size: 2rem;
}

.icon-up-1694 {
    display: flex;
    flex-direction: column;
}

.warm-bb76 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dropdown_lite_87b3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.menu-de68 {
    padding: var(--section-padding);
}

.tabs_new_9729 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tabs_new_9729 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs_new_9729 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-steel-233f {
    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);
}

.paragraph-steel-233f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-steel-233f .solid_7d82 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.paragraph-steel-233f .cool-55b9 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.paragraph-steel-233f .input-4ecf {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.warm-39fa {
    margin-top: 4rem;
}

.component-0ac6 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.grid-63f5 {
    overflow-x: auto;
}

.picture_75da {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.picture_75da thead {
    background: var(--accent-color);
}

.picture_75da th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.picture_75da td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_75da tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.picture_75da tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.banner-lite-13d2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim_1d9e {
    max-width: 900px;
    margin: 0 auto;
}

.notification_08f0 {
    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);
}

.notification_08f0:hover {
    border-color: var(--accent-color);
}

.photo-lower-c29c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.photo-lower-c29c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.aside_plasma_caec {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.notification_08f0.fn-active-8bb5 .aside_plasma_caec {
    transform: rotate(45deg);
}

.banner_hot_3815 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.notification_08f0.fn-active-8bb5 .banner_hot_3815 {
    max-height: 1000px;
}

.banner_hot_3815 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.widget_1080 {
    padding: var(--section-padding);
}

.table-middle-9e60 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.list-5f88 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.rough-605d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough-605d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video_hot_8171 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-0595 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.first-345d {
    font-size: 2rem;
}

.alert-bottom-7d53 {
    color: var(--text-white);
    margin: 0;
}

.active-363e {
    list-style: none;
    padding: 0;
}

.active-363e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active-363e li:last-child {
    border-bottom: none;
}

.east-2e0d {
    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);
}

.east-2e0d p {
    color: var(--success-color);
    margin: 0;
}

.hover_action_2818 {
    margin-top: 3rem;
}

.hot_21c5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.yellow-0f84 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .yellow-0f84 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle_5aeb {
    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);
}

.banner-advanced-cbf2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.middle_5aeb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.breadcrumb-7697 {
    padding: var(--section-padding);
}

.outer-6ed9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer-6ed9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_630b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag_630b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.background_smooth_d68a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.top_0f5c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.overlay_cold_5a25 {
    flex: 1;
}

.gradient-3834 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.white_5428 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.block-11e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-clean-b63a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-clean-b63a:last-child {
    border-bottom: none;
}

/* Comparison Section */
.fresh-608e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.link_active_e75b {
    padding: var(--section-padding);
}

.paragraph-ec1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.dim-527d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-527d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale-7fe5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-dynamic-ea71, .narrow-67fc, .gas_bf01 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.gas_bf01 {
    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 */
.mask-outer-1cee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_bbfe {
    margin: 2rem 0;
}

.breadcrumb_liquid_c629 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-down-9dd3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.soft-1077 {
    list-style: none;
    padding: 0;
}

.soft-1077 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;
}

.soft-1077 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.soft-1077 li:last-child {
    border-bottom: none;
}

.clean-1dd9 {
    text-align: center;
    margin-top: 2rem;
}

.soft-ddd5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.middle-aad9 {
    padding: var(--section-padding);
}

.content-selected-80da {
    margin: 2rem 0;
}

.secondary_last_0dff {
    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) {
    .secondary_last_0dff {
        flex-direction: column;
        align-items: flex-start;
    }
}

.secondary_last_0dff:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb-12bc {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.highlight_26a4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.notification_6b65 {
    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;
}

.gallery_prev_2fc3 {
    flex: 1;
}

.pressed-7168 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.box_a636 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wide_c0cf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.liquid_d966 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .liquid_d966 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.secondary_advanced_bfe7 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.secondary_advanced_bfe7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_advanced_bfe7 .solid_7d82 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary_advanced_bfe7 .cool-55b9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.filter-wood-ee4e {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_left_02c4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.disabled_left_02c4 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.pagination_tall_ff3f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .pagination_tall_ff3f {
        grid-template-columns: 1fr 1fr;
    }
}

.description-71c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-upper-1326 {
    margin-bottom: 1.5rem;
}

.carousel-upper-1326 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-upper-1326 input,
.carousel-upper-1326 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;
}

.carousel-upper-1326 input:focus,
.carousel-upper-1326 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.bottom-43f7 {
    width: 100%;
    margin-top: 1rem;
}

.box_black_e732 {
    display: flex;
    align-items: center;
}

.picture_rough_7d15 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.carousel-brown-0c20 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.frame-short-d0c7 {
    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;
}

.gradient_bright_51b1 {
    color: var(--text-gray);
}

.top_5f3b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.plasma-4a6d {
    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);
}

.plasma-4a6d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.highlight_right_cf69 {
    margin-top: 3rem;
}

.primary_over_b58a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.slider-6fe7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_paper_718f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gradient-hard-b4e3 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-hard-b4e3:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.narrow-354b {
    padding: var(--section-padding);
}

.tertiary_out_19ee {
    margin: 2rem 0;
}

.thick_9bfc {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.active-a1f6 {
    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;
}

.active-a1f6:hover, .active-a1f6.fn-active-8bb5 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gold-387d {
    display: none;
}

.gold-387d.fn-active-8bb5 {
    display: block;
}

.hero-637f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-0b28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_817c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.sort_817c ul {
    list-style: none;
    padding: 0;
}

.sort_817c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.sort_817c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hard-cd28 {
    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 */
.under-1d7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-3df0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_fixed_d443 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.overlay_down_6fac {
    color: var(--accent-color);
    margin: 0;
}

.component_71c1 {
    display: flex;
    gap: 1.5rem;
}

.module_active_96c4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.section-dark-d1c5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.gold_d071 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.gold_d071.frame-3645 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.gold_d071.detail-lower-33a8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.gold_d071.badge-fb90 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.description_dim_6174 {
    margin-top: 2rem;
}

.summary-ed14 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-pro-71c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .main-pro-71c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue_6075 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.label-new-1e4e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.under_bd68 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.grid-pressed-a2c0 {
    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 */
.module-af5c {
    padding: var(--section-padding);
}

.main-3063 {
    margin: 2rem 0;
}

.notice-middle-d5df {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.form-04d8 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.wrapper-46c5 {
    list-style: none;
    padding: 0;
}

.wrapper-46c5 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;
}

.wrapper-46c5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.wrapper-46c5 li:last-child {
    border-bottom: none;
}

.accent_action_6074 {
    margin: 2rem 0;
}

.label_out_dd09 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.layout-brown-0e2a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-brown-0e2a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_dim_092a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.copper-0406 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade-pink-9d0b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.right_7d68 {
    margin-top: 2rem;
}

.backdrop_39fe {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.pagination_advanced_99b3 {
    list-style: none;
    padding: 0;
}

.dim-18e7 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.dim-18e7 a {
    color: var(--accent-color);
    text-decoration: none;
}

.dim-18e7 a:hover {
    text-decoration: underline;
}

.column_hard_915d {
    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 */
.glass_9a14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-450d {
    margin: 2rem 0;
}

.row-4d1c {
    margin-bottom: 3rem;
}

.row-4d1c .badge-down-9dd3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.easy-eb85 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.down_f723 {
    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);
}

.down_f723:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.current_d608 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .current_d608 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-in-a618 {
    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 */
.dropdown-29a6 {
    padding: var(--section-padding);
}

.gradient-5d4c {
    margin: 2rem 0;
}

.grid-fluid-d77e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thick-de2f {
    overflow-x: auto;
    margin: 2rem 0;
}

.gas_83e2 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.text-e395 {
    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;
}

.link-north-d3f7 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.lite-fa63 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .lite-fa63 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_8971 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale_8971 .hard_a5ec {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.stale_8971 .under_b171 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input-8ca5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.under-662c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-b9be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-b9be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_88c5 {
    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;
}

.plasma_88c5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.over-24e2 {
    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);
}

.status_blue_56e6 {
    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;
}

.motion_968e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.full_85fc {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.current_107c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.next-66bf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-f860 {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper_625a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tag-clean-cf71 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-clean-cf71 .hero_stone_bfc0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hero-orange-570f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-orange-570f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north_defb {
    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);
}

.north_defb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.north_defb .solid_7d82 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north_defb .cool-55b9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.gallery_a89f {
    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);
}

.focused_1fd3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focused_1fd3 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.mini_be10 {
    margin: 2rem 0;
}

.old-57c9 {
    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);
}

.old-57c9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.fluid_1d15 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sort_dc28 {
    flex: 1;
}

.mini-3542 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.warm_7891 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.dark-c4bc {
    margin: 2rem 0;
}

.filter-9642 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-9642 .under_b171 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.filter-9642 .smooth_e551 {
    color: var(--text-gray);
    margin: 0;
}

.next-8070 {
    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);
}

.next-8070 .focused_50fc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.input-8ca5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.texture-prev-18b8 {
    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;
}

.photo_steel_1eb4 {
    flex: 1;
}

.accordion-1f2b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.medium-19f7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.frame_mini_a3cc {
    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;
}

.tooltip_purple_3eae {
    flex: 1;
}

.gold-160d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sort_096b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.row-copper-999b {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tertiary_478a {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.column_liquid_038c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.column_liquid_038c .hero_stone_bfc0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.texture-down-ab54 {
    margin-top: 2rem;
}

.texture-down-ab54 .hot_21c5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.block_basic_b4fb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-e538 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-e538 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-e538 .gas-8c8d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element-gas-c671 {
    margin: 2rem 0;
}

.pro_791a {
    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 */
.breadcrumb-a1c1 {
    padding: var(--section-padding);
}

.menu-pro-608d {
    margin-top: 1rem;
}

.filter-00b2 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.filter-00b2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.filter-00b2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.stone-a59e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_515c {
    margin: 2rem 0;
}

.shadow_53ca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.wide_02a2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.box-solid-d091 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.purple-39ee {
    margin: 2rem 0;
}

.table_paper_04c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.table_paper_04c2 .badge-down-9dd3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-easy-bd5a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden-easy-bd5a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-fresh-2fbc {
    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);
}

.feature_4393 {
    color: var(--text-white);
    font-weight: 600;
}

.prev_bc61 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.description_7896 {
    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);
}

.description_7896 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.highlight-1e6c {
    padding: var(--section-padding);
}

.button_cold_46bd {
    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;
}

.button_cold_46bd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.fresh_78d1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fresh_78d1 .banner-advanced-cbf2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fresh_78d1 .copper-0729 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.box-82b8 {
    flex: 1;
}

.row-old-ec37 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.photo-west-7155 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-west-7155 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.photo-west-7155 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.last_4894 {
    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);
}

.last_4894 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.last_4894 strong {
    color: var(--warning-color);
}

/* Slots Section */
.last_5147 {
    padding: var(--section-padding);
}

.section-0392 {
    margin: 2rem 0;
}

/* Table Games Section */
.label_eff2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new_74b2 {
    margin: 2rem 0;
}

.light_b4bf {
    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);
}

.light_b4bf:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.light_b4bf .medium-d336 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.light_b4bf .east-2f7d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.icon-outer-5f16 {
    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);
}

.icon-outer-5f16 .focused_50fc {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.column_099c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-in-e5b2 {
    margin: 2rem 0;
}

.mask-full-ba58 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_right_12f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_upper_6f1c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.last_cc49 {
    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);
}

.last_cc49:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.last_cc49.fn-active-8bb5 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_98c3 {
    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);
}

.thumbnail-99ba {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail-99ba strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.block_basic_e417 {
    padding: var(--section-padding);
}

.article-selected-ccb6 {
    margin: 2rem 0;
}

.block-solid-541c {
    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);
}

.block-solid-541c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .block-solid-541c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tooltip_down_88db {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.steel_4fae {
    flex: 1;
}

.slider-hard-2d7f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shade-007c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.main-simple-d7be {
    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;
}

.plasma_483e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nav_41f6 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fast-f568 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.down_1061 {
    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;
}

.down_1061:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.carousel-46d0 {
    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);
}

.small_8080 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small_8080 strong {
    color: var(--accent-color);
}

/* New Games Section */
.heading-simple-27a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold_bbd1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .cold_bbd1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cold_bbd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-cool-fc57 {
    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;
}

.input-cool-fc57:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component-0802 {
    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;
}

.over_933d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.notice-91dd {
    font-size: 2rem;
}

.main-7de2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.first_dc63 {
    flex: 1;
}

.search-293c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.badge_7869 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.iron_5d31 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description_up_a729 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hot_3e99 {
    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;
}

.lower_505f {
    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;
}

.lower_505f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.button_black_6648 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-a229 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon-2c71 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .icon-2c71 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-advanced-1551 {
    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);
}

.stale-3dc9 {
    color: var(--text-white);
    font-weight: 600;
}

.button-045f {
    color: var(--accent-color);
    font-weight: 600;
}

.thick_1b65 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.thick_1b65 strong {
    color: var(--accent-color);
}

/* Security Section */
.picture-566e {
    padding: var(--section-padding);
}

/* Benefits Section */
.next_a80a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.box_clean_be82 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.media-7d63 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-9fff {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.new_90fb {
    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) {
    .new_90fb {
        flex-direction: column;
        gap: 1rem;
    }
}

.new_90fb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.new_90fb .frame_mini_a3cc {
    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;
}

.new_90fb .tooltip_purple_3eae {
    flex: 1;
}

.new_90fb .gold-160d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.new_90fb .sort_096b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.dropdown_black_9e43 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_black_9e43 .aside-pro-e912 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown_black_9e43 .list_5c75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_black_9e43 .list_5c75 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.dropdown_black_9e43 .list_5c75 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.status-a5ad {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.narrow_e1b0 {
    padding: var(--section-padding);
}

.main_b238 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .main_b238 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_d787 {
    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);
}

.tertiary_d787:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tertiary_d787 .slider-571b {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_d787 .overlay_short_3a26 {
    flex: 1;
}

.tertiary_d787 .orange_480b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_d787 .outline_active_b5aa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.photo-tall-a701 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-tall-a701 .container-down-9c6c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-tall-a701 .search_0baf {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.photo-tall-a701 .search_0baf 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);
}

.photo-tall-a701 .search_0baf li:last-child {
    border-bottom: none;
}

.photo-tall-a701 .search_0baf 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;
}

.photo-tall-a701 .search_0baf li strong {
    color: var(--text-white);
}

.thumbnail_466b {
    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);
}

.thumbnail_466b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_466b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.east_1077 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-cool-391c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop-cool-391c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column-ec0d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.column-ec0d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_large_64f7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fresh_46a9 {
    font-size: 2rem;
}

.south-43d7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.block-a9f4 {
    flex: 1;
}

.active-8f16 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-8f16 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.active-8f16 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.lite_8880 {
    margin-top: 3rem;
}

.notice-middle-d5df {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.form-04d8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-46c5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-46c5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wrapper-46c5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wrapper-46c5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.stone-60f2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_39f1 {
    margin: 2rem 0;
}

.popup-cc40 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.popup-cc40 .badge-down-9dd3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-38b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notification-38b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-small-e177 {
    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);
}

.card-small-e177:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.frame_glass_9341 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.focused_7d99 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pink-86df {
    padding: var(--section-padding);
}

.feature_inner_34fc {
    margin: 2rem 0;
}

.pink_8a56 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .pink_8a56 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pink_8a56 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_slow_ee47 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop_slow_ee47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.advanced-c7d4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.link-0dbe {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.module-9f7f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.module-9f7f.feature_fc7d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.bottom_bb7d {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.feature-old-b6a9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.widget_66ce {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.active_white_8f80 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.progress-pressed-b8dc {
    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);
}

.progress-pressed-b8dc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.progress-pressed-b8dc strong {
    color: var(--accent-color);
}

/* Update Log Section */
.icon-cad8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_81da {
    margin: 2rem 0;
}

.huge-4f13 {
    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) {
    .huge-4f13 {
        flex-direction: column;
        gap: 1rem;
    }
}

.huge-4f13:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.huge-4f13::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);
}

.solid-9780 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.image-3bf2 {
    flex: 1;
}

.widget-fast-3b8a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert_pro_3b00 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert_pro_3b00 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-fe13 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_463e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail_3b93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .detail_3b93 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_wood_e3db {
    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);
}

.paragraph-soft-4f67 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link-simple-679a {
    flex: 1;
}

.row-orange-cbf3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.banner_e4fa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wide_d4b6 {
    margin-top: 2rem;
    text-align: center;
}

.button_69db {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button_69db strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.element-a196 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-a196 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper-428f {
    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);
}

.paper-428f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paper-428f .stone_8088 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paper-428f .shade_wide_f394 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.paper-428f .clean_1190 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.paper-428f .fast_8192 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.thick_c97b {
    padding: var(--section-padding);
}

.right_2d07 .bronze-3742 {
    flex: 1;
}

/* Promo Calendar Section */
.image_3ad8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_4660 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_4660 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left-3d1a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-0119 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.sidebar_02b3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wide_623d {
    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);
}

.hover_north_26cc {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.static-bee6 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.backdrop_b7e1 {
    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);
}

.backdrop_b7e1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop_b7e1 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.paper-71c7 {
    padding: var(--section-padding);
}

.paragraph_current_edaf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .paragraph_current_edaf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert_e8aa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_16a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-rough-b5d0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-rough-b5d0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-050d {
    margin-top: 3rem;
}

.simple-050d .notice-middle-d5df {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.simple-050d .form-04d8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.simple-050d .wrapper-46c5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.simple-050d .wrapper-46c5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.simple-050d .wrapper-46c5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.simple-050d .wrapper-46c5 li strong {
    color: var(--warning-color);
}

.accent_stale_f5d2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent_stale_f5d2 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.box_tiny_a625 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-2e4a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-2e4a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-white-6f5c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-white-6f5c .badge-down-9dd3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.summary_small_349d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.smooth_c235 {
    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);
}

.smooth_c235:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tertiary-hot-68c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-b3e9 {
    flex: 1;
}

.top-7285 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.title_fixed_13c5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.header_fresh_e9c7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.new-47f1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.logo-9405 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .logo-9405 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-3b89 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion-3b89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.purple_a87a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-6737 {
    color: var(--text-gray);
    font-size: 1rem;
}

.disabled_left_02c4 {
    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);
}

.tag-tall-27d5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tag-tall-27d5 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.message_prev_7c8c { 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; }
.footer-smooth-709c, .icon-5a3c { max-width:100%; height:auto; }

.list_action_57c4, .dark-879b, .bright-d1af { white-space:normal; }

.pattern-cool-a681,
.detail-a2a9,
.info-east-8aee,
.element-a196,
.dark-c4bc,
.component_cool_aaaf {
  flex-wrap:wrap;
}

[class*="grid"],
.logo-9405,
.pink_8a56,
.light-8846 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.sidebar_a7af img,
.detail-a2a9 img,
.header-d859 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.banner_lite_6bfe, .block_dirty_2127,
.button_old_d1b8, .carousel-fixed-ac92 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.grid-63f5 { width:100%; overflow-x:auto; }
.grid-63f5 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.card_fresh_1767 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .card_fresh_1767 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.hover_fdde {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.tabs_new_9729,
.progress-b916,
.down-61f0,
.notice-70a9,
.liquid_d966,
.logo-9405,
.pink_8a56,
.light-8846,
.new_8386,
.article-selected-ccb6,
.card_fresh_1767 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .tabs_new_9729,
  .progress-b916,
  .down-61f0,
  .notice-70a9,
  .liquid_d966,
  .logo-9405,
  .pink_8a56,
  .light-8846,
  .new_8386,
  .article-selected-ccb6,
  .card_fresh_1767 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.paragraph-steel-233f,
.secondary_advanced_bfe7,
.accordion-3b89,
.accordion_top_4c3e,
.backdrop_slow_ee47,
.banner-inner-a1e0,
.block-solid-541c,
.hover_fdde {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.label-inner-ebc2,
.layout_bottom_0923,
.article_up_37f4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.label-inner-ebc2 > *,
.layout_bottom_0923 > *,
.article_up_37f4 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 847b */
.phantom-card-l6 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.3;
}
