/* {$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;
}

.article-bottom-c2c4 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.lite-444d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .lite-444d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lite-444d {
        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 */
.surface_over_fa08 {
    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);
}

.iron-8756 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .iron-8756 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .breadcrumb-left-3110 {
        grid-column: 1;
    }
    
    .input-e879 {
        grid-column: 2;
    }
    
    .south_8f45 {
        grid-column: 3;
    }
}

.breadcrumb-left-3110 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.breadcrumb-left-3110:hover img {
    transform: scale(1.05);
}

/* Navigation */
.filter_dark_19fa {
    display: none;
}

@media (min-width: 1024px) {
    .filter_dark_19fa {
        display: block;
    }
}

/* Grouped Navigation */
.notification_dirty_35dd {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.new_1772 {
    position: relative;
}

.primary-3d95 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.new_1772 .dropdown-e105 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.dropdown-e105 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid_110a {
    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;
}

.grid_110a:hover,
.grid_110a.fn-active-ae45 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.over_4d92 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .over_4d92 {
        display: flex;
    }
}

/* Mobile Register Button */
.input-e879 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .input-e879 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.list_afca {
    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;
}

.list_afca::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 */
.south_8f45 {
    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) {
    .south_8f45 {
        display: none;
    }
}

.south_8f45 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.south_8f45.fn-active-ae45 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.south_8f45.fn-active-ae45 span:nth-child(2) {
    opacity: 0;
}

.south_8f45.fn-active-ae45 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.disabled_inner_79e3 {
    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;
}

.disabled_inner_79e3.fn-active-ae45 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.layout-pressed-315f {
    overflow: hidden;
}

.tabs_dark_93dc {
    list-style: none;
    padding: 0.75rem 0;
}

.message-center-b604 {
    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;
}

.message-center-b604:hover,
.message-center-b604.fn-active-ae45 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.message-center-b604.preview-28de {
    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;
}

.message-center-b604.preview-28de::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 */
.accordion-1814 {
    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;
}

.row_2ff6 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.row_2ff6:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.top-49b9 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.top-49b9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.yellow_d400 {
    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;
}

.yellow_d400:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.disabled_8614 {
    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;
}

.background_middle_4816 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.background_middle_4816:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple-524a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple-524a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.message_upper_293d {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.message_upper_293d: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);
}

.pro_aae8 {
    font-size: 1em;
    font-weight: 700;
}

.aside_red_a11d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.thumbnail-48f8 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.thumbnail-48f8::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;
}

.advanced_4ad2 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .advanced_4ad2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.progress_old_30e7 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.content-1083 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.next-ea19 {
    margin-bottom: 2rem;
}

.primary-2a81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .primary-2a81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_brown_cbe6 {
    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);
}

.purple-2d78 {
    font-size: 1.5rem;
}

.gallery-hard-68ff {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wrapper_motion_d0b6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.simple-899c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.simple-899c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.motion_6ee0 {
    text-align: center;
    margin-bottom: 3rem;
}

.left_a515 {
    margin-bottom: 1rem;
}

.progress_current_bb20 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.nav-orange-6a71 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav-orange-6a71 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .nav-orange-6a71.small-e786 {
        direction: rtl;
    }
    
    .nav-orange-6a71.small-e786 > * {
        direction: ltr;
    }
}

.alert-hard-ccc5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.alert-hard-ccc5:first-child {
    margin-top: 0;
}

