/* {$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;
}

.widget_hot_b721 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.lower_e629 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .lower_e629 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lower_e629 {
        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 */
.input-over-eac7 {
    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);
}

.paragraph-2f1b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .paragraph-2f1b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .stone_b606 {
        grid-column: 1;
    }
    
    .pattern_b0fb {
        grid-column: 2;
    }
    
    .lite_9e0b {
        grid-column: 3;
    }
}

.stone_b606 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.stone_b606:hover img {
    transform: scale(1.05);
}

/* Navigation */
.outline-fluid-9766 {
    display: none;
}

@media (min-width: 1024px) {
    .outline-fluid-9766 {
        display: block;
    }
}

/* Grouped Navigation */
.active-3e87 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.highlight_e459 {
    position: relative;
}

.selected-a81c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.highlight_e459 .yellow_4aa9 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.yellow_4aa9 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.detail-orange-cbc9 {
    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;
}

.detail-orange-cbc9:hover,
.detail-orange-cbc9.fn-active-eda4 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.notification-red-c635 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .notification-red-c635 {
        display: flex;
    }
}

/* Mobile Register Button */
.pattern_b0fb {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .pattern_b0fb {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.highlight-pressed-46c7 {
    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;
}

.highlight-pressed-46c7::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 */
.lite_9e0b {
    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) {
    .lite_9e0b {
        display: none;
    }
}

.lite_9e0b span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.lite_9e0b.fn-active-eda4 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lite_9e0b.fn-active-eda4 span:nth-child(2) {
    opacity: 0;
}

.lite_9e0b.fn-active-eda4 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.accordion_2c30 {
    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;
}

.accordion_2c30.fn-active-eda4 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.last-7649 {
    overflow: hidden;
}

.text_ef90 {
    list-style: none;
    padding: 0.75rem 0;
}

.description-c04c {
    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;
}

.description-c04c:hover,
.description-c04c.fn-active-eda4 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.description-c04c.liquid-dd13 {
    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;
}

.description-c04c.liquid-dd13::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 */
.container-right-cceb {
    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;
}

.medium_b6f7 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.medium_b6f7:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.motion_64d2 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.motion_64d2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.block-bf1f {
    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;
}

.block-bf1f:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.alert_bottom_ccf0 {
    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;
}

.active-prev-090f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.active-prev-090f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.mask_slow_6336 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.mask_slow_6336:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.paragraph_selected_af3a {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.paragraph_selected_af3a: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);
}

.backdrop_new_fef5 {
    font-size: 1em;
    font-weight: 700;
}

.shade-solid-ddd1 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.section-ecef {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.section-ecef::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;
}

.tertiary-4564 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tertiary-4564 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.left-1d63 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.brown-276e {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.picture-center-8693 {
    margin-bottom: 2rem;
}

.tiny_d1b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tiny_d1b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-4dda {
    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);
}

.white_a36f {
    font-size: 1.5rem;
}

.hard_bf30 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.paper-13df {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-3b83 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.icon-3b83:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hero-plasma-9652 {
    text-align: center;
    margin-bottom: 3rem;
}

.header-middle-6df5 {
    margin-bottom: 1rem;
}

.feature_right_9bfd {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.label_wood_2e55 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .label_wood_2e55 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .label_wood_2e55.section_8040 {
        direction: rtl;
    }
    
    .label_wood_2e55.section_8040 > * {
        direction: ltr;
    }
}

.description_last_d076 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.description_last_d076:first-child {
    margin-top: 0;
}

.prev-8b23 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.chip_5668 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.chip_5668:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.pressed_9fc4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed_9fc4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-hard-981c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.link_orange_9134 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero_glass_b49d {
    list-style: none;
}

.hero_glass_b49d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero_glass_b49d li:last-child {
    border-bottom: none;
}

/* Games Features */
.motion-0c59 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.caption-7849 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tiny-a8f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_f3aa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pagination_over_e379 {
    margin: 2rem 0;
}

.prev-4804 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.top_62ed {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.border_fixed_e7c2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.info-3249 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.block_14ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_14ec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-5970 {
    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);
}

.prev-5970:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.footer-lower-18b7 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pro-f426 {
    font-size: 1.5rem;
}

.highlight-hovered-7a09 {
    color: var(--accent-color);
    margin: 0;
}

.picture_thick_59fa {
    list-style: none;
}

.picture_thick_59fa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.picture_thick_59fa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.banner_clean_7cf9 {
    margin: 2rem 0;
}

.box-174e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.aside-ca51 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .aside-ca51 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-wood-a075 {
    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);
}

.header_clean_4a48 {
    font-size: 1.25rem;
}

.black_3fdd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.content-iron-cd39,
.texture-south-5ef9 {
    text-align: center;
    margin: 2rem 0;
}

.menu-copper-e02b,
.photo_upper_8f61 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.table_9d11 {
    margin: 2rem 0;
    text-align: center;
}

.detail-815e {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-815e::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;
}

.upper-128d {
    position: relative;
    z-index: 1;
}

.thumbnail-168c {
    margin-bottom: 1rem;
}

.orange_06a9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-dirty-3d06 {
    margin-bottom: 3rem;
}

.picture_074e {
    margin-top: 3rem;
}

.alert_fixed_b4ca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .alert_fixed_b4ca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_fixed_b4ca .west-4dda {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.static-7609 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_first_9931 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.carousel-hard-b522 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.action-a0ea {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .action-a0ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .action-a0ea {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.iron-9df1 {
    margin-bottom: 1rem;
}

.menu-iron-0621 img {
    margin-bottom: 1rem;
}

.header_2b29 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-down-49a6 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tabs_49b1 {
    list-style: none;
}

.tabs_49b1 li {
    margin-bottom: 0.5rem;
}

.tabs_49b1 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tabs_49b1 a:hover {
    color: var(--accent-color);
}

.gas_0c14 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar-6ebc {
    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);
}

.sidebar-6ebc:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.breadcrumb_liquid_85e9 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.breadcrumb_liquid_85e9 p {
    margin-bottom: 0.25rem;
}

.steel-ef9c {
    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) {
    .steel-ef9c {
        flex-direction: row;
    }
}

.item_df8b {
    text-align: center;
}

@media (min-width: 768px) {
    .item_df8b {
        text-align: left;
    }
}

.item_df8b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero_static_3430 {
    font-size: 0.75rem !important;
}

.preview_a3c7 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.progress-081b {
    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);
    }
}

.pattern_action_8473 {
    animation: fadeInUp 0.6s ease-out;
}

.accordion-b10e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.backdrop_aed5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_aed5 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.large_52c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large_52c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_smooth_4a23 {
    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);
}

