/* {$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;
}

.active_71dd {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.tabs-red-80de {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .tabs-red-80de {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tabs-red-80de {
        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 */
.light-2018 {
    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);
}

.prev-7ceb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .prev-7ceb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .box-solid-e8e7 {
        grid-column: 1;
    }
    
    .black-be67 {
        grid-column: 2;
    }
    
    .dark_9b17 {
        grid-column: 3;
    }
}

.box-solid-e8e7 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.box-solid-e8e7:hover img {
    transform: scale(1.05);
}

/* Navigation */
.mini-b2c5 {
    display: none;
}

@media (min-width: 1024px) {
    .mini-b2c5 {
        display: block;
    }
}

/* Grouped Navigation */
.feature-c158 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.clean_7ce2 {
    position: relative;
}

.pattern-south-56a6 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.clean_7ce2 .main-b47a {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.main-b47a {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.header-old-d33c {
    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;
}

.header-old-d33c:hover,
.header-old-d33c.fn-active-273a {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.mask_dark_07d7 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .mask_dark_07d7 {
        display: flex;
    }
}

/* Mobile Register Button */
.black-be67 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .black-be67 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.heading-9a81 {
    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;
}

.heading-9a81::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 */
.dark_9b17 {
    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) {
    .dark_9b17 {
        display: none;
    }
}

.dark_9b17 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.dark_9b17.fn-active-273a span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dark_9b17.fn-active-273a span:nth-child(2) {
    opacity: 0;
}

.dark_9b17.fn-active-273a span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cool_1c77 {
    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;
}

.cool_1c77.fn-active-273a {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.soft-c149 {
    overflow: hidden;
}

.label_e2f9 {
    list-style: none;
    padding: 0.75rem 0;
}

.media-0c10 {
    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;
}

.media-0c10:hover,
.media-0c10.fn-active-273a {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.media-0c10.column_next_a70e {
    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;
}

.media-0c10.column_next_a70e::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 */
.notification-9fc5 {
    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;
}

.header_huge_3ef2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.header_huge_3ef2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.middle_1052 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.middle_1052:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.outline-174a {
    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;
}

.outline-174a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.media_72b9 {
    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;
}

.iron-16d0 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.iron-16d0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.avatar-green-612f {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.avatar-green-612f:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.sort_motion_c469 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.sort_motion_c469: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);
}

.primary_steel_4bd7 {
    font-size: 1em;
    font-weight: 700;
}

.thumbnail_dark_0bb8 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.widget-e21b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.widget-e21b::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;
}

.active_inner_366d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .active_inner_366d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.fresh_b4b6 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.fresh-6252 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.fluid-f5fd {
    margin-bottom: 2rem;
}

.picture_pressed_140e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .picture_pressed_140e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_copper_d770 {
    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);
}

.button-thick-dcfa {
    font-size: 1.5rem;
}

.element_9b5e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.motion_170c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-prev-5dc9 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.badge-prev-5dc9:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.chip-7b56 {
    text-align: center;
    margin-bottom: 3rem;
}

.text-tall-f2b8 {
    margin-bottom: 1rem;
}

.badge_hot_8a15 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.wrapper_pressed_9849 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .wrapper_pressed_9849 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .wrapper_pressed_9849.texture_b09f {
        direction: rtl;
    }
    
    .wrapper_pressed_9849.texture_b09f > * {
        direction: ltr;
    }
}

.item-7a38 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.item-7a38:first-child {
    margin-top: 0;
}

.photo_tiny_dcdb {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.chip-south-f3a2 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.chip-south-f3a2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tag-3098 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-3098 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-497e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_green_aa90 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tertiary_large_ec29 {
    list-style: none;
}

.tertiary_large_ec29 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary_large_ec29 li:last-child {
    border-bottom: none;
}

/* Games Features */
.element-65d9 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.nav-4147 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.layout_22e2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.large-cd96 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.container-765b {
    margin: 2rem 0;
}

.rough_9536 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.bottom_c4d0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.disabled-9233 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.surface_dim_8b73 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.fluid_055e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid_055e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-63a3 {
    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);
}

.huge-63a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.yellow-98ae {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hard_b60b {
    font-size: 1.5rem;
}

.link_middle_0fa9 {
    color: var(--accent-color);
    margin: 0;
}

.overlay-5feb {
    list-style: none;
}

.overlay-5feb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.overlay-5feb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.overlay_active_f33a {
    margin: 2rem 0;
}

.content_5365 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.border-5d7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .border-5d7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-pink-a79b {
    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);
}

.fixed_4ebe {
    font-size: 1.25rem;
}

.panel-f3c3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.focus_6b49,
.breadcrumb_gold_204e {
    text-align: center;
    margin: 2rem 0;
}

.detail_purple_8a86,
.item_focused_cff6 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.panel-hot-e20c {
    margin: 2rem 0;
    text-align: center;
}