.dynamic-68ac {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.silver_b92f {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.silver_b92f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.table-active-a858 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-active-a858 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-aafe {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_smooth_deeb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_5ce6 {
    list-style: none;
}

.aside_5ce6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_5ce6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.background-0711 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.input-4bc0 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sort_396e {
    font-size: 2rem;
    flex-shrink: 0;
}

.white_0366 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.sort-selected-2a5c {
    margin: 2rem 0;
}

.rough_0e7b {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.motion-8475 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.detail_easy_e0b8 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.east_03f5 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.lower_dd1d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_dd1d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-slow-4a63 {
    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);
}

.tabs-slow-4a63:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.list-ab33 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.selected_dc83 {
    font-size: 1.5rem;
}

.pink_f8f5 {
    color: var(--accent-color);
    margin: 0;
}

.layout-lower-7c0b {
    list-style: none;
}

.layout-lower-7c0b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.layout-lower-7c0b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.overlay-pink-e1f4 {
    margin: 2rem 0;
}

.hidden-orange-b60c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.paragraph-37ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .paragraph-37ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component-ef87 {
    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);
}

.steel-f2e5 {
    font-size: 1.25rem;
}

.center-d078 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.content_paper_e105,
.focused_eb88 {
    text-align: center;
    margin: 2rem 0;
}

.article_dim_ae43,
.black-48a0 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.menu-bae7 {
    margin: 2rem 0;
    text-align: center;
}

.dynamic_5a07 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dynamic_5a07::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;
}

.tag_center_fba8 {
    position: relative;
    z-index: 1;
}

.dropdown_5869 {
    margin-bottom: 1rem;
}

.short_2668 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section_701b {
    margin-bottom: 3rem;
}

.gas_4fbd {
    margin-top: 3rem;
}

.dropdown-fixed-11c5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dropdown-fixed-11c5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-fixed-11c5 .heading_brown_cbe6 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.logo-pro-aa09 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel-basic-f32e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.badge-8148 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.table_small_db6a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .table_small_db6a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_small_db6a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tooltip_advanced_f1a3 {
    margin-bottom: 1rem;
}

.dark-8b3e img {
    margin-bottom: 1rem;
}

.disabled_840e {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-rough-8e16 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.aside_6867 {
    list-style: none;
}

.aside_6867 li {
    margin-bottom: 0.5rem;
}

.aside_6867 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.aside_6867 a:hover {
    color: var(--accent-color);
}

.wrapper-b866 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.menu-lower-7020 {
    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);
}

.menu-lower-7020:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.feature-2696 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.feature-2696 p {
    margin-bottom: 0.25rem;
}

.label_fixed_7691 {
    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) {
    .label_fixed_7691 {
        flex-direction: row;
    }
}

.simple-6f23 {
    text-align: center;
}

@media (min-width: 768px) {
    .simple-6f23 {
        text-align: left;
    }
}

.simple-6f23 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout-upper-71c7 {
    font-size: 0.75rem !important;
}

.media-cold-be7e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fast-4288 {
    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);
    }
}

.search-e744 {
    animation: fadeInUp 0.6s ease-out;
}

.avatar-pressed-b175 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.icon-dff2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-dff2 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.simple_5996 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple_5996 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north-bf2b {
    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);
}

.north-bf2b .sort_396e {
    font-size: 1.25rem;
}

.north-bf2b .logo-cold-7417 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.detail-fresh-0091 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-fresh-0091 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool-ea95 {
    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-ea95:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.iron_24a9 {
    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);
}

.grid-clean-8b1a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image_copper_ceb0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_first_8929 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_20f6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gold_20f6 .white_0366 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold_20f6 .shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_1b76 {
    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);
}

.texture-white-a9f3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.texture-white-a9f3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.texture-white-a9f3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.input_small_b6ea {
    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);
}

.item_4454 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery_full_56ab {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery_full_56ab label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gallery_full_56ab 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);
}

.gallery_full_56ab input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gallery_full_56ab input::placeholder {
    color: var(--text-muted);
}

.header_new_94ff {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.picture_slow_0309 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.picture_slow_0309 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.outer_1fbd {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.outer_1fbd:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.paragraph-37ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-37ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component-ef87 {
    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);
}

.component-ef87 .steel-f2e5 {
    font-size: 1.25rem;
}

.component-ef87 .center-d078 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.current-b04b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-0968 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.link-0968 .sort_396e {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-0968 .white_0366 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-0968 .shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic_d45f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-bcff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notification-bcff .pro_77de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification-bcff .avatar_96e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label_liquid_80a0 {
    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);
}

.gallery-0c9d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-0c9d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool-1de6 {
    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-1de6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_38c4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.grid-out-4fca {
    flex: 1;
}

.focus_ce6f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hard-fe40 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.active-1784 {
    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);
}

.active-1784:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.info_32e0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_32e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_6112 {
    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);
}

.avatar_6112:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_rough_37bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_down_2ccf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.block_yellow_4a9e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.easy_6ace {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.next_ac8a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section-bright-4354 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-fixed-176f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-fixed-176f .lite-2375 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-fixed-176f .soft_3f59 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-1bbd {
    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);
}

.filter_9d44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_f0c2 {
    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);
}

.popup_f0c2 .sort_396e {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_f0c2 .white_0366 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_f0c2 .shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_c6a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_c6a9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh-8323 {
    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);
}

.fresh-8323:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.fast_8900 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast_8900 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-2dec {
    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);
}

.overlay-2dec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_7f25 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-fluid-31b0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.motion-8475 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.icon_ceba {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shade-1b1e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-e96b {
    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);
}

.center-e96b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper-d833 {
    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);
}

.accordion_a4bd {
    flex: 1;
}

.photo-7703 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.solid_c057 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.photo-d724 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple_2311 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-0972 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-0972 .pro_77de {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-0972 .avatar_96e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_eb88 {
    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);
}

.alert-db92 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-db92 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.sort-outer-a832 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-outer-a832 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-41dd {
    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);
}

.border-41dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_adb3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination-small-d655 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.container_5d85 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.icon_right_72cd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text-tall-758d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-rough-de8f {
    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);
}

.caption_last_2fd5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_advanced_267a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block_full_fd60 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_9d44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_f0c2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.popup_f0c2 .white_0366 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup_f0c2 .shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_1d6b {
    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);
}