.popup_smooth_4a23 .tiny-a8f9 {
    font-size: 1.25rem;
}

.popup_smooth_4a23 .thick-21d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.button_hovered_b97a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button_hovered_b97a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_1a33 {
    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);
}

.plasma_1a33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown-4ff2 {
    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);
}

.layout-5975 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.progress_complex_d72b {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft_9bfa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.full_ea69 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.full_ea69 .card_f3aa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.full_ea69 .section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black_a858 {
    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);
}

.down_3208 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.down_3208 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.down_3208 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.modal_01d3 {
    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);
}

.module-5fcd {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fixed-5416 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fixed-5416 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fixed-5416 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);
}

.fixed-5416 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fixed-5416 input::placeholder {
    color: var(--text-muted);
}

.tabs_selected_3cb8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.text_f32d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.text_f32d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.west-15a6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.west-15a6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.aside-ca51 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-ca51 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-wood-a075 {
    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);
}

.title-wood-a075 .header_clean_4a48 {
    font-size: 1.25rem;
}

.title-wood-a075 .black_3fdd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.right_a38d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_4e51 {
    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);
}

.liquid_4e51 .tiny-a8f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid_4e51 .card_f3aa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid_4e51 .section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-lite-bb4e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-6594 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-6594 .label_ac69 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-6594 .description-hard-fa12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_72bf {
    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);
}

.info_large_47b9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info_large_47b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_tall_770c {
    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);
}

.aside_tall_770c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark_ddf8 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.content-active-b0a6 {
    flex: 1;
}

.sort-1a8d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dirty-e16b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.easy-178a {
    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);
}

.easy-178a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.gas_3105 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas_3105 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-bf1d {
    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);
}

.hidden-bf1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort_5166 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cold-0e9e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-top-a665 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.frame-clean-91ae {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.north-836a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large-8617 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-5272 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice-5272 .panel-996e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice-5272 .in_1b5e {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall_ef86 {
    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);
}

.link_outer_dc27 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.silver-68c9 {
    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);
}

.silver-68c9 .tiny-a8f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver-68c9 .card_f3aa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.silver-68c9 .section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-a504 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-a504 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info_glass_80fa {
    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);
}

.info_glass_80fa:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.preview-3eeb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-3eeb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-rough-8ce3 {
    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);
}

.info-rough-8ce3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture_hard_ae06 {
    font-size: 2rem;
    flex-shrink: 0;
}

.top_ef87 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.top_62ed {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.yellow_9cfb {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.west-f1ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-6d2c {
    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);
}

.popup-6d2c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-16d7 {
    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);
}

.gradient-gas-4c21 {
    flex: 1;
}

.under-a38f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.smooth-60c3 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.shadow-0741 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row_south_c5e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_down_0cd0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_down_0cd0 .label_ac69 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden_down_0cd0 .description-hard-fa12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-south-5ef9 {
    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);
}

.basic-84e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic-84e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.accent-yellow-578a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-yellow-578a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-smooth-838f {
    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);
}

