/* {$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;
}

.static_7a7d {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.thumbnail_f5ca {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .thumbnail_f5ca {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .thumbnail_f5ca {
        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 */
.hero_copper_365b {
    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);
}

.badge_glass_c7de {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .badge_glass_c7de {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .progress_yellow_4419 {
        grid-column: 1;
    }
    
    .shade_6637 {
        grid-column: 2;
    }
    
    .selected-bd28 {
        grid-column: 3;
    }
}

.progress_yellow_4419 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.progress_yellow_4419:hover img {
    transform: scale(1.05);
}

/* Navigation */
.component-1742 {
    display: none;
}

@media (min-width: 1024px) {
    .component-1742 {
        display: block;
    }
}

/* Grouped Navigation */
.aside_3d96 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.secondary_white_a270 {
    position: relative;
}

.feature_f3f9 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.secondary_white_a270 .stone_3014 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.stone_3014 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.first-f280 {
    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;
}

.first-f280:hover,
.first-f280.fn-active-c667 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.chip_f160 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .chip_f160 {
        display: flex;
    }
}

/* Mobile Register Button */
.shade_6637 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .shade_6637 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.text_large_6657 {
    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;
}

.text_large_6657::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 */
.selected-bd28 {
    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) {
    .selected-bd28 {
        display: none;
    }
}

.selected-bd28 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.selected-bd28.fn-active-c667 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.selected-bd28.fn-active-c667 span:nth-child(2) {
    opacity: 0;
}

.selected-bd28.fn-active-c667 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.short-29c7 {
    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;
}

.short-29c7.fn-active-c667 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.lite_0e71 {
    overflow: hidden;
}

.description_pressed_1b5b {
    list-style: none;
    padding: 0.75rem 0;
}

.modal_0d4f {
    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;
}

.modal_0d4f:hover,
.modal_0d4f.fn-active-c667 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.modal_0d4f.iron_7cec {
    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;
}

.modal_0d4f.iron_7cec::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 */
.basic_f00b {
    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;
}

.paper-6b7a {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.paper-6b7a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.icon_f371 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.icon_f371:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.chip-29fc {
    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;
}

.chip-29fc:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.container_prev_0974 {
    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;
}

.huge-7304 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.huge-7304:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.wide_8095 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.wide_8095:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.footer_pro_5600 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.footer_pro_5600: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);
}

.tag-9ada {
    font-size: 1em;
    font-weight: 700;
}

.new_84f5 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.column-black-2fc9 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.column-black-2fc9::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;
}

.popup-medium-537f {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .popup-medium-537f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.element-slow-b6ad {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.block_e5f0 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tabs_c904 {
    margin-bottom: 2rem;
}

.north-c08f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .north-c08f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-e2b3 {
    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);
}

.container_clean_7b47 {
    font-size: 1.5rem;
}

.main_silver_f511 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.breadcrumb-static-99bb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-d2f6 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.progress-d2f6:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.accent-east-1f46 {
    text-align: center;
    margin-bottom: 3rem;
}

.shadow-static-dc7d {
    margin-bottom: 1rem;
}

.backdrop-cool-00d6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gradient_orange_3974 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient_orange_3974 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .gradient_orange_3974.button_6e15 {
        direction: rtl;
    }
    
    .gradient_orange_3974.button_6e15 > * {
        direction: ltr;
    }
}

.top_ede6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.top_ede6:first-child {
    margin-top: 0;
}