.shade_4335 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_4335 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_4335 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_4711 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pro_4711:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.plasma-f631 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic-07e1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shadow_04a0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.list-b04b {
    padding: 1.5rem;
}

.media-gas-5f3b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-3012 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-3012 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;
}

.feature-3012 li:last-child {
    border-bottom: none;
}

.feature-3012 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.video-fixed-dacb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-fixed-dacb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_down_695e {
    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);
}

.module_down_695e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower_546c {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_thick_049a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.action-2835 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shade-7743 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort_b502 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-8c8c {
    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);
}

.surface-pink-286e {
    font-size: 2rem;
    flex-shrink: 0;
}

.video-gold-40b3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas-305a {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_c73b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-05d6 {
    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);
}

.search-ae15 {
    text-align: center;
}

.pattern_wood_ad5a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-tall-3d70 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_fresh_acc1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-3728 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-3728 .white_0366 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright-3728 .shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_757f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_757f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_757f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_a7c0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lower_a7c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.black-4e42 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slow-20b1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.white_0366 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden-6c78 {
    padding: 1.5rem;
}

.shade_06ad {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stale-95c1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stale-95c1 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;
}

.stale-95c1 li:last-child {
    border-bottom: none;
}

.stale-95c1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.carousel_north_44be {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.header-8299 {
    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);
}

.header-8299:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue_eda8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_79f5 {
    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);
}

.iron_24a9 {
    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;
}

.grid-clean-8b1a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_copper_ceb0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module-c433 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-d4c4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.purple-3f06 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag-red-0607 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.element-b8cf {
    display: flex;
    gap: 1rem;
}

.element-b8cf .component-rough-dcdc {
    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;
}

.dropdown-wide-5336 {
    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);
}

.slider_next_22fa {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.up_8a10 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.up_8a10 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;
}

.up_8a10 li:last-child {
    border-bottom: none;
}

.up_8a10 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.primary-cd75 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary-cd75 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-cd75 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_11b7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list_11b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_25ba {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_f622 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.lite-2375 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.modal_pink_b55f {
    font-size: 1rem;
}

.logo_342e {
    padding: 1.5rem;
}

.soft_3f59 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.search-e936 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.search-e936 .search-ae15 {
    text-align: center;
}

.search-e936 .content-tall-3d70 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.search-e936 .clean_638c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.detail-bottom-0a06 {
    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);
}

.detail-bottom-0a06:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.full-e5e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-e5e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_hard_6bfc {
    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_6bfc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_f23a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-cd4d {
    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);
}

.icon-east-bc2e {
    font-size: 2rem;
    flex-shrink: 0;
}

.first-a2e3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-1380 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-6adc {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dark-c0a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column-d14a {
    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);
}

.menu_8866 {
    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;
}

.menu_8866.small-2024 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.menu_8866.footer_new_a13f {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.menu_8866.right_7b6a {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.menu_8866.component-liquid-17f6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.menu_8866.alert-full-5573 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tag_under_6f0b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.narrow-da5a {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_695a {
    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);
}

.aside-selected-dc59 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dynamic_d45f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamic_d45f 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;
}

.dynamic_d45f li:last-child {
    border-bottom: none;
}

.dynamic_d45f li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.section_8b9a {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .section_8b9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section_8b9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-190e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider-190e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-190e.panel-advanced-adab {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .slider-190e.panel-advanced-adab {
        grid-column: span 3;
    }
}

.liquid-7cdc {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.slider-190e.panel-advanced-adab .liquid-7cdc {
    background: rgba(6, 182, 212, 0.1);
}

.main-242d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.content-66bb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.slider-190e.panel-advanced-adab .content-66bb {
    color: var(--info-color);
}

.bronze-ebfe {
    padding: 1.5rem;
    text-align: center;
}

.frame-left-90e1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.slider-190e.panel-advanced-adab .frame-left-90e1 {
    color: var(--info-color);
}

.light_4b22 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.summary-dfbe {
    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 */
.article_narrow_5011 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_narrow_5011 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas_986c {
    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);
}

.gas_986c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-up-08ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-0968 {
    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);
}

.steel-f2e5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_8f6c {
    flex: 1;
}

.hidden-orange-b60c {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_advanced_94f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_c39d {
    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);
}

.section_action_c5e7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.carousel-dynamic-0ace {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fast-4288 {
    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);
}

.right-c17a {
  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);
}

.right-c17a .search-ae15 {
    text-align: center;
}

.right-c17a .pattern_wood_ad5a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.right-c17a .content-tall-3d70 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.image-7241 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column-b583 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm_1838 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide_b818 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-narrow-3634 {
    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);
}

.section_8d86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row_silver_b570 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_1fb0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_1fb0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_1fb0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solid-eebc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.solid-eebc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-red-4171 {
    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);
}