.video-smooth-838f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-f507 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_first_e77e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown_short_1151 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.photo_cb65 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline-west-26b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper_5764 {
    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);
}

.advanced-6d52 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-0f15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title-6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_outer_dc27 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.silver-68c9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.silver-68c9 .card_f3aa {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.silver-68c9 .section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_short_8a7b {
    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);
}

.top_10fc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .top_10fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .top_10fc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-solid-3e45 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-solid-3e45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-outer-012c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focused-301b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dim_1d57 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.pagination-soft-011e {
    padding: 1.5rem;
}

.hovered-d629 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.new-29a6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-29a6 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;
}

.new-29a6 li:last-child {
    border-bottom: none;
}

.new-29a6 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.menu-a3e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-a3e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-b4c5 {
    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);
}

.blue-b4c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old-83c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout-dynamic-27f6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification_inner_e288 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shade-hot-9d57 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort-ea39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-bright-3f68 {
    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);
}

.frame_inner_f602 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_clean_c338 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_glass_342f {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-614f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.chip_a8ea {
    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);
}

.right-b07f {
    text-align: center;
}

.center-440b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-d2e3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.frame_soft_c926 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-new-5fa9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-new-5fa9 .card_f3aa {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip-new-5fa9 .section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_3023 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .main_3023 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main_3023 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_lower_2536 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element_lower_2536:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_next_100f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.accent-wide-1495 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card_f3aa {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tabs_ceb6 {
    padding: 1.5rem;
}

.section-upper-6f97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-cool-c0aa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-cool-c0aa 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;
}

.module-cool-c0aa li:last-child {
    border-bottom: none;
}

.module-cool-c0aa li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.short-bafc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.button_8a8a {
    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_8a8a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-f137 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static-2284 {
    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);
}

.brown-4ff2 {
    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;
}

.layout-5975 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_complex_d72b {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-5c34 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_c813 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.old_0514 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown-35cb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.white-99d3 {
    display: flex;
    gap: 1rem;
}

.white-99d3 .message_lite_0585 {
    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;
}

.cold_8507 {
    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);
}

.pro-7554 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.button-over-09ba {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button-over-09ba 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;
}

.button-over-09ba li:last-child {
    border-bottom: none;
}

.button-over-09ba li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.nav-2f3b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .nav-2f3b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-2f3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-68dc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.container-68dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle_2747 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-in-b2c5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.panel-996e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.in-4b38 {
    font-size: 1rem;
}

.panel_cdd7 {
    padding: 1.5rem;
}

.in_1b5e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.mask_be34 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.mask_be34 .right-b07f {
    text-align: center;
}

.mask_be34 .feature-d2e3 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.mask_be34 .form-soft-2455 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.huge_d44f {
    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);
}

.huge_d44f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.module_0c9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_0c9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-out-b24c {
    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);
}

.wrapper-out-b24c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_prev_6d89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-gas-8d39 {
    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);
}

.warm_33e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_full_dd79 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.prev_c282 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone_2254 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pressed_5e1d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-2f9c {
    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);
}

.table_last_f4a1 {
    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;
}

.table_last_f4a1.table-first-fa16 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.table_last_f4a1.new_8634 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.table_last_f4a1.soft-67e2 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.table_last_f4a1.tertiary_e98e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.table_last_f4a1.first-acae {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.main-cold-4398 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_09cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-action-4184 {
    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);
}

.tertiary_wood_ca5c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table-lite-bb4e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-lite-bb4e 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;
}

.table-lite-bb4e li:last-child {
    border-bottom: none;
}

.table-lite-bb4e li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.video-2463 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-2463 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-2463 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_2364 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.avatar_2364:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_2364.block-out-6135 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .avatar_2364.block-out-6135 {
        grid-column: span 3;
    }
}

.active_under_4f93 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.avatar_2364.block-out-6135 .active_under_4f93 {
    background: rgba(6, 182, 212, 0.1);
}

.over_e1ee {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tooltip_action_58eb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.avatar_2364.block-out-6135 .tooltip_action_58eb {
    color: var(--info-color);
}

.row_north_f2f2 {
    padding: 1.5rem;
    text-align: center;
}

.paragraph-6a7c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.avatar_2364.block-out-6135 .paragraph-6a7c {
    color: var(--info-color);
}

.paragraph_right_6fab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.notification-dark-663f {
    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 */
.element_basic_22f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_basic_22f8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-afec {
    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);
}

.filter-afec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-2d19 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_4e51 {
    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);
}

.header_clean_4a48 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-7bcb {
    flex: 1;
}

.box-174e {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-hard-a27c {
    color: var(--text-gray);
    line-height: 1.6;
}

.in_55f4 {
    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);
}

.badge_4101 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.liquid_9ee1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.progress-081b {
    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);
}

.soft_9d1f {
  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);
}