.orange_9bd5 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.orange_9bd5::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;
}

.highlight-lower-2279 {
    position: relative;
    z-index: 1;
}

.pagination_178c {
    margin-bottom: 1rem;
}

.notice_white_7161 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upper-d990 {
    margin-bottom: 3rem;
}

.sort-smooth-1829 {
    margin-top: 3rem;
}

.shadow_ddcb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .shadow_ddcb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_ddcb .icon_copper_d770 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.black-f01e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-a237 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.title-inner-c01e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.over_d54a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .over_d54a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over_d54a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.copper_0264 {
    margin-bottom: 1rem;
}

.row_1065 img {
    margin-bottom: 1rem;
}

.menu_0d28 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_b136 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.row-focused-0865 {
    list-style: none;
}

.row-focused-0865 li {
    margin-bottom: 0.5rem;
}

.row-focused-0865 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.row-focused-0865 a:hover {
    color: var(--accent-color);
}

.accordion-7640 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-548b {
    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);
}

.slider-548b:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.label_hovered_52c0 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.label_hovered_52c0 p {
    margin-bottom: 0.25rem;
}

.soft-fa14 {
    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) {
    .soft-fa14 {
        flex-direction: row;
    }
}

.widget-warm-0c20 {
    text-align: center;
}

@media (min-width: 768px) {
    .widget-warm-0c20 {
        text-align: left;
    }
}

.widget-warm-0c20 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty-c8d8 {
    font-size: 0.75rem !important;
}

.gallery-cold-6e4c {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.secondary_9b1c {
    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);
    }
}

.shadow_dirty_551c {
    animation: fadeInUp 0.6s ease-out;
}

.shade-8ea5 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.lower_f8aa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_f8aa {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.text_pink_bb33 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_pink_bb33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-cdc9 {
    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);
}

.notification-cdc9 .layout_22e2 {
    font-size: 1.25rem;
}

.notification-cdc9 .modal-light-d2fc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.detail-east-7c88 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-east-7c88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool_cc19 {
    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);
}

.cool_cc19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action-f097 {
    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);
}

.silver-c395 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_rough_34ab {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_tall_28ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_west_65de {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border_west_65de .large-cd96 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_west_65de .menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-motion-ac3b {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_8916 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.east_8916 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.east_8916 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.pagination_old_d317 {
    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);
}

.fast-6405 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.active-3d0c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.active-3d0c label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.active-3d0c 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);
}

.active-3d0c input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.active-3d0c input::placeholder {
    color: var(--text-muted);
}

.feature-aed4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.picture-266e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.picture-266e input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.article_0a39 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.article_0a39:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.border-5d7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-5d7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-pink-a79b {
    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);
}

.progress-pink-a79b .fixed_4ebe {
    font-size: 1.25rem;
}

.progress-pink-a79b .panel-f3c3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.box_last_960b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_focused_5450 {
    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);
}

.hidden_focused_5450 .layout_22e2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_focused_5450 .large-cd96 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden_focused_5450 .menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_e1d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-ae27 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination-ae27 .detail_a06b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination-ae27 .description-04b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-steel-8723 {
    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);
}

.hard_9f20 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard_9f20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_stone_2790 {
    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);
}

.element_stone_2790:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip_0b87 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dim-be96 {
    flex: 1;
}

.banner-orange-b132 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.label_86fa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_soft_c6d0 {
    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);
}

.background_soft_c6d0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.footer_copper_68ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_copper_68ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_fluid_33ae {
    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);
}

.badge_fluid_33ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_9ca8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_194c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input-stone-a1e8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.card-b443 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.down_0cfa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-3e9a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out-b69a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.out-b69a .stone-8cee {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out-b69a .border_mini_c84a {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_fresh_0028 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-fdc3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_3599 {
    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);
}

.summary_3599 .layout_22e2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_3599 .large-cd96 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_3599 .menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-5482 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-5482 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_c05a {
    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);
}

.heading_c05a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.thumbnail_cool_b5d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_cool_b5d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_cold_f386 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination_cold_f386:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-down-5840 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_0d7f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bottom_c4d0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.next_4c83 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.upper-2fc2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.clean-fcfb {
    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);
}

.clean-fcfb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_dim_02ee {
    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);
}

.wrapper_c806 {
    flex: 1;
}

.panel-dc03 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.easy_df61 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.notification-2ac9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-7bca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_large_2633 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_large_2633 .detail_a06b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video_large_2633 .description-04b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_gold_204e {
    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);
}

.red-6173 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red-6173 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.tiny-be89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-be89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale_6c60 {
    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);
}

.stale_6c60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_635c {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-5032 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.title_c875 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block-advanced-6e53 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main-north-cd91 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main_stone_bc31 {
    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);
}