.column_d52c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.small_0709 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.message_rough_f80f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message_rough_f80f.button_mini_7db9 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.message_rough_f80f.thumbnail-cold-a24a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.message_rough_f80f.brown_1b5f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.dynamic_4ca1 {
    padding: 1.5rem;
    text-align: center;
}

.footer-down-ccea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.section_old_a9cf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section_old_a9cf .table_wide_1547 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.dropdown-0743 {
    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);
}

.dropdown-0743:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mask-a925 {
  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);
}

.in_0cc5 {
    text-align: center;
}

.in_0cc5 .pattern_wood_ad5a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.in_0cc5 .content-tall-3d70 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.chip_56c3 { text-align: center; }
.paragraph_up_2573 { text-align: left; }
.panel_8eff { text-align: right; }

.notice-right-75ad { margin-bottom: 0; }
.dim-3209 { margin-bottom: 0.5rem; }
.avatar_medium_c404 { margin-bottom: 1rem; }
.wrapper_clean_a0ce { margin-bottom: 1.5rem; }
.alert_dim_d859 { margin-bottom: 2rem; }

.next_a7cd { margin-top: 0; }
.gallery-b7a0 { margin-top: 0.5rem; }
.fluid-560a { margin-top: 1rem; }
.article-next-5261 { margin-top: 1.5rem; }
.table_f693 { margin-top: 2rem; }

.fn-hidden-ae45 { display: none; }
.fn-visible-ae45 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .thumbnail-48f8 {
        padding: 6rem 0 3rem;
    }
    
    .advanced_4ad2 {
        text-align: center;
    }
    
    .nav-orange-6a71 {
        text-align: center;
    }
    
    .primary-2a81 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .surface_over_fa08,
    .disabled_inner_79e3,
    .dynamic_5a07,
    .badge-8148 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .thumbnail-48f8 {
        background: none;
    }
}

/* Providers Section */
.text-3913 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-0a1c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-0a1c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border-0a1c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth-8f6e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.smooth-8f6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label_simple_50d6 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.title_e2d7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.overlay_cd89 {
    list-style: none;
    padding: 0;
}

.overlay_cd89 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.overlay_cd89 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.title_dim_51f3 {
    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);
}

.title_dim_51f3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.component_f6d8 {
    padding: var(--section-padding);
}

.detail_tiny_f132 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_tiny_f132 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_first_fe6f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail_first_fe6f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cold_118e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.disabled-903f {
    display: flex;
    flex-direction: column;
}

.dropdown-1c41 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.component-wide-e2e3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.title_15ca {
    color: var(--accent-color);
}

.item-next-08f8 {
    font-size: 1.25rem;
}

.block_89af {
    margin-bottom: 1rem;
}

.block_89af p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.popup-af5f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.surface-hard-c27d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.search-ae15 {
    text-align: center;
}

.pattern_wood_ad5a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-tall-3d70 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.accent-solid-cbee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-59ad {
    margin: 2rem 0;
}

.clean_53a7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.clean_53a7 .sort_396e {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-dirty-1939 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.widget-copper-2e5f {
    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;
}

.widget-copper-2e5f:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip-easy-7599 {
    font-size: 2rem;
}

.nav-up-290e {
    display: flex;
    flex-direction: column;
}

.feature-soft-6e77 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.link-old-4d4c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.sort_complex_1f62 {
    padding: var(--section-padding);
}

.secondary_short_d640 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .secondary_short_d640 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_short_d640 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_full_3d3f {
    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);
}

.hover_full_3d3f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover_full_3d3f .pattern_wood_ad5a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.hover_full_3d3f .content-tall-3d70 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.hover_full_3d3f .under-8034 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.button-534a {
    margin-top: 4rem;
}

.carousel_c8ca {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.lite-0739 {
    overflow-x: auto;
}

.disabled-soft-4233 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.disabled-soft-4233 thead {
    background: var(--accent-color);
}

.disabled-soft-4233 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.disabled-soft-4233 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-soft-4233 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.disabled-soft-4233 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.frame_72a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_thick_e841 {
    max-width: 900px;
    margin: 0 auto;
}

.paragraph_rough_4598 {
    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);
}

.paragraph_rough_4598:hover {
    border-color: var(--accent-color);
}

.focus_rough_4e51 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.focus_rough_4e51 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.tabs-cool-3a6c {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.paragraph_rough_4598.fn-active-ae45 .tabs-cool-3a6c {
    transform: rotate(45deg);
}

.smooth_b229 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.paragraph_rough_4598.fn-active-ae45 .smooth_b229 {
    max-height: 1000px;
}

.smooth_b229 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.new_684a {
    padding: var(--section-padding);
}

.texture-white-a9f3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.table_30f2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_9a03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_9a03 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.heading-wood-8cc1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-in-d0a7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hovered-6897 {
    font-size: 2rem;
}

.icon_7d15 {
    color: var(--text-white);
    margin: 0;
}

.form-purple-a771 {
    list-style: none;
    padding: 0;
}

.form-purple-a771 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-purple-a771 li:last-child {
    border-bottom: none;
}

.caption-gas-4770 {
    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);
}