.soft_9d1f .right-b07f {
    text-align: center;
}

.soft_9d1f .center-440b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.soft_9d1f .feature-d2e3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.silver-3e95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_f15d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-clean-6b92 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lite_50ed {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-6a49 {
    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);
}

.feature-8405 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_948e {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-outer-97aa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .container-outer-97aa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container-outer-97aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-aee5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview-aee5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-7f5b {
    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);
}

.gradient-north-f71d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.detail-steel-7bdc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.message-focused-d038 {
    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-focused-d038.input_active_d87f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.message-focused-d038.gradient-4e62 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.message-focused-d038.out-348a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.alert_f7db {
    padding: 1.5rem;
    text-align: center;
}

.overlay_7cd3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mask-0dd5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mask-0dd5 .outline_purple_9df7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.lite-253e {
    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);
}

.lite-253e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.bronze-8cb1 {
  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);
}

.primary_glass_4f5e {
    text-align: center;
}

.primary_glass_4f5e .center-440b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.primary_glass_4f5e .feature-d2e3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.black_8baa { text-align: center; }
.label_062e { text-align: left; }
.notification-1a52 { text-align: right; }

.small_f9ca { margin-bottom: 0; }
.thumbnail-8567 { margin-bottom: 0.5rem; }
.liquid-65eb { margin-bottom: 1rem; }
.detail_bc01 { margin-bottom: 1.5rem; }
.wide-6815 { margin-bottom: 2rem; }

.button-simple-604e { margin-top: 0; }
.brown-1d69 { margin-top: 0.5rem; }
.motion_33c1 { margin-top: 1rem; }
.image_static_1d56 { margin-top: 1.5rem; }
.cool_48b8 { margin-top: 2rem; }

.fn-hidden-eda4 { display: none; }
.fn-visible-eda4 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .section-ecef {
        padding: 6rem 0 3rem;
    }
    
    .tertiary-4564 {
        text-align: center;
    }
    
    .label_wood_2e55 {
        text-align: center;
    }
    
    .tiny_d1b5 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .input-over-eac7,
    .accordion_2c30,
    .detail-815e,
    .carousel-hard-b522 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-ecef {
        background: none;
    }
}

/* Providers Section */
.stale_3afe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_57a8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort_57a8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_57a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-9a84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-9a84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hot-856f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.main-b82a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.secondary-west-21f3 {
    list-style: none;
    padding: 0;
}

.secondary-west-21f3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.secondary-west-21f3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wide-779e {
    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);
}

.wide-779e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.search_orange_4bd0 {
    padding: var(--section-padding);
}

.image-9587 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-9587 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_3f65 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort_3f65:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blue-7cdc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.media_6f93 {
    display: flex;
    flex-direction: column;
}

.shade_bc69 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.sort_4ddc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.in_3228 {
    color: var(--accent-color);
}

.pagination-over-da62 {
    font-size: 1.25rem;
}

.green_26fd {
    margin-bottom: 1rem;
}

.green_26fd p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.full-e0ca {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accent-ce30 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.right-b07f {
    text-align: center;
}

.center-440b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-d2e3 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.article_51d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper-7e72 {
    margin: 2rem 0;
}

.media_0423 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.media_0423 .tiny-a8f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west_9a8c {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.breadcrumb_322b {
    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;
}

.breadcrumb_322b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-b488 {
    font-size: 2rem;
}

.notification_simple_768a {
    display: flex;
    flex-direction: column;
}

.pink_c4e5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.form_eef2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.section_63b2 {
    padding: var(--section-padding);
}

.large-77a1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .large-77a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .large-77a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_303c {
    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);
}

.container_303c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.container_303c .center-440b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.container_303c .feature-d2e3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.container_303c .message-down-d064 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.paragraph_current_c3cb {
    margin-top: 4rem;
}

.active-0e7d {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.alert_5ca6 {
    overflow-x: auto;
}

.breadcrumb_steel_3611 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.breadcrumb_steel_3611 thead {
    background: var(--accent-color);
}

.breadcrumb_steel_3611 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.breadcrumb_steel_3611 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_steel_3611 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.breadcrumb_steel_3611 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hidden_slow_5620 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_848b {
    max-width: 900px;
    margin: 0 auto;
}

.blue_685e {
    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);
}

.blue_685e:hover {
    border-color: var(--accent-color);
}

.title-5077 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.title-5077 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.secondary_811f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.blue_685e.fn-active-eda4 .secondary_811f {
    transform: rotate(45deg);
}

.active_9f61 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.blue_685e.fn-active-eda4 .active_9f61 {
    max-height: 1000px;
}

.active_9f61 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.focus_upper_b689 {
    padding: var(--section-padding);
}

.down_3208 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.background-0394 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_copper_225f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_copper_225f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel-north-f1cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-763b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-c747 {
    font-size: 2rem;
}

.chip-9a3f {
    color: var(--text-white);
    margin: 0;
}

.hover-focused-3909 {
    list-style: none;
    padding: 0;
}

.hover-focused-3909 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-focused-3909 li:last-child {
    border-bottom: none;
}

.accordion-first-2b8e {
    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);
}