.rough-a1b2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-9155 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list-96e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-fdc3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_3599 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.summary_3599 .large-cd96 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary_3599 .menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_47ba {
    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);
}

.active_10b5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_10b5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_10b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_hard_7b98 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.overlay_hard_7b98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_8c2f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_6c16 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tiny_923d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.avatar-red-4507 {
    padding: 1.5rem;
}

.photo-south-9274 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-3b95 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-3b95 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;
}

.form-3b95 li:last-child {
    border-bottom: none;
}

.form-3b95 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.plasma_4ff3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_4ff3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_out_6964 {
    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_out_6964:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.selected_1fda {
    font-size: 2rem;
    flex-shrink: 0;
}

.down_285b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search_solid_e683 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.badge_solid_026c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.heading-5a79 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.black-bf54 {
    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);
}

.card-4258 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-6500 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-bb12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_75de {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.filter_solid_7572 {
    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);
}

.modal-d6f3 {
    text-align: center;
}

.pro-9ade {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail_614a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.next_cf65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-dark-2dee {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-dark-2dee .large-cd96 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary-dark-2dee .menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_8ee8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border_8ee8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_8ee8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-6342 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.search-6342:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dim-9430 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph_23a3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.large-cd96 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.summary_9fd8 {
    padding: 1.5rem;
}

.menu-9423 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.current-34e5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-34e5 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;
}

.current-34e5 li:last-child {
    border-bottom: none;
}

.current-34e5 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.progress-ffeb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.panel_687d {
    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);
}

.panel_687d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_8908 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north_74a4 {
    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);
}

.action-f097 {
    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;
}

.silver-c395 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search_rough_34ab {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_a265 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_motion_f002 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.old-656c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.up-84b0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aside_fast_3dfc {
    display: flex;
    gap: 1rem;
}

.aside_fast_3dfc .pattern_red_aa94 {
    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;
}

.module_smooth_6e19 {
    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);
}

.yellow_c030 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dirty_74d1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty_74d1 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;
}

.dirty_74d1 li:last-child {
    border-bottom: none;
}