.orange_9cec {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-light-ed0c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.link-light-ed0c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.sidebar_copper_6287 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_copper_6287 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left-6149 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_02f9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.motion_ec25 {
    list-style: none;
}

.motion_ec25 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.motion_ec25 li:last-child {
    border-bottom: none;
}

/* Games Features */
.copper-e477 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.upper-fd37 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gradient-457b {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid-silver-fa91 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.inner_a64a {
    margin: 2rem 0;
}

.banner_97fa {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.sort-cool-b314 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.shade_c241 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.shadow-gas-c42a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.logo_hot_abc1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_hot_abc1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-stale-9e25 {
    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);
}

.mask-stale-9e25:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.focus-4c98 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.highlight-0ddb {
    font-size: 1.5rem;
}

.full_3185 {
    color: var(--accent-color);
    margin: 0;
}

.smooth_d21a {
    list-style: none;
}

.smooth_d21a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.smooth_d21a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.breadcrumb-cf96 {
    margin: 2rem 0;
}

.gallery-f493 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pagination_2276 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pagination_2276 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_0ad8 {
    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);
}

.layout_stone_4d85 {
    font-size: 1.25rem;
}

.message_over_fda2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.shade_56f9,
.old_7faf {
    text-align: center;
    margin: 2rem 0;
}

.green-6016,
.tooltip_fresh_62c0 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.west_a5e6 {
    margin: 2rem 0;
    text-align: center;
}

.column_7bbb {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.column_7bbb::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;
}

.background-746a {
    position: relative;
    z-index: 1;
}

.card-plasma-f4ff {
    margin-bottom: 1rem;
}

.backdrop-fixed-e9cf {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-f17c {
    margin-bottom: 3rem;
}

.paragraph_cool_5f98 {
    margin-top: 3rem;
}

.pattern_gas_786a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pattern_gas_786a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_gas_786a .hovered-e2b3 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.yellow_2835 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.basic-c634 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.copper_f9f3 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.picture-cool-90fa {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .picture-cool-90fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-cool-90fa {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.media-full-c3b9 {
    margin-bottom: 1rem;
}

.secondary-33d8 img {
    margin-bottom: 1rem;
}

.accordion_lite_a5ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_4768 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.narrow_9899 {
    list-style: none;
}

.narrow_9899 li {
    margin-bottom: 0.5rem;
}

.narrow_9899 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.narrow_9899 a:hover {
    color: var(--accent-color);
}

.widget_48c0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight_e8f5 {
    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);
}

.highlight_e8f5:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.under-3bf1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.under-3bf1 p {
    margin-bottom: 0.25rem;
}

.banner-slow-5b55 {
    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) {
    .banner-slow-5b55 {
        flex-direction: row;
    }
}

.photo_under_2330 {
    text-align: center;
}

@media (min-width: 768px) {
    .photo_under_2330 {
        text-align: left;
    }
}

.photo_under_2330 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hot_ac6d {
    font-size: 0.75rem !important;
}

.action_6747 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.component-7a87 {
    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);
    }
}

.wrapper-large-18d3 {
    animation: fadeInUp 0.6s ease-out;
}

.summary_advanced_1e8d {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.background_small_7770 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_small_7770 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.copper-18a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .copper-18a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption_black_d344 {
    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);
}

.caption_black_d344 .gradient-457b {
    font-size: 1.25rem;
}

.caption_black_d344 .grid_liquid_2272 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.panel-ec47 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel-ec47 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short_a8db {
    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);
}

.short_a8db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-b237 {
    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);
}

.bottom_f77d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gold-38c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-cddb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_3a7a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice_3a7a .grid-silver-fa91 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice_3a7a .center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.short-d976 {
    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);
}

.stone-1fc1 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.stone-1fc1 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.stone-1fc1 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.media_inner_084e {
    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);
}

.box_pressed_bd6c {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main_3592 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main_3592 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.main_3592 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);
}

.main_3592 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.main_3592 input::placeholder {
    color: var(--text-muted);
}

.input_1d15 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.layout-blue-c879 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.layout-blue-c879 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.yellow-60e2 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.yellow-60e2:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pagination_2276 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_2276 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_0ad8 {
    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);
}

.footer_0ad8 .layout_stone_4d85 {
    font-size: 1.25rem;
}

.footer_0ad8 .message_over_fda2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.wood_92cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-2e76 {
    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);
}

.hovered-2e76 .gradient-457b {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-2e76 .grid-silver-fa91 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hovered-2e76 .center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-fast-08d1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_1e14 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.widget_1e14 .element_89d3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget_1e14 .up_595b {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_purple_4746 {
    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);
}

.button_2aa9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button_2aa9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-pink-5906 {
    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);
}

.media-pink-5906:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_6bde {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.right_199b {
    flex: 1;
}

.advanced_b2c8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.first_8bd8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-c643 {
    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);
}

.form-c643:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.progress-3f48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-3f48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_bottom_43d6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block_bottom_43d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-selected-5b82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-south-57a1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shade_8470 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.filter-hovered-e9f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.action-7029 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_warm_184f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_1e36 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort_1e36 .in_68a4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_1e36 .pagination_d599 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-75a2 {
    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);
}

.chip-22ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_white_c321 {
    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);
}

.description_white_c321 .gradient-457b {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_white_c321 .grid-silver-fa91 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description_white_c321 .center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.last_7165 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_7165 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_9c9c {
    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);
}

.panel_9c9c:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.solid-5448 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid-5448 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface-soft-36d6 {
    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);
}

.surface-soft-36d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-6113 {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-fc3f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sort-cool-b314 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.nav-paper-543a {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shade-3f50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-14e8 {
    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);
}

.frame-14e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-east-b683 {
    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);
}

.tertiary-eeb1 {
    flex: 1;
}

.feature-basic-61b8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.middle-4d8e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.element_8e7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-hovered-64be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_ed59 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_ed59 .element_89d3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification_ed59 .up_595b {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_7faf {
    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);
}

.pressed-f31f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-f31f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.main-18e9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-18e9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-orange-cd16 {
    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);
}

.photo-orange-cd16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.red_5049 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-8662 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.outline_green_ad3d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.preview_next_0915 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-51bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header_3c6a {
    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);
}