.accordion-first-2b8e p {
    color: var(--success-color);
    margin: 0;
}

.soft-579a {
    margin-top: 3rem;
}

.pro-7554 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hard-6a39 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard-6a39 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dim-0df7 {
    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);
}

.outline-e6c5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dim-0df7 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.avatar_631a {
    padding: var(--section-padding);
}

.pressed_c6cc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed_c6cc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_paper_8bb4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_paper_8bb4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pattern-hot-5c2b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.banner_dcfb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.message_15dd {
    flex: 1;
}

.fluid-561b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.thumbnail_1744 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.smooth-9cce {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_full_762d {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main_full_762d:last-child {
    border-bottom: none;
}

/* Comparison Section */
.row-fresh-103e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.grid_f3fc {
    padding: var(--section-padding);
}

.button-slow-f572 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.primary-700d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-700d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_plasma_bb2b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex-1b0c, .text_pink_bffc, .thumbnail-soft-62e1 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.thumbnail-soft-62e1 {
    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 */
.progress-b484 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_narrow_d205 {
    margin: 2rem 0;
}

.list_9bf8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-df99 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outline-a48d {
    list-style: none;
    padding: 0;
}

.outline-a48d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.outline-a48d li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.outline-a48d li:last-child {
    border-bottom: none;
}

.east-cbb0 {
    text-align: center;
    margin-top: 2rem;
}

.action_bb9c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tooltip_c688 {
    padding: var(--section-padding);
}

.tag-5359 {
    margin: 2rem 0;
}

.element_9464 {
    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) {
    .element_9464 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.element_9464:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.red-cf12 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.preview_stone_96b6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.footer_simple_4850 {
    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;
}

.active-stone-bd86 {
    flex: 1;
}

.tertiary-b68e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.component-f081 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.search_79e8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.prev-bd7f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .prev-bd7f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.aside_3660 {
    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);
}

.aside_3660:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_3660 .center-440b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_3660 .feature-d2e3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tooltip_bright_79d3 {
    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);
}

.logo_copper_6bb7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.logo_copper_6bb7 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.motion-9d15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .motion-9d15 {
        grid-template-columns: 1fr 1fr;
    }
}

.main-7694 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_bright_147e {
    margin-bottom: 1.5rem;
}

.main_bright_147e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.main_bright_147e input,
.main_bright_147e 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;
}

.main_bright_147e input:focus,
.main_bright_147e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.next_772b {
    width: 100%;
    margin-top: 1rem;
}

.form-next-db13 {
    display: flex;
    align-items: center;
}

.menu-medium-23e6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.surface-6f10 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.outline_bottom_4385 {
    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;
}

.form_5caa {
    color: var(--text-gray);
}

.hero_0f65 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.paper_1ab4 {
    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);
}

.paper_1ab4 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.gradient_8c0b {
    margin-top: 3rem;
}