.caption-gas-4770 p {
    color: var(--success-color);
    margin: 0;
}

.info_53cc {
    margin-top: 3rem;
}

.slider_next_22fa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.silver_f043 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .silver_f043 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-down-da36 {
    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);
}

.status-a3c2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video-down-da36 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.active-320b {
    padding: var(--section-padding);
}

.logo-4d43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-4d43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-plasma-b18f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask-plasma-b18f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.message-upper-8693 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.menu-silver-0ae1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.grid-cef4 {
    flex: 1;
}

.thumbnail-1393 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tertiary-3ab6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.upper_f1d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-green-d23e {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-green-d23e:last-child {
    border-bottom: none;
}

/* Comparison Section */
.button_7b10 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.top_9dbc {
    padding: var(--section-padding);
}

.feature-ffc8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.rough-f4f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough-f4f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-abe9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_liquid_b43d, .picture-inner-eda5, .pink_da30 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.pink_da30 {
    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 */
.pressed-35d1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-right-6893 {
    margin: 2rem 0;
}

.lower_2f49 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_9bf3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image_f4d2 {
    list-style: none;
    padding: 0;
}

.image_f4d2 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;
}

.image_f4d2 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.image_f4d2 li:last-child {
    border-bottom: none;
}

.alert-6ee5 {
    text-align: center;
    margin-top: 2rem;
}

.steel-8da5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.article-5838 {
    padding: var(--section-padding);
}

.box_north_920c {
    margin: 2rem 0;
}

.fluid_5951 {
    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) {
    .fluid_5951 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.fluid_5951:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.chip_upper_cc0e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.badge-slow-461b {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.new-b122 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal-ee4a {
    flex: 1;
}

.section-advanced-62e7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.outline_cold_ea07 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.background_lite_acec {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.stone_d449 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .stone_d449 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.grid_3e47 {
    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);
}

.grid_3e47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid_3e47 .pattern_wood_ad5a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid_3e47 .content-tall-3d70 {
    color: var(--text-gray);
    font-size: 1rem;
}

.bright-6b6f {
    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);
}

.dropdown-rough-5eae {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dropdown-rough-5eae strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hard_470f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hard_470f {
        grid-template-columns: 1fr 1fr;
    }
}

.block_147d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_black_afab {
    margin-bottom: 1.5rem;
}

.footer_black_afab label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer_black_afab input,
.footer_black_afab 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;
}

.footer_black_afab input:focus,
.footer_black_afab select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.huge-8e3e {
    width: 100%;
    margin-top: 1rem;
}

.caption-north-62fb {
    display: flex;
    align-items: center;
}

.down-ee1a {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.plasma-2bb3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.accent_static_fe58 {
    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;
}

.upper_176d {
    color: var(--text-gray);
}

.texture_2388 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.title-fluid-f144 {
    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);
}

.title-fluid-f144 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.picture_3c5a {
    margin-top: 3rem;
}

.component-8c28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.avatar_south_265a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-a369 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.advanced_710e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced_710e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.badge-hovered-35f0 {
    padding: var(--section-padding);
}

.carousel_hard_000d {
    margin: 2rem 0;
}

.prev_7f7f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sidebar-dirty-7e5d {
    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;
}

.sidebar-dirty-7e5d:hover, .sidebar-dirty-7e5d.fn-active-ae45 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.accent_d3fd {
    display: none;
}

.accent_d3fd.fn-active-ae45 {
    display: block;
}

.hover-dirty-3273 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-large-69e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled_slow_7295 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.disabled_slow_7295 ul {
    list-style: none;
    padding: 0;
}

.disabled_slow_7295 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.disabled_slow_7295 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.title_advanced_8f53 {
    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 */
.image_55f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_c95d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_b5dd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.slow_f77d {
    color: var(--accent-color);
    margin: 0;
}

.table-south-a6b9 {
    display: flex;
    gap: 1.5rem;
}

.mini_6230 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-outer-f340 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.banner_d43e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner_d43e.link_82dc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.banner_d43e.wrapper-middle-cb08 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.banner_d43e.avatar_first_a845 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.prev-806b {
    margin-top: 2rem;
}

.aside_cold_220c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.upper-56fd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .upper-56fd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_middle_6aef {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.hidden_adfd {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rough_7248 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.info-stale-9a6e {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

/* Responsible Gaming Section */
.video_d85c {
    padding: var(--section-padding);
}

.picture_b4ec {
    margin: 2rem 0;
}

.status-white-dbe0 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.primary-d58e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.accent_2d75 {
    list-style: none;
    padding: 0;
}

.accent_2d75 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;
}

.accent_2d75 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.accent_2d75 li:last-child {
    border-bottom: none;
}

.right_9997 {
    margin: 2rem 0;
}

.caption-f4b0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card-iron-16ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .card-iron-16ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rough-e8fd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down_ce11 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav_inner_9067 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary_basic_a20b {
    margin-top: 2rem;
}

.focus_ce6f {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.west-0f99 {
    list-style: none;
    padding: 0;
}

.down_5f8d {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.down_5f8d a {
    color: var(--accent-color);
    text-decoration: none;
}

.down_5f8d a:hover {
    text-decoration: underline;
}

.progress-brown-a362 {
    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 */
.mask-2639 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_motion_e59e {
    margin: 2rem 0;
}

.advanced-2a89 {
    margin-bottom: 3rem;
}

.advanced-2a89 .layout_9bf3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.section_glass_8915 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.overlay-left-105c {
    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);
}

.overlay-left-105c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.info_small_9be9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .info_small_9be9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first-974d {
    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 */
.status-309f {
    padding: var(--section-padding);
}

.nav_ba19 {
    margin: 2rem 0;
}

.nav-tiny-3098 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.table-dim-d6c8 {
    overflow-x: auto;
    margin: 2rem 0;
}

.clean_d594 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.info_4960 {
    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;
}

.avatar-5323 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.picture_1c72 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .picture_1c72 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-hard-b436 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-hard-b436 .sort_396e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.slider-hard-b436 .white_0366 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fresh-7c52 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.middle-a345 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-north-648d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-north-648d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma-c1c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.plasma-c1c0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.content-bottom-27a8 {
    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);
}

.dynamic-38a2 {
    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;
}

.dirty-b53e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.east_d6ab {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.notification_1139 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.next-9698 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.new-5737 {
    color: var(--text-white);
    font-weight: 600;
}

.gradient-fa04 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button_bc66 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button_bc66 .component-rough-dcdc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.short_67c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .short_67c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static_dfd7 {
    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);
}

.static_dfd7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.static_dfd7 .pattern_wood_ad5a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.static_dfd7 .content-tall-3d70 {
    color: var(--text-gray);
    font-size: 1rem;
}

.avatar_bottom_a814 {
    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);
}

.table-purple-5d9e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.table-purple-5d9e strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.text-tall-758d {
    margin: 2rem 0;
}

.slider-rough-de8f {
    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);
}

.slider-rough-de8f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.caption_last_2fd5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.filter-inner-2c64 {
    flex: 1;
}

.media_advanced_267a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block_full_fd60 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.filter_9d44 {
    margin: 2rem 0;
}

.popup_f0c2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_f0c2 .white_0366 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.popup_f0c2 .shade_06ad {
    color: var(--text-gray);
    margin: 0;
}

.form_1d6b {
    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);
}

.form_1d6b .article_dim_ae43 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.fresh-7c52 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.copper-d833 {
    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;
}

.accordion_a4bd {
    flex: 1;
}

.solid_c057 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.photo-d724 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.iron_24a9 {
    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;
}

.description_bc87 {
    flex: 1;
}

.grid-clean-8b1a {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.image_copper_ceb0 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.purple-3f06 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tag-red-0607 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.element-b8cf {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.element-b8cf .component-rough-dcdc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dropdown-wide-5336 {
    margin-top: 2rem;
}

.dropdown-wide-5336 .slider_next_22fa {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.border_basic_47df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-05d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav-05d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-05d6 .search-ae15 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_fresh_acc1 {
    margin: 2rem 0;
}

.bright-3728 {
    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 */
.slow-45f0 {
    padding: var(--section-padding);
}

.hidden-6c78 {
    margin-top: 1rem;
}

.stale-95c1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.stale-95c1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.stale-95c1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.blue_b8e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_125b {
    margin: 2rem 0;
}

.basic-ac22 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.badge_fda7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main_smooth_07e4 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.prev-c1e0 {
    margin: 2rem 0;
}

.paper-7846 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.paper-7846 .layout_9bf3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid-bdd8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-bdd8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.steel_4e08 {
    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);
}

.active-882d {
    color: var(--text-white);
    font-weight: 600;
}

.text_7d3a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.overlay_iron_0143 {
    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);
}

.overlay_iron_0143 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.bronze-9941 {
    padding: var(--section-padding);
}

.down-0ad4 {
    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;
}

.down-0ad4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.image-8333 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-8333 .status-a3c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-8333 .down_1acf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.copper_b59e {
    flex: 1;
}

.notice_under_cc48 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.carousel_last_45cd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel_last_45cd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.carousel_last_45cd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.dropdown-hard-2edd {
    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);
}

.dropdown-hard-2edd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown-hard-2edd strong {
    color: var(--warning-color);
}

/* Slots Section */
.menu-7aeb {
    padding: var(--section-padding);
}

.next_ac8a {
    margin: 2rem 0;
}

/* Table Games Section */
.backdrop_advanced_ae6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-bright-4354 {
    margin: 2rem 0;
}

.active-fixed-176f {
    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);
}

.active-fixed-176f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active-fixed-176f .lite-2375 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-fixed-176f .soft_3f59 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.dirty-1bbd {
    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);
}

.dirty-1bbd .article_dim_ae43 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.sort-acaf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-e37b {
    margin: 2rem 0;
}

.message_gold_e622 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_70fd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input_center_0a4c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dark_459e {
    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);
}

.dark_459e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.dark_459e.fn-active-ae45 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_69f4 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.active_533c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_533c strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.current-45a7 {
    padding: var(--section-padding);
}

.upper-f9b2 {
    margin: 2rem 0;
}

.secondary-orange-96b7 {
    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);
}