.wrapper_small_7d75 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-full-30d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading-center-5770 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-22ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_white_c321 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.description_white_c321 .grid-silver-fa91 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_white_c321 .center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze_7e84 {
    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);
}

.focus-bottom-8a46 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-bottom-8a46 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus-bottom-8a46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_bb51 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.row_bb51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-66b4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas_119d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bronze-0a3d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tall-a5a2 {
    padding: 1.5rem;
}

.current_4578 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.logo_368e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_368e 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;
}

.logo_368e li:last-child {
    border-bottom: none;
}

.logo_368e li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.column_over_f1f2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_over_f1f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-dff3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.red-dff3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-deaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold-18eb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header_iron_f536 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.content-stale-7e02 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main_in_4186 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_d428 {
    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);
}

.cool_b2ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge_71f3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.photo_be90 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_short_e688 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fluid-10fe {
    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);
}

.item_tiny_a42a {
    text-align: center;
}

.paper_d6f6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current_0c43 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard-a1c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-6af5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-6af5 .grid-silver-fa91 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption-6af5 .center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_0696 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status_0696 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status_0696 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black-001e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.black-001e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_soft_08e8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_0739 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.grid-silver-fa91 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.focus-lower-6d3e {
    padding: 1.5rem;
}

.center_7b0d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status-7e48 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-7e48 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;
}

.status-7e48 li:last-child {
    border-bottom: none;
}

.status-7e48 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.progress-wood-690d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.detail_c81a {
    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);
}

.detail_c81a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-7b37 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface-outer-ec4a {
    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);
}

.layout-b237 {
    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;
}

.bottom_f77d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gold-38c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-liquid-b550 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-bfe1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_light_fc1e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient_b76e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.picture-west-c29e {
    display: flex;
    gap: 1rem;
}

.picture-west-c29e .pagination_cool_fcb0 {
    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;
}

.stale_22e3 {
    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);
}

.black-db85 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter-3391 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-3391 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-3391 li:last-child {
    border-bottom: none;
}

.filter-3391 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.thick-a4ce {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thick-a4ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-a4ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-864b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.texture-864b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-lower-0c42 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_d662 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.in_68a4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.picture-d20e {
    font-size: 1rem;
}

.hover-ca19 {
    padding: 1.5rem;
}

.pagination_d599 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.popup_98f5 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.popup_98f5 .item_tiny_a42a {
    text-align: center;
}

.popup_98f5 .current_0c43 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.popup_98f5 .west-be3e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.lower_2441 {
    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);
}

.lower_2441:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.dropdown_stale_ba6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_stale_ba6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_f136 {
    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);
}

.background_f136:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-white-6bca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_dim_c37f {
    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);
}

.aside-2720 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_6763 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next-4647 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_411f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.box_fixed_c08d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-1e15 {
    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);
}

.container-wood-ece4 {
    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;
}

.container-wood-ece4.filter_complex_866c {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.container-wood-ece4.article-focused-5eba {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.container-wood-ece4.list-warm-7c9a {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.container-wood-ece4.row-motion-e4de {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.container-wood-ece4.module-tall-df0d {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.sidebar-5151 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.selected_29b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-0992 {
    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);
}

.prev_82f9 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner-fast-08d1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-fast-08d1 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;
}

.banner-fast-08d1 li:last-child {
    border-bottom: none;
}

.banner-fast-08d1 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.warm_d543 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .warm_d543 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm_d543 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left_481e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.left_481e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_481e.nav-hard-3162 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .left_481e.nav-hard-3162 {
        grid-column: span 3;
    }
}

.background_fast_43dc {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.left_481e.nav-hard-3162 .background_fast_43dc {
    background: rgba(6, 182, 212, 0.1);
}

.stone_3b42 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.last_1453 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.left_481e.nav-hard-3162 .last_1453 {
    color: var(--info-color);
}

.section_slow_3c32 {
    padding: 1.5rem;
    text-align: center;
}

.nav-stale-adcb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.left_481e.nav-hard-3162 .nav-stale-adcb {
    color: var(--info-color);
}

.fresh-6cd0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.content_narrow_b1af {
    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 */
.green-dbef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-dbef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-black-b9a2 {
    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);
}

.hero-black-b9a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown-5a5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-2e76 {
    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);
}

.layout_stone_4d85 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_9029 {
    flex: 1;
}

.gallery-f493 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cold_adbe {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_ff5e {
    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);
}

.module-hard-4721 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.surface_31bd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.component-7a87 {
    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);
}

.prev_3a1b {
  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);
}

.prev_3a1b .item_tiny_a42a {
    text-align: center;
}

.prev_3a1b .paper_d6f6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.prev_3a1b .current_0c43 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.soft-2348 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_f4ec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static-f09b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white-8eae {
    color: var(--text-gray);
    line-height: 1.6;
}