.gradient_e602 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.footer_lite_9f6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-motion-7804 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.outer_11cf {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outer_11cf:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.progress-soft-b3dd {
    padding: var(--section-padding);
}

.detail-top-2382 {
    margin: 2rem 0;
}

.middle-30d6 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer_plasma_3c8a {
    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;
}

.footer_plasma_3c8a:hover, .footer_plasma_3c8a.fn-active-eda4 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.module-9f48 {
    display: none;
}

.module-9f48.fn-active-eda4 {
    display: block;
}

.block_6943 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_bronze_8622 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shadow-cede h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.shadow-cede ul {
    list-style: none;
    padding: 0;
}

.shadow-cede ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.shadow-cede ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.yellow-523d {
    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 */
.disabled_cold_da37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip-new-7d11 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal_7883 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stone-c1d2 {
    color: var(--accent-color);
    margin: 0;
}

.purple_9d7c {
    display: flex;
    gap: 1.5rem;
}

.badge-out-3933 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.iron-68e7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.highlight_49cc {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight_49cc.plasma_0619 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.highlight_49cc.slow-6361 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.highlight_49cc.alert_36c6 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.wrapper_76eb {
    margin-top: 2rem;
}

.blue-6d92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.solid_b6ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .solid_b6ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-3983 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.solid_0521 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.prev-d2c7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.icon_dark_555e {
    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 */
.section_0f71 {
    padding: var(--section-padding);
}

.notification_cbe7 {
    margin: 2rem 0;
}

.tag_lite_1fe4 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.light-7e19 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.texture-dark-23e1 {
    list-style: none;
    padding: 0;
}

.texture-dark-23e1 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;
}

.texture-dark-23e1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.texture-dark-23e1 li:last-child {
    border-bottom: none;
}

.icon-clean-d946 {
    margin: 2rem 0;
}

.west-4fae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tiny_b4f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tiny_b4f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-d39c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-lower-364b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row-glass-1f3e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.inner-396a {
    margin-top: 2rem;
}

.sort-1a8d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.status_plasma_021e {
    list-style: none;
    padding: 0;
}

.slider-left-484a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.slider-left-484a a {
    color: var(--accent-color);
    text-decoration: none;
}

.slider-left-484a a:hover {
    text-decoration: underline;
}

.section_silver_838c {
    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 */
.progress_5406 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-6031 {
    margin: 2rem 0;
}

.dark_16f2 {
    margin-bottom: 3rem;
}

.dark_16f2 .modal-df99 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pink_2dec {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-thick-942d {
    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);
}

.feature-thick-942d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.icon_ecc3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .icon_ecc3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-e6d4 {
    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 */
.purple-2b6a {
    padding: var(--section-padding);
}

.video_e01b {
    margin: 2rem 0;
}

.grid_stale_a270 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wrapper-edeb {
    overflow-x: auto;
    margin: 2rem 0;
}

.secondary-fresh-ef88 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.background_simple_a40f {
    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;
}

.smooth-23cc {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.layout_stone_7a0e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .layout_stone_7a0e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-mini-85dc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-mini-85dc .tiny-a8f9 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pattern-mini-85dc .card_f3aa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_53be {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.medium_0071 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_17bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_17bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_3877 {
    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;
}

.alert_3877:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.input_pro_1145 {
    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);
}

.gradient_2d5b {
    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;
}

.shade_4254 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero_cf59 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.clean_1230 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.north_d4e5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.next_9765 {
    color: var(--text-white);
    font-weight: 600;
}

.shade_white_ac3d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active-ca73 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.active-ca73 .message_lite_0585 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notice-5a6a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-5a6a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-next-6535 {
    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);
}

.dropdown-next-6535:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown-next-6535 .center-440b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown-next-6535 .feature-d2e3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.wrapper-acbe {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_6f74 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.info_6f74 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.outline-west-26b1 {
    margin: 2rem 0;
}

.copper_5764 {
    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);
}

.copper_5764:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.advanced-6d52 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.east_4ea4 {
    flex: 1;
}

.table-0f15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title-6d02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.link_outer_dc27 {
    margin: 2rem 0;
}

.silver-68c9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-68c9 .card_f3aa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.silver-68c9 .section-upper-6f97 {
    color: var(--text-gray);
    margin: 0;
}

.notice_short_8a7b {
    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);
}

.notice_short_8a7b .menu-copper-e02b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.border_53be {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.overlay-16d7 {
    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;
}

.gradient-gas-4c21 {
    flex: 1;
}

.smooth-60c3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.shadow-0741 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.brown-4ff2 {
    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;
}

.background-down-e7be {
    flex: 1;
}

.layout-5975 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.progress_complex_d72b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.old_0514 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.dropdown-35cb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.white-99d3 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.white-99d3 .message_lite_0585 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cold_8507 {
    margin-top: 2rem;
}

.cold_8507 .pro-7554 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.current-3cd7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_a8ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip_a8ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_a8ea .right-b07f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_soft_c926 {
    margin: 2rem 0;
}

.chip-new-5fa9 {
    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 */
.media_b24b {
    padding: var(--section-padding);
}

.tabs_ceb6 {
    margin-top: 1rem;
}

.module-cool-c0aa {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.module-cool-c0aa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.module-cool-c0aa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.preview_prev_ecbd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_down_b2b7 {
    margin: 2rem 0;
}

.column-4d2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.white_27c7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pro-0f2f {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.middle_0c75 {
    margin: 2rem 0;
}

.paper-4553 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.paper-4553 .modal-df99 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first-9f17 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .first-9f17 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.easy_3c8b {
    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);
}

.clean-e3ce {
    color: var(--text-white);
    font-weight: 600;
}

.accordion-ac1d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.wrapper_silver_5cdd {
    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);
}

.wrapper_silver_5cdd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.banner-smooth-97c0 {
    padding: var(--section-padding);
}

.left-d5b2 {
    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;
}

.left-d5b2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.notice_f36f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice_f36f .outline-e6c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_f36f .table_cd9a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.label-prev-8c96 {
    flex: 1;
}

.widget_382f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.yellow_e64f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yellow_e64f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.yellow_e64f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.popup_6657 {
    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);
}

.popup_6657 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup_6657 strong {
    color: var(--warning-color);
}

/* Slots Section */
.menu-hard-b6fb {
    padding: var(--section-padding);
}

.north-836a {
    margin: 2rem 0;
}

/* Table Games Section */
.badge-bca2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-8617 {
    margin: 2rem 0;
}

.notice-5272 {
    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);
}

.notice-5272:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notice-5272 .panel-996e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice-5272 .in_1b5e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tall_ef86 {
    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);
}

.tall_ef86 .menu-copper-e02b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.avatar_6a9b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_d9ae {
    margin: 2rem 0;
}

.component_fa7e {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_b35f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture_fdd3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-mini-52d9 {
    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);
}

.status-mini-52d9:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.status-mini-52d9.fn-active-eda4 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown_8e45 {
    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);
}

.center-9dbd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center-9dbd strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.pattern_fe40 {
    padding: var(--section-padding);
}

.text-8977 {
    margin: 2rem 0;
}

.list_huge_7bcf {
    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);
}

.list_huge_7bcf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .list_huge_7bcf {
        flex-direction: column;
        align-items: flex-start;
    }
}