.secondary-orange-96b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .secondary-orange-96b7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.breadcrumb_70fa {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.description-628a {
    flex: 1;
}

.motion_a5d5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.fast_14c5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background_red_153b {
    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;
}

.tall_4b94 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accordion-d3e0 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.active_center_dc80 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.left-6bc5 {
    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;
}

.left-6bc5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filter-pink-22df {
    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);
}

.sidebar-dd84 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar-dd84 strong {
    color: var(--accent-color);
}

/* New Games Section */
.layout_new_3a6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_stone_5702 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture_stone_5702 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture_stone_5702 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty-d1c5 {
    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;
}

.dirty-d1c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article_92bf {
    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;
}

.short-91ec {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.liquid_7dd2 {
    font-size: 2rem;
}

.iron_4920 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.picture_8277 {
    flex: 1;
}

.banner_large_5599 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.header_4727 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.media-outer-1414 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.label-black-9d9f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.avatar-e7b3 {
    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;
}

.description-cold-2438 {
    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;
}

.description-cold-2438:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.outline_wood_5d98 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_8fd7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup-5a46 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .popup-5a46 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-cool-ccd4 {
    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);
}

.west-5c59 {
    color: var(--text-white);
    font-weight: 600;
}

.north_4dc9 {
    color: var(--accent-color);
    font-weight: 600;
}