.over_9ac5 {
    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);
}

.cold_09dc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_bronze_4281 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-b556 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item-b556 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item-b556 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_7454 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.down_7454:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown_5818 {
    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);
}

.west_4cc7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.cool-0410 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.banner-down-277b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-down-277b.pattern-wide-05de {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.banner-down-277b.full_255d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.banner-down-277b.background-a701 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gallery-glass-2eca {
    padding: 1.5rem;
    text-align: center;
}

.white_c05b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.frame-tall-629d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.frame-tall-629d .old_a88a {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.column-aa2f {
    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);
}

.column-aa2f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dynamic-1e27 {
  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);
}

.small-8741 {
    text-align: center;
}

.small-8741 .paper_d6f6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.small-8741 .current_0c43 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.info-down-1033 { text-align: center; }
.accent-9343 { text-align: left; }
.component_small_7df0 { text-align: right; }

.hovered_9020 { margin-bottom: 0; }
.secondary_dirty_f5c7 { margin-bottom: 0.5rem; }
.mask_87cb { margin-bottom: 1rem; }
.module-north-f3f3 { margin-bottom: 1.5rem; }
.bright-c9b6 { margin-bottom: 2rem; }

.summary_5449 { margin-top: 0; }
.gas-f463 { margin-top: 0.5rem; }
.next_75fc { margin-top: 1rem; }
.medium_af4a { margin-top: 1.5rem; }
.description_left_6e3b { margin-top: 2rem; }

.fn-hidden-c667 { display: none; }
.fn-visible-c667 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .column-black-2fc9 {
        padding: 6rem 0 3rem;
    }
    
    .popup-medium-537f {
        text-align: center;
    }
    
    .gradient_orange_3974 {
        text-align: center;
    }
    
    .north-c08f {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hero_copper_365b,
    .short-29c7,
    .column_7bbb,
    .copper_f9f3 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .column-black-2fc9 {
        background: none;
    }
}

/* Providers Section */
.active-middle-a7e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-glass-a53e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-glass-a53e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border-glass-a53e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-e3ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-e3ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header_38f1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.header_e044 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.overlay-a1a0 {
    list-style: none;
    padding: 0;
}

.overlay-a1a0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.overlay-a1a0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.progress-slow-4b87 {
    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);
}

.progress-slow-4b87 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.mask-3cc3 {
    padding: var(--section-padding);
}

.pink-88f2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-88f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label_black_417a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.label_black_417a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.selected-0055 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.description-inner-fa92 {
    display: flex;
    flex-direction: column;
}

.focus_d379 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.old_57b2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hover_fast_3d05 {
    color: var(--accent-color);
}

.heading-east-ff1b {
    font-size: 1.25rem;
}

.article-e0d0 {
    margin-bottom: 1rem;
}

.article-e0d0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.surface_green_e034 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.preview_in_30ad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.item_tiny_a42a {
    text-align: center;
}

.paper_d6f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current_0c43 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.shadow_static_696b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_3a02 {
    margin: 2rem 0;
}

.white-0d26 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.white-0d26 .gradient-457b {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-c785 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slow_473d {
    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;
}

.slow_473d:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent-0143 {
    font-size: 2rem;
}

.component_plasma_cc34 {
    display: flex;
    flex-direction: column;
}

.highlight-4754 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.progress_warm_945f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.dim-390d {
    padding: var(--section-padding);
}

.motion-0589 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .motion-0589 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .motion-0589 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_iron_6bc7 {
    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);
}

.texture_iron_6bc7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.texture_iron_6bc7 .paper_d6f6 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.texture_iron_6bc7 .current_0c43 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.texture_iron_6bc7 .layout_last_bd7e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.left-64a6 {
    margin-top: 4rem;
}

.top_77aa {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.disabled_soft_1ce0 {
    overflow-x: auto;
}

.accent-huge-782b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accent-huge-782b thead {
    background: var(--accent-color);
}

.accent-huge-782b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.accent-huge-782b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-huge-782b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.accent-huge-782b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hero_ccb8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_d9a4 {
    max-width: 900px;
    margin: 0 auto;
}

.panel_under_8987 {
    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);
}

.panel_under_8987:hover {
    border-color: var(--accent-color);
}

.hard-326d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hard-326d h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hover-medium-da49 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.panel_under_8987.fn-active-c667 .hover-medium-da49 {
    transform: rotate(45deg);
}

.small-6722 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.panel_under_8987.fn-active-c667 .small-6722 {
    max-height: 1000px;
}

.small-6722 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.easy-e21f {
    padding: var(--section-padding);
}