.surface-purple-0018 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.feature-steel-4eb3 {
    flex: 1;
}

.search_8a17 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dropdown-north-e563 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.avatar-pro-f034 {
    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;
}

.iron-0afc {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.in-9ae2 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.surface_smooth_b4c5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.south-c816 {
    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;
}

.south-c816:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.menu_c831 {
    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);
}

.in-e948 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in-e948 strong {
    color: var(--accent-color);
}

/* New Games Section */
.bottom_1f93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_627d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box_627d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box_627d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_top_6205 {
    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;
}

.content_top_6205:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element_dark_d0da {
    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;
}

.box-e997 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.video-rough-7416 {
    font-size: 2rem;
}

.brown-b24e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.warm-72d6 {
    flex: 1;
}

.sidebar-selected-f787 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.message-72aa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.last_f8ba {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bronze-f4a1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.orange-9c58 {
    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;
}

.left-18a6 {
    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;
}

.left-18a6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.red_a4d6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_mini_4b94 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slow-7ea9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .slow-7ea9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outer_8d2a {
    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);
}

.last_9583 {
    color: var(--text-white);
    font-weight: 600;
}

.block-next-2b84 {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-copper-4bd5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.nav-copper-4bd5 strong {
    color: var(--accent-color);
}

/* Security Section */
.photo_f035 {
    padding: var(--section-padding);
}

/* Benefits Section */
.selected-0818 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.light-7fe8 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pagination-9488 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_483c {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.container-orange-7598 {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .container-orange-7598 {
        flex-direction: column;
        gap: 1rem;
    }
}

.container-orange-7598:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container-orange-7598 .brown-4ff2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.container-orange-7598 .background-down-e7be {
    flex: 1;
}

.container-orange-7598 .layout-5975 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.container-orange-7598 .progress_complex_d72b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sort-over-c00e {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-over-c00e .box-174e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-over-c00e .right_a38d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-over-c00e .right_a38d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sort-over-c00e .right_a38d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.search_3df6 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.right-4ad3 {
    padding: var(--section-padding);
}

.picture-e4d6 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .picture-e4d6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered_f3bc {
    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);
}

.hovered_f3bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.hovered_f3bc .current-ba09 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered_f3bc .new_384f {
    flex: 1;
}

.hovered_f3bc .label_ac69 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hovered_f3bc .surface_eec1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert-advanced-8168 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-advanced-8168 .left_2537 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert-advanced-8168 .modal-fd5c {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.alert-advanced-8168 .modal-fd5c 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);
}

.alert-advanced-8168 .modal-fd5c li:last-child {
    border-bottom: none;
}

.alert-advanced-8168 .modal-fd5c 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;
}

.alert-advanced-8168 .modal-fd5c li strong {
    color: var(--text-white);
}

.nav_dynamic_0c2d {
    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);
}

.nav_dynamic_0c2d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_dynamic_0c2d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.table-clean-9b9b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-silver-2029 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .avatar-silver-2029 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-upper-a116 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main-upper-a116:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.status-hot-d398 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-8c6d {
    font-size: 2rem;
}

.card_0143 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.right-f9aa {
    flex: 1;
}

.tall_ef89 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tall_ef89 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tall_ef89 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wide-3df3 {
    margin-top: 3rem;
}

.tag_lite_1fe4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.light-7e19 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture-dark-23e1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texture-dark-23e1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.texture-dark-23e1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.texture-dark-23e1 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.dynamic-06f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_over_a8a9 {
    margin: 2rem 0;
}

.disabled_9213 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.disabled_9213 .modal-df99 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_eff5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .highlight_eff5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.clean_6db1 {
    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);
}

.clean_6db1:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.component_350d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.under-b357 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.tag_full_cbab {
    padding: var(--section-padding);
}

.steel-ad4f {
    margin: 2rem 0;
}

.background-clean-7158 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .background-clean-7158 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .background-clean-7158 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-liquid-80ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.nav-liquid-80ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.last_957d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.badge-black-38f4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.hidden-warm-48f1 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hidden-warm-48f1.next-c511 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.text-bottom-76de {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.stone_f2f1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.blue_8772 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.middle_e8e3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image_advanced_ff1b {
    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);
}