.dirty_74d1 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.button_warm_b6db {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button_warm_b6db {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button_warm_b6db {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-a3ae {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.module-a3ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-65fb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.aside_14dc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.stone-8cee {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.section-right-c28b {
    font-size: 1rem;
}

.hovered-cccf {
    padding: 1.5rem;
}

.border_mini_c84a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.summary-7d66 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.summary-7d66 .modal-d6f3 {
    text-align: center;
}

.summary-7d66 .detail_614a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.summary-7d66 .tag-6458 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar-ad57 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.sidebar-ad57:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.image_fea4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_fea4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_8fa5 {
    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_8fa5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-action-e1e4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow_6581 {
    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);
}

.up-56f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.center_d46f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination_tiny_dba8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-fbfb {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shade_5a96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion_42ab {
    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);
}

.advanced_01bc {
    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;
}

.advanced_01bc.sidebar_fdc3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.advanced_01bc.steel_667d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.advanced_01bc.purple-a1c1 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.advanced_01bc.north-4b39 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.advanced_01bc.bottom-3efc {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.mini-ace0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal-plasma-e70b {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_9a0f {
    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);
}

.panel_8dcc {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.slider_e1d9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider_e1d9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.slider_e1d9 li:last-child {
    border-bottom: none;
}

.slider_e1d9 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.focused_ffbd {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focused_ffbd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focused_ffbd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-bf4b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button-bf4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-bf4b.logo-next-267e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .button-bf4b.logo-next-267e {
        grid-column: span 3;
    }
}

.highlight_7a52 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.button-bf4b.logo-next-267e .highlight_7a52 {
    background: rgba(6, 182, 212, 0.1);
}

.focus_light_bff1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.wood_cd5e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.button-bf4b.logo-next-267e .wood_cd5e {
    color: var(--info-color);
}

.item_full_361c {
    padding: 1.5rem;
    text-align: center;
}

.next_d254 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.button-bf4b.logo-next-267e .next_d254 {
    color: var(--info-color);
}

.dim_931a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.icon_fc46 {
    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 */
.south_ced7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_ced7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_hard_357d {
    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);
}

.button_hard_357d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-7e25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_focused_5450 {
    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);
}

.fixed_4ebe {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_5018 {
    flex: 1;
}

.content_5365 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas_1e2d {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_4b50 {
    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);
}

.static_f287 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list-0e4e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.secondary_9b1c {
    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);
}

.feature-gold-48b5 {
  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);
}

.feature-gold-48b5 .modal-d6f3 {
    text-align: center;
}

.feature-gold-48b5 .pro-9ade {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.feature-gold-48b5 .detail_614a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.alert-copper-bb41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-ddfb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-41a9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline-831f {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface_plasma_f2bf {
    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);
}

.steel-9b77 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out_e29c {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-c740 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .down-c740 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .down-c740 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-bdef {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.modal-bdef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper-72f9 {
    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);
}

.wrapper-selected-7c23 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.black-1e30 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.steel_fd53 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steel_fd53.accordion-93eb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.steel_fd53.avatar_thick_2f59 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.steel_fd53.row-5c04 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.texture_d438 {
    padding: 1.5rem;
    text-align: center;
}

.thumbnail_small_648c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.next_d2eb {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.next_d2eb .main_pink_e144 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.accent-north-fb8e {
    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);
}

.accent-north-fb8e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wrapper-green-a846 {
  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);
}

.complex_25cd {
    text-align: center;
}

.complex_25cd .pro-9ade {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.complex_25cd .detail_614a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.hidden_full_26c9 { text-align: center; }
.column-a362 { text-align: left; }
.prev-3e48 { text-align: right; }

.slow_32ad { margin-bottom: 0; }
.fast_acde { margin-bottom: 0.5rem; }
.message-pink-35ba { margin-bottom: 1rem; }
.container_9525 { margin-bottom: 1.5rem; }
.outer-a800 { margin-bottom: 2rem; }

.bottom-1bba { margin-top: 0; }
.shadow_3da1 { margin-top: 0.5rem; }
.menu-f964 { margin-top: 1rem; }
.action_f6c8 { margin-top: 1.5rem; }
.gas_4b3c { margin-top: 2rem; }

.fn-hidden-273a { display: none; }
.fn-visible-273a { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .widget-e21b {
        padding: 6rem 0 3rem;
    }
    
    .active_inner_366d {
        text-align: center;
    }
    
    .wrapper_pressed_9849 {
        text-align: center;
    }
    
    .picture_pressed_140e {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .light-2018,
    .cool_1c77,
    .orange_9bd5,
    .title-inner-c01e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .widget-e21b {
        background: none;
    }
}

/* Providers Section */
.soft_a84a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_rough_3cd6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_rough_3cd6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature_rough_3cd6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_ee1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gold_ee1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal-bronze-379f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.frame-rough-c111 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.frame-pressed-ce66 {
    list-style: none;
    padding: 0;
}

.frame-pressed-ce66 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.frame-pressed-ce66 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.component_warm_ef19 {
    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);
}

.component_warm_ef19 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.progress_bottom_85cf {
    padding: var(--section-padding);
}

.logo_wide_7406 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_wide_7406 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-yellow-e6e7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status-yellow-e6e7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.item-outer-8464 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.status-thick-69f1 {
    display: flex;
    flex-direction: column;
}

.avatar-first-8b8b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.button_7987 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.mask_active_64ff {
    color: var(--accent-color);
}

.media-lite-ee64 {
    font-size: 1.25rem;
}

.north-fd41 {
    margin-bottom: 1rem;
}

.north-fd41 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.cold-97b5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.link_complex_d434 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.modal-d6f3 {
    text-align: center;
}

.pro-9ade {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail_614a {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.card_a25c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-thick-865b {
    margin: 2rem 0;
}

.image_steel_8459 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.image_steel_8459 .layout_22e2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_clean_c03a {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.aside_705d {
    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;
}

.aside_705d:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lite_7880 {
    font-size: 2rem;
}

.grid-a435 {
    display: flex;
    flex-direction: column;
}

.action-cbe0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.prev-acaf {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.widget_aa1d {
    padding: var(--section-padding);
}

.next_84cf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .next_84cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .next_84cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_orange_bc2d {
    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);
}

.icon_orange_bc2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon_orange_bc2d .pro-9ade {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.icon_orange_bc2d .detail_614a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.icon_orange_bc2d .preview-large-64ed {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.clean_a45e {
    margin-top: 4rem;
}

.simple-e7e0 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.photo-lower-eed6 {
    overflow-x: auto;
}

.form_f2fc {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form_f2fc thead {
    background: var(--accent-color);
}

.form_f2fc th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.form_f2fc td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.form_f2fc tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.form_f2fc tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.accordion_action_1870 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-924b {
    max-width: 900px;
    margin: 0 auto;
}

.disabled-1d65 {
    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);
}

.disabled-1d65:hover {
    border-color: var(--accent-color);
}

.popup-57ed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.popup-57ed h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.action-ac2f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.disabled-1d65.fn-active-273a .action-ac2f {
    transform: rotate(45deg);
}

.description_south_f6ff {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.disabled-1d65.fn-active-273a .description_south_f6ff {
    max-height: 1000px;
}

.description_south_f6ff p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.border_f356 {
    padding: var(--section-padding);
}

.east_8916 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.heading-9c57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_bbf9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_bbf9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-green-f588 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-9d29 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav_basic_67ec {
    font-size: 2rem;
}

.notification_301f {
    color: var(--text-white);
    margin: 0;
}

.input-advanced-1af8 {
    list-style: none;
    padding: 0;
}

.input-advanced-1af8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input-advanced-1af8 li:last-child {
    border-bottom: none;
}

.notification_4c39 {
    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);
}

.notification_4c39 p {
    color: var(--success-color);
    margin: 0;
}

.hidden-stone-422d {
    margin-top: 3rem;
}

.yellow_c030 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.steel_8a1d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .steel_8a1d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget_4920 {
    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);
}

.badge-c35b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.widget_4920 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.overlay_east_aad3 {
    padding: var(--section-padding);
}

.fixed_fd05 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_fd05 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-010b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.top-010b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.complex-18fa {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-liquid-8700 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sort_current_f55f {
    flex: 1;
}

.texture_blue_27ed {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.text_liquid_2abb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.bottom-ddf1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_b746 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light_b746:last-child {
    border-bottom: none;
}

/* Comparison Section */
.active_b427 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.notice_clean_cab0 {
    padding: var(--section-padding);
}

.slider-mini-8fad {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.right_1ff2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right_1ff2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_prev_cbf9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale-00cd, .copper_e12b, .rough-f844 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.rough-f844 {
    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_simple_fe03 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_rough_723c {
    margin: 2rem 0;
}

.badge-16cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_b065 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.plasma-837e {
    list-style: none;
    padding: 0;
}

.plasma-837e 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;
}

.plasma-837e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.plasma-837e li:last-child {
    border-bottom: none;
}

.disabled-10cb {
    text-align: center;
    margin-top: 2rem;
}

.under-5df8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.block_75b9 {
    padding: var(--section-padding);
}

.outer_d81d {
    margin: 2rem 0;
}

.overlay_f98c {
    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) {
    .overlay_f98c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.overlay_f98c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.south-f611 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hard_5c3c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.link-aa12 {
    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;
}

.breadcrumb-6c05 {
    flex: 1;
}

.tag_huge_df36 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.black_7a05 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.white-c894 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.header-fast-bf5e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .header-fast-bf5e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.picture-gold-f4ad {
    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);
}

.picture-gold-f4ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.picture-gold-f4ad .pro-9ade {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture-gold-f4ad .detail_614a {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop-7179 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh_8da7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.fresh_8da7 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.prev_72fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .prev_72fd {
        grid-template-columns: 1fr 1fr;
    }
}

.outline_under_63cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_19d3 {
    margin-bottom: 1.5rem;
}

.red_19d3 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.red_19d3 input,
.red_19d3 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;
}

.red_19d3 input:focus,
.red_19d3 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.purple_c11f {
    width: 100%;
    margin-top: 1rem;
}

.tag-out-a852 {
    display: flex;
    align-items: center;
}

.heading_c79c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.up_cdb6 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.inner_eaec {
    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;
}

.pattern-bright-b800 {
    color: var(--text-gray);
}

.info_19fe {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.box_bright_8d00 {
    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);
}

.box_bright_8d00 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.filter_brown_2cd1 {
    margin-top: 3rem;
}

.center_3e02 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.badge_iron_32c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white_4076 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.box_center_3cbe {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.box_center_3cbe:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.column-hovered-51d2 {
    padding: var(--section-padding);
}

.smooth_39c2 {
    margin: 2rem 0;
}

.over-7df5 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.article_eb65 {
    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;
}

.article_eb65:hover, .article_eb65.fn-active-273a {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.lower_74b6 {
    display: none;
}

.lower_74b6.fn-active-273a {
    display: block;
}

.up-96d2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_b9f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.element_medium_eac2 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.element_medium_eac2 ul {
    list-style: none;
    padding: 0;
}

.element_medium_eac2 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.element_medium_eac2 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.popup-c1e2 {
    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 */
.search-steel-8950 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_0e7b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_6308 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.narrow-4ce6 {
    color: var(--accent-color);
    margin: 0;
}

.disabled_motion_868f {
    display: flex;
    gap: 1.5rem;
}

.component-66a4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-wide-e604 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.wood-94bb {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.wood-94bb.main-fe61 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.wood-94bb.bronze-436a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.wood-94bb.fluid_9c04 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.thumbnail-new-9985 {
    margin-top: 2rem;
}

.tertiary_yellow_1ed8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tiny_25b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tiny_25b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-46ab {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.first-18c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.motion_133e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.smooth_8974 {
    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 */
.component_yellow_939f {
    padding: var(--section-padding);
}

.black_8e3d {
    margin: 2rem 0;
}

.table-18ee {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.border_7580 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.secondary_d103 {
    list-style: none;
    padding: 0;
}

.secondary_d103 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;
}

.secondary_d103 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.secondary_d103 li:last-child {
    border-bottom: none;
}

.gradient_9205 {
    margin: 2rem 0;
}

.cold-cdd2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.section_5d74 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .section_5d74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.iron-0961 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_86b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.top_f0dd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.outline-f888 {
    margin-top: 2rem;
}

.banner-orange-b132 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.info-fixed-350b {
    list-style: none;
    padding: 0;
}

.gallery_brown_e22b {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.gallery_brown_e22b a {
    color: var(--accent-color);
    text-decoration: none;
}

.gallery_brown_e22b a:hover {
    text-decoration: underline;
}

.hero-smooth-adf8 {
    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 */
.dropdown-8337 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_afc5 {
    margin: 2rem 0;
}

.outline_new_24c6 {
    margin-bottom: 3rem;
}

.outline_new_24c6 .shadow_b065 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.overlay-7fc4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.image_203f {
    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);
}

.image_203f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.filter_selected_0465 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .filter_selected_0465 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-6230 {
    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 */
.breadcrumb-589b {
    padding: var(--section-padding);
}

.outline_c618 {
    margin: 2rem 0;
}

.hover-dd65 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.video-plasma-416d {
    overflow-x: auto;
    margin: 2rem 0;
}

.paragraph-prev-7e61 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.component-4220 {
    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;
}

.column-8fcf {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.tiny_7d85 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .tiny_7d85 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-large-45dd {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-large-45dd .layout_22e2 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.menu-large-45dd .large-cd96 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-up-9798 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.list_93fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_f16f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_f16f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_2be8 {
    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;
}

.disabled_2be8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.north-a5a1 {
    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);
}

.banner_90fc {
    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;
}

.input_1116 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.new-2d6e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.icon_action_81ae {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.border-advanced-1b3b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header_medium_2304 {
    color: var(--text-white);
    font-weight: 600;
}

.gallery_warm_06f6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lite_babf {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lite_babf .pattern_red_aa94 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box-f0bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box-f0bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple-3f41 {
    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);
}

.purple-3f41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.purple-3f41 .pro-9ade {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.purple-3f41 .detail_614a {
    color: var(--text-gray);
    font-size: 1rem;
}

.frame_basic_e70f {
    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);
}

.grid_cdec {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.grid_cdec strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.main-north-cd91 {
    margin: 2rem 0;
}

.main_stone_bc31 {
    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);
}

.main_stone_bc31:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.rough-a1b2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-silver-dd3c {
    flex: 1;
}

.header-9155 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list-96e0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.gradient-fdc3 {
    margin: 2rem 0;
}

.summary_3599 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_3599 .large-cd96 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.summary_3599 .menu-9423 {
    color: var(--text-gray);
    margin: 0;
}

.gradient_47ba {
    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);
}

.gradient_47ba .detail_purple_8a86 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.breadcrumb-up-9798 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.sidebar_dim_02ee {
    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;
}

.wrapper_c806 {
    flex: 1;
}

.easy_df61 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.notification-2ac9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.action-f097 {
    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;
}

.green-2bb5 {
    flex: 1;
}

.silver-c395 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.search_rough_34ab {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.old-656c {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.up-84b0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.aside_fast_3dfc {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.aside_fast_3dfc .pattern_red_aa94 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.module_smooth_6e19 {
    margin-top: 2rem;
}

.module_smooth_6e19 .yellow_c030 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.message_gold_c0c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_solid_7572 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .filter_solid_7572 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_solid_7572 .modal-d6f3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_cf65 {
    margin: 2rem 0;
}

.tertiary-dark-2dee {
    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 */
.panel_c06d {
    padding: var(--section-padding);
}

.summary_9fd8 {
    margin-top: 1rem;
}

.current-34e5 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.current-34e5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.current-34e5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.text-f7a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_71d5 {
    margin: 2rem 0;
}

.secondary_mini_a351 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.box_1cdc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hot-c59b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.secondary_c230 {
    margin: 2rem 0;
}

.hard-f9dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.hard-f9dc .shadow_b065 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card_blue_4703 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .card_blue_4703 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preview_mini_599a {
    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);
}

.modal-cb3d {
    color: var(--text-white);
    font-weight: 600;
}

.tag-smooth-ac7a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.surface_orange_edd8 {
    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);
}

.surface_orange_edd8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.label_85f7 {
    padding: var(--section-padding);
}

.pagination_689a {
    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;
}

.pagination_689a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.nav_hot_dd6e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_hot_dd6e .badge-c35b {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_hot_dd6e .texture_light_c3b4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.button-up-4d3e {
    flex: 1;
}

.action-6bf1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.breadcrumb-f84a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-f84a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb-f84a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.notification-left-cb7e {
    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);
}

.notification-left-cb7e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification-left-cb7e strong {
    color: var(--warning-color);
}

/* Slots Section */
.widget_5591 {
    padding: var(--section-padding);
}

.down_0cfa {
    margin: 2rem 0;
}

/* Table Games Section */
.content-smooth-a2cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite-3e9a {
    margin: 2rem 0;
}

.out-b69a {
    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);
}

.out-b69a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.out-b69a .stone-8cee {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out-b69a .border_mini_c84a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.menu_fresh_0028 {
    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);
}

.menu_fresh_0028 .detail_purple_8a86 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.main_23ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_complex_eeb8 {
    margin: 2rem 0;
}

.center-8fdb {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-gold-e4ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center_cdaf {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-6dbc {
    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);
}

.header-6dbc:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.header-6dbc.fn-active-273a {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-down-cd0c {
    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);
}

.item-in-79c2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item-in-79c2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.focused-7b51 {
    padding: var(--section-padding);
}

.tag_30b3 {
    margin: 2rem 0;
}

.dropdown_brown_e30f {
    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_brown_e30f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .dropdown_brown_e30f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.title-silver-10f8 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.menu-narrow-9935 {
    flex: 1;
}

.notification_adb2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.texture_6230 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.large_48ee {
    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;
}

.silver-c3e5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.summary_copper_8a41 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gradient_last_5e23 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.light-0250 {
    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;
}

.light-0250:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.block_da47 {
    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);
}

.description-medium-abd6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description-medium-abd6 strong {
    color: var(--accent-color);
}

/* New Games Section */
.gradient-194d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_4abe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .short_4abe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short_4abe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_dynamic_01ab {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.secondary_dynamic_01ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden-south-405c {
    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;
}

.tabs_stale_20a1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.input_c218 {
    font-size: 2rem;
}

.status-tall-3fcd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.backdrop_33c2 {
    flex: 1;
}

.slider_bed3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.banner-cold-3a0f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nav_pink_2d4d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-bottom-7365 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hard-38d9 {
    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;
}

.button_0b6c {
    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;
}

.button_0b6c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tiny_24fd {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_8814 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange-c56e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .orange-c56e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-b44d {
    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);
}

.iron_851d {
    color: var(--text-white);
    font-weight: 600;
}

.cold_f2b4 {
    color: var(--accent-color);
    font-weight: 600;
}

.title_2c74 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.title_2c74 strong {
    color: var(--accent-color);
}

/* Security Section */
.form-cold-fa02 {
    padding: var(--section-padding);
}

/* Benefits Section */
.carousel-inner-44ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.component_24a8 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.detail-0114 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_ae51 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.new-3d09 {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .new-3d09 {
        flex-direction: column;
        gap: 1rem;
    }
}

.new-3d09:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.new-3d09 .action-f097 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.new-3d09 .green-2bb5 {
    flex: 1;
}

.new-3d09 .silver-c395 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.new-3d09 .search_rough_34ab {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.message-green-b40c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-green-b40c .content_5365 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message-green-b40c .box_last_960b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-green-b40c .box_last_960b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.message-green-b40c .box_last_960b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.selected-5db8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.message-dddb {
    padding: var(--section-padding);
}

.highlight-b445 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .highlight-b445 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_tiny_fab2 {
    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);
}

.accordion_tiny_fab2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.accordion_tiny_fab2 .gold-2780 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_tiny_fab2 .icon-8c3d {
    flex: 1;
}

.accordion_tiny_fab2 .detail_a06b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion_tiny_fab2 .card_6373 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay-orange-211f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-orange-211f .hover-4855 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-orange-211f .glass-5e68 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.overlay-orange-211f .glass-5e68 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);
}

.overlay-orange-211f .glass-5e68 li:last-child {
    border-bottom: none;
}

.overlay-orange-211f .glass-5e68 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;
}

.overlay-orange-211f .glass-5e68 li strong {
    color: var(--text-white);
}

.focus_stale_602c {
    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);
}

.focus_stale_602c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus_stale_602c strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.pattern-pressed-4e9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification_dcd5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notification_dcd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.message_914b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message_914b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media_east_4b36 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-over-792b {
    font-size: 2rem;
}

.inner-21fb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.focus_steel_7194 {
    flex: 1;
}

.badge-97a6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-97a6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.badge-97a6 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.shade_b02f {
    margin-top: 3rem;
}

.table-18ee {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.border_7580 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary_d103 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary_d103 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.secondary_d103 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.secondary_d103 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.image_6f85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-5271 {
    margin: 2rem 0;
}

.focused_e5f3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.focused_e5f3 .shadow_b065 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media_0e06 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media_0e06 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.down-560a {
    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);
}

.down-560a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.list-04f8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-9b31 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.tag-dirty-9d1c {
    padding: var(--section-padding);
}

.preview-easy-0c00 {
    margin: 2rem 0;
}

.stale-8a5c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .stale-8a5c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stale-8a5c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_3cb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent_3cb0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.alert-df3b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.west-6c10 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.accordion-lite-e746 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.accordion-lite-e746.table_orange_20e8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.aside_ce63 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.basic_5add {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.icon-a1bc {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress_short_7c04 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paragraph-48a1 {
    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);
}

.paragraph-48a1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-48a1 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.logo-9a38 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_ea1f {
    margin: 2rem 0;
}

.header_fresh_94a8 {
    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) {
    .header_fresh_94a8 {
        flex-direction: column;
        gap: 1rem;
    }
}

.header_fresh_94a8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.header_fresh_94a8::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);
}

.header_smooth_2644 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.left_642d {
    flex: 1;
}

.east_b59c {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pink_8590 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink_8590 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.item_north_1fe9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_0574 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture_next_63be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .picture_next_63be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_b868 {
    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);
}

.secondary_purple_bdef {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-bc24 {
    flex: 1;
}

.motion_341b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.layout-2e64 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.focus_advanced_9d2a {
    margin-top: 2rem;
    text-align: center;
}

.box_2cbc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_2cbc strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.image_fea4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_fea4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_8fa5 {
    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_8fa5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_8fa5 .selected_1fda {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_8fa5 .down_285b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.background_8fa5 .search_solid_e683 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.background_8fa5 .badge_solid_026c {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.item-e432 {
    padding: var(--section-padding);
}

.narrow_6581 .video_over_bb1a {
    flex: 1;
}

/* Promo Calendar Section */
.under_f55f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean_dc3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .clean_dc3e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-2f5f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-5e72 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hot_e4cd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small_9fd4 {
    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);
}

.summary-141a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module_d185 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.form_fluid_0648 {
    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);
}

.form_fluid_0648 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_fluid_0648 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hover_b0e0 {
    padding: var(--section-padding);
}

.aside-small-6622 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .aside-small-6622 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.basic_91e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_silver_2f26 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.border-afcd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border-afcd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_bd88 {
    margin-top: 3rem;
}

.shadow_bd88 .table-18ee {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.shadow_bd88 .border_7580 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shadow_bd88 .secondary_d103 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.shadow_bd88 .secondary_d103 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.shadow_bd88 .secondary_d103 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.shadow_bd88 .secondary_d103 li strong {
    color: var(--warning-color);
}

.focus_cc05 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus_cc05 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.lite_5d85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-6118 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-6118 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_aad9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_aad9 .shadow_b065 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dark-02c1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_d4e8 {
    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);
}

.content_d4e8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gallery_white_310a {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-warm-c5d8 {
    flex: 1;
}

.tertiary-560b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.accent-e435 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.status-narrow-ff1e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.surface_focused_237e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gas_cc40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .gas_cc40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-huge-d1aa {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress-huge-d1aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight-left-24cf {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button-83cc {
    color: var(--text-gray);
    font-size: 1rem;
}

.fresh_8da7 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused_6910 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focused_6910 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.tabs-red-80de { 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; }
.badge-prev-5dc9, .chip-south-f3a2 { max-width:100%; height:auto; }

.notification-9fc5, .outline-174a, .media_72b9 { white-space:normal; }

.active_inner_366d,
.wrapper_pressed_9849,
.south_ced7,
.image_fea4,
.gradient-fdc3,
.down-c740 {
  flex-wrap:wrap;
}

[class*="grid"],
.gas_cc40,
.stale-8a5c,
.shadow_ddcb {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.widget-e21b img,
.wrapper_pressed_9849 img,
.motion_170c img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.fresh_b4b6, .fresh-6252,
.text-tall-f2b8, .badge_hot_8a15 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.photo-lower-eed6 { width:100%; overflow-x:auto; }
.photo-lower-eed6 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.feature_rough_3cd6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .feature_rough_3cd6 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.gold_ee1e {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.next_84cf,
.search_white_83ae,
.info_b30a,
.surface-yellow-9dc1,
.header-fast-bf5e,
.gas_cc40,
.stale-8a5c,
.shadow_ddcb,
.wrapper-green-a846,
.tag_30b3,
.feature_rough_3cd6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .next_84cf,
  .search_white_83ae,
  .info_b30a,
  .surface-yellow-9dc1,
  .header-fast-bf5e,
  .gas_cc40,
  .stale-8a5c,
  .shadow_ddcb,
  .wrapper-green-a846,
  .tag_30b3,
  .feature_rough_3cd6 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.icon_orange_bc2d,
.picture-gold-f4ad,
.progress-huge-d1aa,
.icon_copper_d770,
.accent_3cb0,
.complex_25cd,
.dropdown_brown_e30f,
.gold_ee1e {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.advanced_ac94,
.old-3534,
.light-2338 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.advanced_ac94 > *,
.old-3534 > *,
.light-2338 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d03f */
.widget-item-a1 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