.stone-1fc1 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.icon-809d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_5bfe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_5bfe {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip_dim_6161 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-01ae {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rough_36ea {
    font-size: 2rem;
}

.title-c1ff {
    color: var(--text-white);
    margin: 0;
}

.description_red_e303 {
    list-style: none;
    padding: 0;
}

.description_red_e303 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_red_e303 li:last-child {
    border-bottom: none;
}

.search-9fc9 {
    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);
}

.search-9fc9 p {
    color: var(--success-color);
    margin: 0;
}

.gold_7c04 {
    margin-top: 3rem;
}

.black-db85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.border_left_a99d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .border_left_a99d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.huge-5c17 {
    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);
}

.black_a91d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.huge-5c17 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.mask_middle_bc5b {
    padding: var(--section-padding);
}

.lower-3063 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower-3063 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_fast_5bab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout_fast_5bab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.column_light_ddf0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chip_inner_9681 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.active_c8e3 {
    flex: 1;
}

.link_e43c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.breadcrumb-basic-9b6b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.badge_3ea6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-32cb {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dim-32cb:last-child {
    border-bottom: none;
}

/* Comparison Section */
.white_0bd6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.purple_4914 {
    padding: var(--section-padding);
}

.tooltip-e1c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.tabs-01ae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-01ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-ff22 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-static-94e1, .search_hovered_0ed6, .picture_d17b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.picture_d17b {
    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 */
.footer_stale_c6dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-b876 {
    margin: 2rem 0;
}

.secondary_9c62 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_pink_960d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outline-45b4 {
    list-style: none;
    padding: 0;
}

.outline-45b4 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;
}

.outline-45b4 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.outline-45b4 li:last-child {
    border-bottom: none;
}

.hot_5715 {
    text-align: center;
    margin-top: 2rem;
}

.input-b6d8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.module-cool-0d76 {
    padding: var(--section-padding);
}

.shadow-black-e557 {
    margin: 2rem 0;
}

.status-35e4 {
    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) {
    .status-35e4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.status-35e4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav-c4a6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.bright-d9f5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.gradient_down_011e {
    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;
}

.modal-iron-8e47 {
    flex: 1;
}

.border-hard-d7bb {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.motion-69a4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.banner-east-0b9e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.search-west-1d64 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .search-west-1d64 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.wide-63cb {
    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);
}

.wide-63cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wide-63cb .paper_d6f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wide-63cb .current_0c43 {
    color: var(--text-gray);
    font-size: 1rem;
}

.thumbnail_3c96 {
    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);
}

.shade-a929 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.shade-a929 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.first_40f4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .first_40f4 {
        grid-template-columns: 1fr 1fr;
    }
}

.texture_basic_74b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-out-f41c {
    margin-bottom: 1.5rem;
}

.disabled-out-f41c label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.disabled-out-f41c input,
.disabled-out-f41c 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;
}

.disabled-out-f41c input:focus,
.disabled-out-f41c select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.link_f37e {
    width: 100%;
    margin-top: 1rem;
}

.grid_upper_0959 {
    display: flex;
    align-items: center;
}

.list-51f7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.chip_top_daaf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.middle-9838 {
    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;
}

.detail-3b44 {
    color: var(--text-gray);
}

.picture_cold_81c1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.popup_f84c {
    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);
}

.popup_f84c p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.shade_next_c930 {
    margin-top: 3rem;
}