.liquid_5fb0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.liquid_5fb0 strong {
    color: var(--accent-color);
}

/* Security Section */
.tertiary-warm-5eb2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.dropdown-over-1b3f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.photo-warm-228a {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.in-b926 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_3ade {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.simple_dfd9 {
    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) {
    .simple_dfd9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.simple_dfd9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.simple_dfd9 .iron_24a9 {
    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;
}

.simple_dfd9 .description_bc87 {
    flex: 1;
}

.simple_dfd9 .grid-clean-8b1a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.simple_dfd9 .image_copper_ceb0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.huge-7fd0 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge-7fd0 .hidden-orange-b60c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.huge-7fd0 .current-b04b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.huge-7fd0 .current-b04b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.huge-7fd0 .current-b04b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.logo_a454 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.feature-fixed-9934 {
    padding: var(--section-padding);
}

.solid_1d9f {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .solid_1d9f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-4e0c {
    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);
}

.steel-4e0c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.steel-4e0c .sidebar_17d7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel-4e0c .info-selected-6b40 {
    flex: 1;
}

.steel-4e0c .pro_77de {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel-4e0c .dirty-1eb1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table_073e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_073e .liquid-870e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_073e .dark-9d29 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.table_073e .dark-9d29 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);
}

.table_073e .dark-9d29 li:last-child {
    border-bottom: none;
}

.table_073e .dark-9d29 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;
}

.table_073e .dark-9d29 li strong {
    color: var(--text-white);
}

.backdrop-7279 {
    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);
}

.backdrop-7279 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop-7279 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.secondary-hovered-0669 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.motion-8015 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .motion-8015 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent_5257 {
    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_5257:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bottom-4111 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.title_93f4 {
    font-size: 2rem;
}

.video-medium-0ef5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pagination_inner_b220 {
    flex: 1;
}

.main_yellow_b3a0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_yellow_b3a0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.main_yellow_b3a0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.preview-down-41f9 {
    margin-top: 3rem;
}

.status-white-dbe0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.primary-d58e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent_2d75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent_2d75 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.accent_2d75 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.accent_2d75 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.feature-south-b007 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-13c0 {
    margin: 2rem 0;
}

.container-f815 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.container-f815 .layout_9bf3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-4363 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-4363 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.full-b861 {
    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);
}

.full-b861:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.narrow_8fcc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.logo-b40e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.in_c84a {
    padding: var(--section-padding);
}

.picture_0095 {
    margin: 2rem 0;
}