.image_advanced_ff1b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_advanced_ff1b strong {
    color: var(--accent-color);
}

/* Update Log Section */
.element-fc3e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-ea48 {
    margin: 2rem 0;
}

.thumbnail-8684 {
    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) {
    .thumbnail-8684 {
        flex-direction: column;
        gap: 1rem;
    }
}

.thumbnail-8684:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.thumbnail-8684::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);
}

.background_orange_075e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.dim-5750 {
    flex: 1;
}

.tag_upper_92b6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chip-orange-8215 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-orange-8215 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.active_b9f3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_motion_bbe0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal_current_574c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal_current_574c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-e58d {
    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);
}

.hidden_steel_84f3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row-f14c {
    flex: 1;
}

.tooltip-5a89 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.button_paper_5ba7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lite-5693 {
    margin-top: 2rem;
    text-align: center;
}

.pagination-1f2b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pagination-1f2b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.module_0c9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_0c9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-out-b24c {
    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);
}

.wrapper-out-b24c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wrapper-out-b24c .old-83c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-out-b24c .layout-dynamic-27f6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.wrapper-out-b24c .notification_inner_e288 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.wrapper-out-b24c .shade-hot-9d57 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.panel-lower-0062 {
    padding: var(--section-padding);
}

.active-gas-8d39 .paragraph_simple_c22d {
    flex: 1;
}

/* Promo Calendar Section */
.north_319b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_north_bff8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_north_bff8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_d140 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-3e1c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.container-e25d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accent-prev-aa5f {
    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);
}

.preview-fast-374d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.smooth_9ceb {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.description-f505 {
    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);
}

.description-f505 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description-f505 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.container_yellow_274e {
    padding: var(--section-padding);
}

.section-fixed-2756 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .section-fixed-2756 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_04fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_f433 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item_liquid_9813 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item_liquid_9813 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-2a23 {
    margin-top: 3rem;
}

.dropdown-2a23 .tag_lite_1fe4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dropdown-2a23 .light-7e19 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-2a23 .texture-dark-23e1 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dropdown-2a23 .texture-dark-23e1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dropdown-2a23 .texture-dark-23e1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dropdown-2a23 .texture-dark-23e1 li strong {
    color: var(--warning-color);
}

.mini-5d88 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mini-5d88 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.detail_f529 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus_silver_f350 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_silver_f350 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_4aa1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_4aa1 .modal-df99 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.widget_94d6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pattern-bright-85eb {
    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);
}

.pattern-bright-85eb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dropdown_large_11c9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down_fb17 {
    flex: 1;
}

.out_3822 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.border_bba7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.inner-4023 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.new_8d57 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.badge-a996 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .badge-a996 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_4f03 {
    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);
}

.large_4f03:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden-dynamic-0455 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover-54bc {
    color: var(--text-gray);
    font-size: 1rem;
}

.logo_copper_6bb7 {
    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);
}

.yellow_680d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.yellow_680d strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.lower_e629 { 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; }
.icon-3b83, .chip_5668 { max-width:100%; height:auto; }

.container-right-cceb, .block-bf1f, .alert_bottom_ccf0 { white-space:normal; }

.tertiary-4564,
.label_wood_2e55,
.element_basic_22f8,
.module_0c9b,
.link_outer_dc27,
.container-outer-97aa {
  flex-wrap:wrap;
}

[class*="grid"],
.badge-a996,
.background-clean-7158,
.alert_fixed_b4ca {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.section-ecef img,
.label_wood_2e55 img,
.paper-13df img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.left-1d63, .brown-276e,
.header-middle-6df5, .feature_right_9bfd {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.alert_5ca6 { width:100%; overflow-x:auto; }
.alert_5ca6 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.sort_57a8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .sort_57a8 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.wrapper-9a84 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.large-77a1,
.frame_medium_c362,
.wide_efee,
.grid-stone-4f85,
.prev-bd7f,
.badge-a996,
.background-clean-7158,
.alert_fixed_b4ca,
.bronze-8cb1,
.text-8977,
.sort_57a8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .large-77a1,
  .frame_medium_c362,
  .wide_efee,
  .grid-stone-4f85,
  .prev-bd7f,
  .badge-a996,
  .background-clean-7158,
  .alert_fixed_b4ca,
  .bronze-8cb1,
  .text-8977,
  .sort_57a8 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.container_303c,
.aside_3660,
.large_4f03,
.west-4dda,
.nav-liquid-80ec,
.primary_glass_4f5e,
.list_huge_7bcf,
.wrapper-9a84 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.info_40bc,
.popup_wood_ffce,
.fast-74b4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.info_40bc > *,
.popup_wood_ffce > *,
.fast-74b4 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: afd3 */
.widget-item-o7 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.2;
}