.footer_7714 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.menu_1dff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-narrow-f800 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.widget_a73d {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_a73d:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.down_45a9 {
    padding: var(--section-padding);
}

.text-motion-1fc9 {
    margin: 2rem 0;
}

.status-3ee4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gradient_motion_1446 {
    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;
}

.gradient_motion_1446:hover, .gradient_motion_1446.fn-active-c667 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.soft-2066 {
    display: none;
}

.soft-2066.fn-active-c667 {
    display: block;
}

.container-94ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold_658e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.in-28e3 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.in-28e3 ul {
    list-style: none;
    padding: 0;
}

.in-28e3 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.in-28e3 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.column-eb4c {
    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 */
.focus_5e97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_5f4e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_c78b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stone_8523 {
    color: var(--accent-color);
    margin: 0;
}

.label_9d81 {
    display: flex;
    gap: 1.5rem;
}

.badge-hard-445f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.button_gold_b176 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.list-3722 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.list-3722.pro_df9d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.list-3722.box-0651 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.list-3722.column-3a9a {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.yellow_a82a {
    margin-top: 2rem;
}

.tertiary_428c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pattern-d3d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pattern-d3d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next-93d0 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.white_bbff {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.photo_cdcb {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hard_1a98 {
    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 */
.smooth-1760 {
    padding: var(--section-padding);
}

.module_dark_722e {
    margin: 2rem 0;
}

.pattern-full-9be6 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.media_ad16 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.form_hovered_ee8e {
    list-style: none;
    padding: 0;
}

.form_hovered_ee8e 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;
}

.form_hovered_ee8e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.form_hovered_ee8e li:last-child {
    border-bottom: none;
}

.huge-b916 {
    margin: 2rem 0;
}

.in_1e81 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.layout-0cf7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-0cf7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient_8dae {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_in_4e9f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.red_0998 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.action-ed5f {
    margin-top: 2rem;
}

.advanced_b2c8 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.secondary-lower-a9b3 {
    list-style: none;
    padding: 0;
}

.upper_99e7 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.upper_99e7 a {
    color: var(--accent-color);
    text-decoration: none;
}

.upper_99e7 a:hover {
    text-decoration: underline;
}

.outer-1892 {
    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 */
.purple_b7db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_915f {
    margin: 2rem 0;
}

.gallery_cool_4e86 {
    margin-bottom: 3rem;
}

.gallery_cool_4e86 .tag_pink_960d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mask_15fa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.list-cac4 {
    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);
}

.list-cac4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tiny-297d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tiny-297d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-5c63 {
    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 */
.block_tiny_ff50 {
    padding: var(--section-padding);
}

.highlight_gas_0eef {
    margin: 2rem 0;
}

.component-75a9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.progress-88ec {
    overflow-x: auto;
    margin: 2rem 0;
}

.pagination-first-c5d2 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.filter_purple_ed7b {
    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;
}

.chip_first_27bc {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.message-d110 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .message-d110 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed_cebd {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_cebd .gradient-457b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pressed_cebd .grid-silver-fa91 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wrapper-915e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.solid-a0ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red_8d67 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_8d67 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-98df {
    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;
}

.focus-98df:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.article-9405 {
    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);
}

.popup_under_f4cb {
    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;
}

.down_bad5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient_bd21 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.focused_9c4c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.status_pro_c4b3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.backdrop_79f8 {
    color: var(--text-white);
    font-weight: 600;
}

.down-b809 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current_58bc {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.current_58bc .pagination_cool_fcb0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.disabled-green-f1ad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-green-f1ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_ea82 {
    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);
}

.full_ea82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.full_ea82 .paper_d6f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.full_ea82 .current_0c43 {
    color: var(--text-gray);
    font-size: 1rem;
}

.text-south-12d6 {
    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);
}

.pressed-12f5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.pressed-12f5 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.badge-51bd {
    margin: 2rem 0;
}

.header_3c6a {
    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);
}

.header_3c6a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wrapper_small_7d75 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon_bright_43ca {
    flex: 1;
}

.caption-full-30d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading-center-5770 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.chip-22ed {
    margin: 2rem 0;
}

.description_white_c321 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description_white_c321 .grid-silver-fa91 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.description_white_c321 .center_7b0d {
    color: var(--text-gray);
    margin: 0;
}

.bronze_7e84 {
    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);
}

.bronze_7e84 .green-6016 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.wrapper-915e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.feature-east-b683 {
    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;
}

.tertiary-eeb1 {
    flex: 1;
}

.middle-4d8e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.element_8e7e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.layout-b237 {
    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;
}

.gradient_dynamic_bdaa {
    flex: 1;
}

.bottom_f77d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gold-38c8 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.nav_light_fc1e {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.gradient_b76e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.picture-west-c29e {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.picture-west-c29e .pagination_cool_fcb0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.stale_22e3 {
    margin-top: 2rem;
}

.stale_22e3 .black-db85 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.purple_de9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-10fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fluid-10fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid-10fe .item_tiny_a42a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-a1c4 {
    margin: 2rem 0;
}

.caption-6af5 {
    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 */
.feature-9c92 {
    padding: var(--section-padding);
}

.focus-lower-6d3e {
    margin-top: 1rem;
}

.status-7e48 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.status-7e48 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.status-7e48 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.notification_0887 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-889a {
    margin: 2rem 0;
}

.title-huge-dc3f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.filter-brown-e7db {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.primary-brown-ecf9 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.accordion_next_3eea {
    margin: 2rem 0;
}

.huge_2ecb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.huge_2ecb .tag_pink_960d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_full_6c90 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion_full_6c90 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-c947 {
    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);
}

.disabled_fixed_2d41 {
    color: var(--text-white);
    font-weight: 600;
}

.image-cool-1bdf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hard_9926 {
    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);
}

.hard_9926 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.accent-92b1 {
    padding: var(--section-padding);
}

.up-a745 {
    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;
}

.up-a745:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tall-3ca3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tall-3ca3 .black_a91d {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-3ca3 .title_medium_3e3c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hard_0679 {
    flex: 1;
}

.column-lite-201a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.alert-3aef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-3aef li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.alert-3aef li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.light_2402 {
    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);
}

.light_2402 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.light_2402 strong {
    color: var(--warning-color);
}

/* Slots Section */
.glass-894a {
    padding: var(--section-padding);
}

.action-7029 {
    margin: 2rem 0;
}

/* Table Games Section */
.footer_bd28 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_warm_184f {
    margin: 2rem 0;
}

.sort_1e36 {
    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);
}

.sort_1e36:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sort_1e36 .in_68a4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_1e36 .pagination_d599 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.under-75a2 {
    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);
}

.under-75a2 .green-6016 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.feature_e062 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-fixed-8a16 {
    margin: 2rem 0;
}

.tertiary_1774 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_lite_a307 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-mini-1592 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thick-730d {
    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);
}

.thick-730d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.thick-730d.fn-active-c667 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_soft_f633 {
    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);
}

.left_6210 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.left_6210 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.fresh_4460 {
    padding: var(--section-padding);
}

.active-597d {
    margin: 2rem 0;
}

.dropdown_north_1bba {
    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);
}

.dropdown_north_1bba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .dropdown_north_1bba {
        flex-direction: column;
        align-items: flex-start;
    }
}

.photo-over-2a96 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.wide-fb1f {
    flex: 1;
}

.title_980c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.inner-7538 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.feature_west_5b1e {
    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;
}

.center-4fc9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.carousel_full_c348 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.video-0c31 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_purple_e0b7 {
    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;
}

.tabs_purple_e0b7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.item-135c {
    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);
}