.warm-7e09 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .warm-7e09 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm-7e09 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_complex_cc47 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion_complex_cc47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.logo-mini-9d90 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.icon_1ede {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.module_right_1087 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.module_right_1087.tag_next_4bc8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.highlight-north-3991 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.item-5dec {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.element-0aef {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.link_69ac {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active_908c {
    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);
}

.active_908c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_908c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.media-ba76 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_e690 {
    margin: 2rem 0;
}

.pattern_a0e0 {
    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) {
    .pattern_a0e0 {
        flex-direction: column;
        gap: 1rem;
    }
}

.pattern_a0e0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pattern_a0e0::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);
}

.bright-78dd {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.component-de00 {
    flex: 1;
}

.short_54bf {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.simple_d14d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple_d14d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_west_3da3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-tall-0a50 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.element_1364 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .element_1364 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight_short_8cdb {
    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);
}

.small-1e0c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.frame_bright_18c8 {
    flex: 1;
}

.row-short-0edc {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.thumbnail-plasma-29cf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.banner-2e11 {
    margin-top: 2rem;
    text-align: center;
}

.hidden_98ee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hidden_98ee strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.full-e5e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-e5e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_hard_6bfc {
    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);
}

.button_hard_6bfc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.button_hard_6bfc .lower_546c {
    font-size: 2rem;
    flex-shrink: 0;
}

.button_hard_6bfc .picture_thick_049a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.button_hard_6bfc .action-2835 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.button_hard_6bfc .shade-7743 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.header-76a7 {
    padding: var(--section-padding);
}

.right-cd4d .notice_880d {
    flex: 1;
}

/* Promo Calendar Section */
.hero-simple-6756 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-simple-90af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-simple-90af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide-7fb5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left_f5b2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.background-9675 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.active_f4f0 {
    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);
}

.over_38c5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.background_cdd2 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.menu-bronze-5306 {
    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);
}

.menu-bronze-5306 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.menu-bronze-5306 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.caption_72de {
    padding: var(--section-padding);
}

.easy-6a99 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .easy-6a99 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status-837e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner_6801 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.complex_e5ec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex_e5ec li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-short-ccf9 {
    margin-top: 3rem;
}

.picture-short-ccf9 .status-white-dbe0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.picture-short-ccf9 .primary-d58e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-short-ccf9 .accent_2d75 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.picture-short-ccf9 .accent_2d75 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.picture-short-ccf9 .accent_2d75 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.picture-short-ccf9 .accent_2d75 li strong {
    color: var(--warning-color);
}

.motion-d505 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion-d505 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.pressed_32ab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny_819b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny_819b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_purple_19fc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_purple_19fc .layout_9bf3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.clean-9c1d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.red-6bc4 {
    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);
}

.red-6bc4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid-smooth-3786 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_copper_0eb2 {
    flex: 1;
}

.primary_cool_e446 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.link_green_cd26 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.sidebar-right-136a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.popup-bright-fb88 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-88f6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .component-88f6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_378c {
    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);
}

.preview_378c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lite-66e3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.up-de3b {
    color: var(--text-gray);
    font-size: 1rem;
}

.dropdown-rough-5eae {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_outer_9490 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tag_outer_9490 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.lite-444d { 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; }
.simple-899c, .silver_b92f { max-width:100%; height:auto; }

.accordion-1814, .yellow_d400, .disabled_8614 { white-space:normal; }

.advanced_4ad2,
.nav-orange-6a71,
.article_narrow_5011,
.full-e5e3,
.filter_9d44,
.link_1fb0 {
  flex-wrap:wrap;
}

[class*="grid"],
.component-88f6,
.warm-7e09,
.dropdown-fixed-11c5 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.thumbnail-48f8 img,
.nav-orange-6a71 img,
.wrapper_motion_d0b6 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.progress_old_30e7, .content-1083,
.left_a515, .progress_current_bb20 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.lite-0739 { width:100%; overflow-x:auto; }
.lite-0739 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.border-0a1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .border-0a1c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.smooth-8f6e {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.secondary_short_d640,
.blue-f464,
.blue-8b03,
.notice-left-dd55,
.stone_d449,
.component-88f6,
.warm-7e09,
.dropdown-fixed-11c5,
.mask-a925,
.upper-f9b2,
.border-0a1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .secondary_short_d640,
  .blue-f464,
  .blue-8b03,
  .notice-left-dd55,
  .stone_d449,
  .component-88f6,
  .warm-7e09,
  .dropdown-fixed-11c5,
  .mask-a925,
  .upper-f9b2,
  .border-0a1c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.hover_full_3d3f,
.grid_3e47,
.preview_378c,
.heading_brown_cbe6,
.accordion_complex_cc47,
.in_0cc5,
.secondary-orange-96b7,
.smooth-8f6e {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.light_9db2,
.widget-fast-86b1,
.nav_fc29 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.light_9db2 > *,
.widget-fast-86b1 > *,
.nav_fc29 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 26fc */
.promo-block-c5 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