.tag_small_70e2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tag_small_70e2 strong {
    color: var(--accent-color);
}

/* New Games Section */
.background-gold-8e55 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_cd2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .secondary_cd2d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_cd2d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small_5263 {
    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;
}

.small_5263:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hover-basic-cc4e {
    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;
}

.logo-a8df {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.notice-right-2186 {
    font-size: 2rem;
}

.up-a328 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.fluid_5360 {
    flex: 1;
}

.modal_bf0f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pink_b892 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.text_down_a341 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outer_aef9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.new_d8b4 {
    padding: 0.375rem 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
}

.frame-3333 {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-normal);
    display: block;
}

.frame-3333:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.heading-hot-8c38 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark_6916 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface-top-23a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .surface-top-23a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_full_284a {
    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);
}

.summary_new_626f {
    color: var(--text-white);
    font-weight: 600;
}

.accordion_78df {
    color: var(--accent-color);
    font-weight: 600;
}

.lite-6098 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.lite-6098 strong {
    color: var(--accent-color);
}

/* Security Section */
.photo-75f0 {
    padding: var(--section-padding);
}

/* Benefits Section */
.lower_c0f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.aside_last_73c0 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.banner_6c70 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-c3b6 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.container_2109 {
    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) {
    .container_2109 {
        flex-direction: column;
        gap: 1rem;
    }
}

.container_2109:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container_2109 .layout-b237 {
    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;
}

.container_2109 .gradient_dynamic_bdaa {
    flex: 1;
}

.container_2109 .bottom_f77d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.container_2109 .gold-38c8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.preview_blue_932c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_blue_932c .gallery-f493 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_blue_932c .wood_92cc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview_blue_932c .wood_92cc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.preview_blue_932c .wood_92cc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.fluid_6e68 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.heading-focused-3a74 {
    padding: var(--section-padding);
}

.search-blue-ab1a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .search-blue-ab1a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-new-6a41 {
    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);
}

.card-new-6a41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.card-new-6a41 .blue_fd04 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-new-6a41 .frame_iron_bae0 {
    flex: 1;
}

.card-new-6a41 .element_89d3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-new-6a41 .under_6ab9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.icon_top_c7ff {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_top_c7ff .huge-464a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon_top_c7ff .complex_d58e {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.icon_top_c7ff .complex_d58e 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);
}

.icon_top_c7ff .complex_d58e li:last-child {
    border-bottom: none;
}

.icon_top_c7ff .complex_d58e 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;
}

.icon_top_c7ff .complex_d58e li strong {
    color: var(--text-white);
}

.red-2c4b {
    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);
}

.red-2c4b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.red-2c4b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.slider-0931 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_soft_affb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .background_soft_affb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-dc1d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer-dc1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label_lower_3360 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-4d0c {
    font-size: 2rem;
}

.tooltip-f727 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.menu-db87 {
    flex: 1;
}

.hard-93f0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-93f0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hard-93f0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pattern-489c {
    margin-top: 3rem;
}

.pattern-full-9be6 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.media_ad16 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form_hovered_ee8e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form_hovered_ee8e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.form_hovered_ee8e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.form_hovered_ee8e li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.summary_selected_57c7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-narrow-6de8 {
    margin: 2rem 0;
}

.status-basic-af50 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.status-basic-af50 .tag_pink_960d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-2da5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-2da5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_east_5e5e {
    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);
}

.grid_east_5e5e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.surface-center-158a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery_41ee {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.over-f6d5 {
    padding: var(--section-padding);
}

.banner-36be {
    margin: 2rem 0;
}

.new_e920 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .new_e920 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new_e920 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_0cea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.down_0cea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_wood_99d5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.primary_short_566f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.shade_19e4 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.shade_19e4.section-967c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.next_d27a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.hero-purple-da12 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.button-in-f0d5 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-f990 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container-inner-979e {
    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);
}

.container-inner-979e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container-inner-979e strong {
    color: var(--accent-color);
}

/* Update Log Section */
.slow-b16f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-3584 {
    margin: 2rem 0;
}

.description_af46 {
    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) {
    .description_af46 {
        flex-direction: column;
        gap: 1rem;
    }
}

.description_af46:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description_af46::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);
}

.main-hard-e76b {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.chip-pink-bfb1 {
    flex: 1;
}

.carousel_eab0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.filter-liquid-3b81 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-liquid-3b81 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-2c79 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-2e84 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_dirty_0f83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .message_dirty_0f83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-6197 {
    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);
}

.badge-ad4d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop-purple-7da8 {
    flex: 1;
}

.description_center_4ac9 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.label-6d39 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.grid_68f7 {
    margin-top: 2rem;
    text-align: center;
}

.avatar_rough_62df {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar_rough_62df strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.dropdown_stale_ba6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_stale_ba6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_f136 {
    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);
}

.background_f136:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_f136 .mini-deaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_f136 .gold-18eb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.background_f136 .header_iron_f536 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.background_f136 .content-stale-7e02 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.advanced_db7e {
    padding: var(--section-padding);
}

.container_dim_c37f .accordion_dirty_626d {
    flex: 1;
}

/* Promo Calendar Section */
.fixed-7eb7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-24c6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-24c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_short_871e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-2f95 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.advanced-02ab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice_stone_a597 {
    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);
}

.dim-a29a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.component_stone_5f4e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.widget-83c2 {
    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);
}

.widget-83c2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-83c2 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.banner_f738 {
    padding: var(--section-padding);
}

.footer_south_2972 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_south_2972 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite-4910 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-416c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh_fa0e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fresh_fa0e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-copper-a9ac {
    margin-top: 3rem;
}

.frame-copper-a9ac .pattern-full-9be6 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.frame-copper-a9ac .media_ad16 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-copper-a9ac .form_hovered_ee8e {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.frame-copper-a9ac .form_hovered_ee8e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.frame-copper-a9ac .form_hovered_ee8e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.frame-copper-a9ac .form_hovered_ee8e li strong {
    color: var(--warning-color);
}

.static_33cb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.static_33cb strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.disabled_basic_6421 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_bbfb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_bbfb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_902f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_902f .tag_pink_960d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.accent_bronze_bb81 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status_short_19c6 {
    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);
}

.status_short_19c6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gas-1303 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-dim-09d6 {
    flex: 1;
}

.caption_a7aa {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.upper_3984 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notice_left_8070 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.accent-b2e9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.slider-left-9777 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .slider-left-9777 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_997b {
    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);
}

.input_997b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notice_full_2298 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture_in_74d3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.shade-a929 {
    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);
}

.pagination_e33c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.pagination_e33c strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.thumbnail_f5ca { 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; }
.progress-d2f6, .link-light-ed0c { max-width:100%; height:auto; }

.basic_f00b, .chip-29fc, .container_prev_0974 { white-space:normal; }

.popup-medium-537f,
.gradient_orange_3974,
.green-dbef,
.dropdown_stale_ba6e,
.chip-22ed,
.item-b556 {
  flex-wrap:wrap;
}

[class*="grid"],
.slider-left-9777,
.new_e920,
.pattern_gas_786a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.column-black-2fc9 img,
.gradient_orange_3974 img,
.breadcrumb-static-99bb img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.element-slow-b6ad, .block_e5f0,
.shadow-static-dc7d, .backdrop-cool-00d6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.disabled_soft_1ce0 { width:100%; overflow-x:auto; }
.disabled_soft_1ce0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.border-glass-a53e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .border-glass-a53e {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.link-e3ce {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.motion-0589,
.east_e6de,
.paragraph_focused_d909,
.message_next_d45a,
.search-west-1d64,
.slider-left-9777,
.new_e920,
.pattern_gas_786a,
.dynamic-1e27,
.active-597d,
.border-glass-a53e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .motion-0589,
  .east_e6de,
  .paragraph_focused_d909,
  .message_next_d45a,
  .search-west-1d64,
  .slider-left-9777,
  .new_e920,
  .pattern_gas_786a,
  .dynamic-1e27,
  .active-597d,
  .border-glass-a53e {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.texture_iron_6bc7,
.wide-63cb,
.input_997b,
.hovered-e2b3,
.down_0cea,
.small-8741,
.dropdown_north_1bba,
.link-e3ce {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.modal-d9c5,
.steel-bc58,
.widget-old-d60f {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal-d9c5 > *,
.steel-bc58 > *,
.widget-old-d60f > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 646c */
.promo-block-u8 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
