/* {$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;
}

.message-in-e2d1 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.picture-a365 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .picture-a365 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .picture-a365 {
        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 */
.list-motion-7285 {
    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);
}

.accordion-65e6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .accordion-65e6 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .texture-slow-7535 {
        grid-column: 1;
    }
    
    .lite-c043 {
        grid-column: 2;
    }
    
    .full_9d20 {
        grid-column: 3;
    }
}

.texture-slow-7535 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.texture-slow-7535:hover img {
    transform: scale(1.05);
}

/* Navigation */
.focus-steel-e287 {
    display: none;
}

@media (min-width: 1024px) {
    .focus-steel-e287 {
        display: block;
    }
}

/* Grouped Navigation */
.menu-6c5b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.list_1feb {
    position: relative;
}

.large-7929 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.list_1feb .logo-3c2b {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.logo-3c2b {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.element-hot-e706 {
    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;
}

.element-hot-e706:hover,
.element-hot-e706.fn-active-6494 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.small-d6aa {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .small-d6aa {
        display: flex;
    }
}

/* Mobile Register Button */
.lite-c043 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .lite-c043 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.notice_ce36 {
    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;
}

.notice_ce36::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 */
.full_9d20 {
    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) {
    .full_9d20 {
        display: none;
    }
}

.full_9d20 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.full_9d20.fn-active-6494 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.full_9d20.fn-active-6494 span:nth-child(2) {
    opacity: 0;
}

.full_9d20.fn-active-6494 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.current_7c30 {
    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;
}

.current_7c30.fn-active-6494 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.heading_active_a6ef {
    overflow: hidden;
}

.focused-e390 {
    list-style: none;
    padding: 0.75rem 0;
}

.easy_f0c0 {
    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;
}

.easy_f0c0:hover,
.easy_f0c0.fn-active-6494 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.easy_f0c0.accent_liquid_dc21 {
    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;
}

.easy_f0c0.accent_liquid_dc21::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 */
.hot_17d5 {
    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;
}

.search_under_b861 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.search_under_b861:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.column-b00a {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.column-b00a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.active_969d {
    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;
}

.active_969d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.tooltip-fd90 {
    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;
}

.glass_0978 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.glass_0978:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hard-9056 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hard-9056:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.grid_soft_e437 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.grid_soft_e437: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);
}

.tiny_8a18 {
    font-size: 1em;
    font-weight: 700;
}

.border_b4fc {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.thumbnail-narrow-fc24 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.thumbnail-narrow-fc24::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;
}

.item-pressed-9e3b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item-pressed-9e3b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.sort_west_5977 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.icon-c56b {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.message-gold-e7f3 {
    margin-bottom: 2rem;
}

.fixed-b276 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fixed-b276 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_huge_318f {
    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);
}

.shadow_e53c {
    font-size: 1.5rem;
}

.slider_f363 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.alert-8701 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.secondary-static-1502 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.secondary-static-1502:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.icon_2dc4 {
    text-align: center;
    margin-bottom: 3rem;
}

.backdrop-b09e {
    margin-bottom: 1rem;
}

.wide-3597 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.first_a361 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .first_a361 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .first_a361.picture_1261 {
        direction: rtl;
    }
    
    .first_a361.picture_1261 > * {
        direction: ltr;
    }
}

.purple-1c60 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.purple-1c60:first-child {
    margin-top: 0;
}

.in-4e71 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.notice-78e7 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.notice-78e7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.filter_cool_b1a4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_cool_b1a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.silver-aed8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.west-6ac7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dynamic_d17f {
    list-style: none;
}

.dynamic_d17f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dynamic_d17f li:last-child {
    border-bottom: none;
}

/* Games Features */
.table_0add {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.paragraph_9e3f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.green_7ab9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input-f850 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.paragraph_bronze_b592 {
    margin: 2rem 0;
}

.section_pro_695d {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.overlay_lite_113e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.red-342f {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.accordion_ef0d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.menu-basic-1035 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-basic-1035 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_b565 {
    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);
}

.pagination_b565:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gas-5676 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature_6d7e {
    font-size: 1.5rem;
}

.simple-6a85 {
    color: var(--accent-color);
    margin: 0;
}

.gold-f46a {
    list-style: none;
}

.gold-f46a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.gold-f46a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.backdrop_ade3 {
    margin: 2rem 0;
}

.last_c862 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.label-14a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .label-14a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_5d4e {
    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);
}

.iron-bd3e {
    font-size: 1.25rem;
}

.border-easy-7301 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.surface-9c4d,
.alert_ebf7 {
    text-align: center;
    margin: 2rem 0;
}

.fast_ce59,
.next_f416 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.shadow_0dbe {
    margin: 2rem 0;
    text-align: center;
}

.background-ea48 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.background-ea48::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;
}

.up-9f03 {
    position: relative;
    z-index: 1;
}

.hero_blue_c012 {
    margin-bottom: 1rem;
}

.surface_75e3 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.preview-lite-c9e1 {
    margin-bottom: 3rem;
}

.card_dynamic_63c5 {
    margin-top: 3rem;
}

.aside-bright-53b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .aside-bright-53b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-bright-53b8 .accent_huge_318f {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section-0c76 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_pro_b76d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.info_2968 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.breadcrumb_ed8c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .breadcrumb_ed8c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_ed8c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.row-solid-4435 {
    margin-bottom: 1rem;
}

.element_paper_fa69 img {
    margin-bottom: 1rem;
}

.filter_7899 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-1b0a {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.large_f92f {
    list-style: none;
}

.large_f92f li {
    margin-bottom: 0.5rem;
}

.large_f92f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.large_f92f a:hover {
    color: var(--accent-color);
}

.grid_3ac7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.light_ed6f {
    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);
}

.light_ed6f:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tabs-outer-d488 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tabs-outer-d488 p {
    margin-bottom: 0.25rem;
}

.disabled-a87b {
    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) {
    .disabled-a87b {
        flex-direction: row;
    }
}

.panel-2307 {
    text-align: center;
}

@media (min-width: 768px) {
    .panel-2307 {
        text-align: left;
    }
}

.panel-2307 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.action-4d86 {
    font-size: 0.75rem !important;
}

.wrapper-a348 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.liquid-aa67 {
    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);
    }
}

.right_e612 {
    animation: fadeInUp 0.6s ease-out;
}

.info_076e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.logo_up_40ca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_up_40ca {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.photo-71ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-71ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-clean-e158 {
    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);
}

.accordion-clean-e158 .green_7ab9 {
    font-size: 1.25rem;
}

.accordion-clean-e158 .backdrop-9449 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.background_tiny_5f6e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .background_tiny_5f6e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-f152 {
    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);
}

.right-f152:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer-bb83 {
    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);
}

.pattern-gas-4f3b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.north-0969 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_right_ed52 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm_0c4d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm_0c4d .input-f850 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_0c4d .gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean_1632 {
    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);
}

.cool-5713 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.cool-5713 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cool-5713 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.modal-3f87 {
    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);
}

.surface_3e82 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.paper_108d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.paper_108d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paper_108d 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);
}

.paper_108d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paper_108d input::placeholder {
    color: var(--text-muted);
}

.background-wide-3fc7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.thumbnail-yellow-230c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.thumbnail-yellow-230c input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.container_7477 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.container_7477:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.label-14a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-14a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_5d4e {
    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);
}

.paper_5d4e .iron-bd3e {
    font-size: 1.25rem;
}

.paper_5d4e .border-easy-7301 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.chip_6bd2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom-d7bd {
    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);
}

.bottom-d7bd .green_7ab9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bottom-d7bd .input-f850 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bottom-d7bd .gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_e26c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_6882 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_6882 .tooltip-7680 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav_6882 .photo_9b87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron-5ea3 {
    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);
}

.small-6cfd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small-6cfd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_bright_92ef {
    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);
}

.panel_bright_92ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas_521b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.footer_bronze_e37f {
    flex: 1;
}

.liquid-ecff {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.panel_fast_3ffc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.description-brown-f8db {
    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);
}

.description-brown-f8db:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.north_d8f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_d8f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel-bfa5 {
    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);
}

.steel-bfa5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-01e0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_outer_cc15 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero_red_c570 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.preview-bronze-be6e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.nav-new-718a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-1514 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_full_d161 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_full_d161 .feature_aa85 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_full_d161 .glass-768f {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-470c {
    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);
}

.cool-3456 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer_4b4c {
    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);
}

.outer_4b4c .green_7ab9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_4b4c .input-f850 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outer_4b4c .gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower_6cb5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_6cb5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-4689 {
    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);
}

.banner-4689:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.modal_e5c4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_e5c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-3240 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture-3240:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-red-4ca9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-slow-4d4f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay_lite_113e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.rough_e012 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.dynamic-e5ab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-fluid-c425 {
    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);
}

.block-fluid-c425:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_black_b47d {
    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);
}

.next_3cd2 {
    flex: 1;
}

.bottom_de47 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.notification_active_4f7e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.icon-prev-e96f {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-orange-0d96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_dim_57aa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_dim_57aa .tooltip-7680 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline_dim_57aa .photo_9b87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_ebf7 {
    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);
}

.liquid-1c73 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid-1c73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.action-aa36 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action-aa36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_current_bb03 {
    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_current_bb03:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-warm-9529 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-4e56 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-pro-7799 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.right-aac6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort-ce2f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_bright_2b80 {
    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);
}

.notice_4793 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_6c80 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.clean_d24f {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool-3456 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer_4b4c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outer_4b4c .input-f850 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer_4b4c .gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_206a {
    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);
}

.gradient_first_ad00 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_first_ad00 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_first_ad00 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_c8b4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.light_c8b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_c8d5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pro_a2ac {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.image_small_ca47 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.purple_fc49 {
    padding: 1.5rem;
}

.nav-next-1cf5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.simple-cbb8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-cbb8 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;
}

.simple-cbb8 li:last-child {
    border-bottom: none;
}

.simple-cbb8 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.hovered_71ee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered_71ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-90dc {
    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);
}

.east-90dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_45bf {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-bright-f053 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mask_under_92c9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column_f62e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header_cd83 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_5d01 {
    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);
}

.under-d380 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_gold_2178 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask_94dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_small_50e2 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accent-slow-e730 {
    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);
}

.heading_bd31 {
    text-align: center;
}

.text-dim-262a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pro-cb32 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focused_6f77 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-32c0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-32c0 .input-f850 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-32c0 .gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold_e76b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cold_e76b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cold_e76b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-narrow-8254 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.item-narrow-8254:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_red_924a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail_7929 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input-f850 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.brown-d658 {
    padding: 1.5rem;
}

.gas-72a9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advanced_0049 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advanced_0049 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;
}

.advanced_0049 li:last-child {
    border-bottom: none;
}

.advanced_0049 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.green-6594 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.border_bronze_17fc {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border_bronze_17fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_cb05 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_ae48 {
    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);
}

.outer-bb83 {
    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;
}

.pattern-gas-4f3b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.north-0969 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_8e12 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_8e05 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.preview-3092 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary_d734 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.copper-fd34 {
    display: flex;
    gap: 1rem;
}

.copper-fd34 .left_94dd {
    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;
}

.frame_f005 {
    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);
}

.full_2ea1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.fixed-56b5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-56b5 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;
}

.fixed-56b5 li:last-child {
    border-bottom: none;
}

.fixed-56b5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.aside-mini-b519 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-mini-b519 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-mini-b519 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool_31cc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool_31cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover_yellow_ba37 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.north-b8f3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_aa85 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.last-1163 {
    font-size: 1rem;
}

.status-3984 {
    padding: 1.5rem;
}

.glass-768f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.photo-179f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.photo-179f .heading_bd31 {
    text-align: center;
}

.photo-179f .pro-cb32 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.photo-179f .text-00c8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.active-1aee {
    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);
}

.active-1aee:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.disabled-a054 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-a054 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_2201 {
    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);
}

.popup_2201:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny-77b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-west-b519 {
    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);
}

.under-b08a {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-b7b6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hovered_2821 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-795f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.black_72fb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm_850d {
    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);
}

.overlay_glass_463e {
    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;
}

.overlay_glass_463e.dirty-d167 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.overlay_glass_463e.fluid_9b8b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.overlay_glass_463e.red-77ec {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.overlay_glass_463e.banner_27b4 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.overlay_glass_463e.complex-539b {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.row_1ad4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form-pink-4ed5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone_5a1e {
    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);
}

.header-6c89 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.current_e26c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_e26c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.current_e26c li:last-child {
    border-bottom: none;
}

.current_e26c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.upper_d234 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .upper_d234 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .upper_d234 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty-15e4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dirty-15e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dirty-15e4.preview-white-83de {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .dirty-15e4.preview-white-83de {
        grid-column: span 3;
    }
}

.alert-first-f45e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.dirty-15e4.preview-white-83de .alert-first-f45e {
    background: rgba(6, 182, 212, 0.1);
}

.column-f444 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.status_prev_29b0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.dirty-15e4.preview-white-83de .status_prev_29b0 {
    color: var(--info-color);
}

.aside_060d {
    padding: 1.5rem;
    text-align: center;
}

.dynamic_9d68 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dirty-15e4.preview-white-83de .dynamic_9d68 {
    color: var(--info-color);
}

.paragraph-7d79 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pro-5598 {
    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 */
.search_simple_611f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_simple_611f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-a5db {
    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);
}

.action-a5db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-medium-07d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom-d7bd {
    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);
}

.iron-bd3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail_left_331a {
    flex: 1;
}

.last_c862 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.advanced_72b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-over-a1f0 {
    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);
}

.surface_wide_9d34 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.yellow_449f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.liquid-aa67 {
    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);
}

.primary-cool-b7a5 {
  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);
}

.primary-cool-b7a5 .heading_bd31 {
    text-align: center;
}

.primary-cool-b7a5 .text-dim-262a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.primary-cool-b7a5 .pro-cb32 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal_large_f72b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma-854b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_fresh_ad5a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top-e2e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-81e8 {
    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);
}

.form-b3cf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_current_ab9c {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_solid_7c85 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_solid_7c85 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video_solid_7c85 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_tall_f2e0 {
    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_tall_f2e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-a441 {
    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);
}

.accordion_cold_6c1b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.item_cold_6647 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.search_ef9f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search_ef9f.primary-ad4e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.search_ef9f.content-1dbc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.search_ef9f.medium_0801 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.row_e2eb {
    padding: 1.5rem;
    text-align: center;
}

.title-outer-6f44 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blue-1c46 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blue-1c46 .tall_c32a {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.carousel-wide-d3da {
    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);
}

.carousel-wide-d3da:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.photo_top_2203 {
  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);
}

.upper-f2af {
    text-align: center;
}

.upper-f2af .text-dim-262a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.upper-f2af .pro-cb32 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.photo-73b7 { text-align: center; }
.accent-copper-8f1e { text-align: left; }
.wood-8459 { text-align: right; }

.text_bottom_05b2 { margin-bottom: 0; }
.tabs_rough_1490 { margin-bottom: 0.5rem; }
.tag_6160 { margin-bottom: 1rem; }
.gold-1bdb { margin-bottom: 1.5rem; }
.gas-7535 { margin-bottom: 2rem; }

.rough-2cb5 { margin-top: 0; }
.overlay_2e6c { margin-top: 0.5rem; }
.backdrop-aed3 { margin-top: 1rem; }
.active_b492 { margin-top: 1.5rem; }
.accordion_motion_e45d { margin-top: 2rem; }

.fn-hidden-6494 { display: none; }
.fn-visible-6494 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .thumbnail-narrow-fc24 {
        padding: 6rem 0 3rem;
    }
    
    .item-pressed-9e3b {
        text-align: center;
    }
    
    .first_a361 {
        text-align: center;
    }
    
    .fixed-b276 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .list-motion-7285,
    .current_7c30,
    .background-ea48,
    .info_2968 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .thumbnail-narrow-fc24 {
        background: none;
    }
}

/* Providers Section */
.silver_4523 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-20b3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast-20b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fast-20b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-motion-4fe0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.column-motion-4fe0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.rough_ebe9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.media-smooth-a53f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.block-light-9f18 {
    list-style: none;
    padding: 0;
}

.block-light-9f18 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.block-light-9f18 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.active-510b {
    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);
}

.active-510b p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.slider_down_50b7 {
    padding: var(--section-padding);
}

.header-black-8d07 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-black-8d07 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-gas-d940 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled-gas-d940:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.shadow-cee4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.header_large_17e6 {
    display: flex;
    flex-direction: column;
}

.hero_outer_6f4a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pattern_61ce {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.narrow-52e9 {
    color: var(--accent-color);
}

.button-huge-1ffb {
    font-size: 1.25rem;
}

.texture_lite_6000 {
    margin-bottom: 1rem;
}

.texture_lite_6000 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.accordion_5d7c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.content-bright-c3e2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.heading_bd31 {
    text-align: center;
}

.text-dim-262a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pro-cb32 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.widget-first-698b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-next-f81d {
    margin: 2rem 0;
}

.tabs-out-2ca3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tabs-out-2ca3 .green_7ab9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-advanced-f514 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-25b1 {
    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;
}

.feature-25b1:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden_f02f {
    font-size: 2rem;
}

.paragraph-stone-288a {
    display: flex;
    flex-direction: column;
}

.item-bb56 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.image-short-e870 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.pressed_1bb5 {
    padding: var(--section-padding);
}

.banner-2c3c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .banner-2c3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-2c3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-6ddf {
    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);
}

.old-6ddf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.old-6ddf .text-dim-262a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.old-6ddf .pro-cb32 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.old-6ddf .surface-579e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.feature_325a {
    margin-top: 4rem;
}

.stone_34ef {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.outline_red_33f3 {
    overflow-x: auto;
}

.menu_37e4 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.menu_37e4 thead {
    background: var(--accent-color);
}

.menu_37e4 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.menu_37e4 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_37e4 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.menu_37e4 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.fluid_08c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-ea5a {
    max-width: 900px;
    margin: 0 auto;
}

.feature_outer_ccbb {
    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);
}

.feature_outer_ccbb:hover {
    border-color: var(--accent-color);
}

.video-focused-4025 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.video-focused-4025 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.photo-cool-5a94 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.feature_outer_ccbb.fn-active-6494 .photo-cool-5a94 {
    transform: rotate(45deg);
}

.large_e8d3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.feature_outer_ccbb.fn-active-6494 .large_e8d3 {
    max-height: 1000px;
}

.large_e8d3 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.border_dcb1 {
    padding: var(--section-padding);
}

.cool-5713 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.card_south_0615 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim-e196 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-e196 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preview-6264 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_9c2a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.focus-last-c484 {
    font-size: 2rem;
}

.popup-43b3 {
    color: var(--text-white);
    margin: 0;
}

.gas-3cd1 {
    list-style: none;
    padding: 0;
}

.gas-3cd1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas-3cd1 li:last-child {
    border-bottom: none;
}

.main_457d {
    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);
}

.main_457d p {
    color: var(--success-color);
    margin: 0;
}

.short_db43 {
    margin-top: 3rem;
}

.full_2ea1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.container-dirty-6d10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .container-dirty-6d10 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green-0180 {
    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);
}

.gas_16c7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.green-0180 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.accordion_tiny_5ae7 {
    padding: var(--section-padding);
}

.top-9be1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-9be1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-gas-3e27 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.heading-gas-3e27:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.north_e588 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.red_a77c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.item-2a0b {
    flex: 1;
}

.secondary_simple_45df {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.bronze-97ab {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.stone_8687 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_8cc4 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cool_8cc4:last-child {
    border-bottom: none;
}

/* Comparison Section */
.dark-626d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.silver_438d {
    padding: var(--section-padding);
}

.current-4bfe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.shadow-cool-0ed8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-cool-0ed8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-center-cabf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-8581, .logo-next-7013, .feature_wood_6d04 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.feature_wood_6d04 {
    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 */
.block_7e87 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-pro-e9bb {
    margin: 2rem 0;
}

.article_95a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-77ef {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-green-6dbd {
    list-style: none;
    padding: 0;
}

.card-green-6dbd 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;
}

.card-green-6dbd li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.card-green-6dbd li:last-child {
    border-bottom: none;
}

.tertiary_4ece {
    text-align: center;
    margin-top: 2rem;
}

.hero-up-8630 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.south-4ca8 {
    padding: var(--section-padding);
}

.frame_9f2c {
    margin: 2rem 0;
}

.cool-ae0c {
    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) {
    .cool-ae0c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cool-ae0c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.north-ffcd {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.wrapper-1948 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.paper-6354 {
    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;
}

.button_f6ce {
    flex: 1;
}

.detail_rough_1587 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pagination_5c6b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.huge_ce46 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.sort_copper_8bbc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .sort_copper_8bbc {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.aside-top-9a03 {
    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-top-9a03:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside-top-9a03 .text-dim-262a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-top-9a03 .pro-cb32 {
    color: var(--text-gray);
    font-size: 1rem;
}

.feature_lower_70ad {
    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);
}

.motion_5779 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.motion_5779 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.banner_short_051d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .banner_short_051d {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight_huge_8cae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_1158 {
    margin-bottom: 1.5rem;
}

.hidden_1158 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hidden_1158 input,
.hidden_1158 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;
}

.hidden_1158 input:focus,
.hidden_1158 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.red_950a {
    width: 100%;
    margin-top: 1rem;
}

.alert_9653 {
    display: flex;
    align-items: center;
}

.modal-fe5e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.outline-dynamic-1ba0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.advanced-6763 {
    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;
}

.highlight-south-f964 {
    color: var(--text-gray);
}

.outline_stale_0a5c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gallery_cold_fc13 {
    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);
}

.gallery_cold_fc13 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.table-light-74b6 {
    margin-top: 3rem;
}

.preview_e940 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.active_current_5b69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-2607 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.lite-3052 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lite-3052:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.modal-paper-8bca {
    padding: var(--section-padding);
}

.focused_f3a0 {
    margin: 2rem 0;
}

.medium-242a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.paragraph-purple-3674 {
    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;
}

.paragraph-purple-3674:hover, .paragraph-purple-3674.fn-active-6494 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.shade_bright_9446 {
    display: none;
}

.shade_bright_9446.fn-active-6494 {
    display: block;
}

.preview-5c3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_77ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.black-6e7f h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.black-6e7f ul {
    list-style: none;
    padding: 0;
}

.black-6e7f ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.black-6e7f ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.gallery_831c {
    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 */
.silver-10c7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny_4b2c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_6022 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.motion-aa32 {
    color: var(--accent-color);
    margin: 0;
}

.fresh_28ce {
    display: flex;
    gap: 1.5rem;
}

.carousel-52c7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.feature-wood-8179 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.active_old_c3f5 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.active_old_c3f5.gas_d250 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.active_old_c3f5.texture-medium-9ca4 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.active_old_c3f5.photo-fd50 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.left_d17e {
    margin-top: 2rem;
}

.text_81bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.button_c068 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .button_c068 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-afa8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.west_44ca {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shade_851a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.input-slow-f481 {
    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 */
.badge-in-a94c {
    padding: var(--section-padding);
}

.button_56bc {
    margin: 2rem 0;
}

.active_over_5978 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.picture-a7f6 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.footer_huge_13ce {
    list-style: none;
    padding: 0;
}

.footer_huge_13ce 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;
}

.footer_huge_13ce li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.footer_huge_13ce li:last-child {
    border-bottom: none;
}

.shade_clean_1f4d {
    margin: 2rem 0;
}

.article_54ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.smooth-7ed1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .smooth-7ed1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav_full_fa1e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.orange-9c39 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.full-811c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery_a66b {
    margin-top: 2rem;
}

.liquid-ecff {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.paper_5bd8 {
    list-style: none;
    padding: 0;
}

.clean-23de {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.clean-23de a {
    color: var(--accent-color);
    text-decoration: none;
}

.clean-23de a:hover {
    text-decoration: underline;
}

.blue_b07b {
    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 */
.dark_417c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_064e {
    margin: 2rem 0;
}

.border-b313 {
    margin-bottom: 3rem;
}

.border-b313 .shadow-77ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tooltip_cc3b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.breadcrumb_static_6d4e {
    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);
}

.breadcrumb_static_6d4e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.popup-purple-6b3d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .popup-purple-6b3d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_e9c4 {
    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 */
.medium_7e32 {
    padding: var(--section-padding);
}

.frame-6334 {
    margin: 2rem 0;
}

.dropdown_b117 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.photo-basic-5b88 {
    overflow-x: auto;
    margin: 2rem 0;
}

.carousel-c023 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.advanced_9f6e {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.chip-large-874e {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.border_0e25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .border_0e25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-145a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-145a .green_7ab9 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.header-145a .input-f850 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lite-150d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.east-9232 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_db28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_db28 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick_fc9e {
    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;
}

.thick_fc9e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.focus-d020 {
    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);
}

.layout_dark_ac97 {
    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;
}

.filter_silver_dfec {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thick_5318 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.picture_cool_ef5c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.status-0e44 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label-6fb4 {
    color: var(--text-white);
    font-weight: 600;
}

.progress-dark-fbce {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description-up-9a35 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.description-up-9a35 .left_94dd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.huge-59fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .huge-59fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_f0ca {
    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);
}

.block_f0ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block_f0ca .text-dim-262a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_f0ca .pro-cb32 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video_e111 {
    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);
}

.wrapper-thick-cc5e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.wrapper-thick-cc5e strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.sort-ce2f {
    margin: 2rem 0;
}

.heading_bright_2b80 {
    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);
}

.heading_bright_2b80:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.notice_4793 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card_narrow_34eb {
    flex: 1;
}

.border_6c80 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.clean_d24f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.cool-3456 {
    margin: 2rem 0;
}

.outer_4b4c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_4b4c .input-f850 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outer_4b4c .gas-72a9 {
    color: var(--text-gray);
    margin: 0;
}

.progress_206a {
    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);
}

.progress_206a .fast_ce59 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.lite-150d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.overlay_black_b47d {
    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;
}

.next_3cd2 {
    flex: 1;
}

.notification_active_4f7e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.icon-prev-e96f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.outer-bb83 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tooltip-ddae {
    flex: 1;
}

.pattern-gas-4f3b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.north-0969 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.preview-3092 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.summary_d734 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.copper-fd34 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.copper-fd34 .left_94dd {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.frame_f005 {
    margin-top: 2rem;
}

.frame_f005 .full_2ea1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.modal_hard_e01a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent-slow-e730 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accent-slow-e730 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-slow-e730 .heading_bd31 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused_6f77 {
    margin: 2rem 0;
}

.sidebar-32c0 {
    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 */
.tabs_advanced_304e {
    padding: var(--section-padding);
}

.brown-d658 {
    margin-top: 1rem;
}

.advanced_0049 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.advanced_0049 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.advanced_0049 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.top-3c0a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_1668 {
    margin: 2rem 0;
}

.texture-d5e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.component-b774 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.input-stone-c19e {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.clean_32b0 {
    margin: 2rem 0;
}

.overlay-be4f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.overlay-be4f .shadow-77ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge_d2e6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .badge_d2e6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-8cc7 {
    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);
}

.container-bronze-c988 {
    color: var(--text-white);
    font-weight: 600;
}

.media_complex_0247 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.focused_bedc {
    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);
}

.focused_bedc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.feature-0a7d {
    padding: var(--section-padding);
}

.small-f345 {
    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;
}

.small-f345:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.link-9130 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-9130 .gas_16c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-9130 .brown-6c22 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.shadow_9ab9 {
    flex: 1;
}

.west-d5d6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hard_4ff2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard_4ff2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hard_4ff2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.column-e449 {
    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);
}

.column-e449 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.column-e449 strong {
    color: var(--warning-color);
}

/* Slots Section */
.background-759a {
    padding: var(--section-padding);
}

.nav-new-718a {
    margin: 2rem 0;
}

/* Table Games Section */
.description_focused_eef6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-1514 {
    margin: 2rem 0;
}

.description_full_d161 {
    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);
}

.description_full_d161:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description_full_d161 .feature_aa85 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_full_d161 .glass-768f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.logo-470c {
    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);
}

.logo-470c .fast_ce59 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.list_b2f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-a84a {
    margin: 2rem 0;
}

.hero-dynamic-1e16 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-2f99 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list-down-ce4b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-5f46 {
    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);
}

.table-5f46:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.table-5f46.fn-active-6494 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-fd5b {
    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);
}

.overlay_hard_6851 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_hard_6851 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.next-5bfb {
    padding: var(--section-padding);
}

.banner_plasma_e31d {
    margin: 2rem 0;
}

.easy-6c6c {
    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);
}

.easy-6c6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .easy-6c6c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.frame_39e6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.element_mini_e811 {
    flex: 1;
}

.overlay-slow-51fd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pro_84bb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.highlight-down-c830 {
    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;
}

.shade_hovered_2c3b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accent_90ab {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wrapper-547e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip-e05c {
    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;
}

.chip-e05c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.paragraph-9977 {
    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);
}

.disabled-up-60ae {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.disabled-up-60ae strong {
    color: var(--accent-color);
}

/* New Games Section */
.shade_black_3807 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper-47ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .copper-47ab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .copper-47ab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_9fab {
    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;
}

.title_9fab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer_red_7e80 {
    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;
}

.video-8b8f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.filter-e704 {
    font-size: 2rem;
}

.active_clean_0458 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.heading_dynamic_3d1a {
    flex: 1;
}

.widget_center_d629 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.shadow_wood_1dd2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.grid_dirty_5733 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.old-9737 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.caption-green-5c3b {
    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;
}

.main-4aaf {
    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;
}

.main-4aaf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.aside-7aa9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_focused_4e95 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade_under_ac86 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .shade_under_ac86 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_2131 {
    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);
}

.progress-easy-96c6 {
    color: var(--text-white);
    font-weight: 600;
}

.static-090e {
    color: var(--accent-color);
    font-weight: 600;
}

.paper_dc52 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.paper_dc52 strong {
    color: var(--accent-color);
}

/* Security Section */
.bright_dbf5 {
    padding: var(--section-padding);
}

/* Benefits Section */
.popup_mini_77f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.article-f33d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.avatar_dd01 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_9a65 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.button_blue_2732 {
    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) {
    .button_blue_2732 {
        flex-direction: column;
        gap: 1rem;
    }
}

.button_blue_2732:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.button_blue_2732 .outer-bb83 {
    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;
}

.button_blue_2732 .tooltip-ddae {
    flex: 1;
}

.button_blue_2732 .pattern-gas-4f3b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.button_blue_2732 .north-0969 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.primary-mini-b3f8 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-mini-b3f8 .last_c862 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-mini-b3f8 .chip_6bd2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-mini-b3f8 .chip_6bd2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.primary-mini-b3f8 .chip_6bd2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.image-70fe {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.logo-stale-7483 {
    padding: var(--section-padding);
}

.label-last-d80e {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .label-last-d80e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-6a18 {
    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);
}

.outline-6a18:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.outline-6a18 .stale_58a2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-6a18 .complex_1797 {
    flex: 1;
}

.outline-6a18 .tooltip-7680 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-6a18 .texture-3560 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.liquid-e36a {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-e36a .hero-d75e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid-e36a .row-motion-0dbf {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.liquid-e36a .row-motion-0dbf 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);
}

.liquid-e36a .row-motion-0dbf li:last-child {
    border-bottom: none;
}

.liquid-e36a .row-motion-0dbf 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;
}

.liquid-e36a .row-motion-0dbf li strong {
    color: var(--text-white);
}

.chip-1217 {
    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);
}

.chip-1217 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip-1217 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.breadcrumb_green_00f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-new-8188 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .highlight-new-8188 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled-medium-82f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled-medium-82f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hard-2c32 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wide-579c {
    font-size: 2rem;
}

.picture-yellow-c40b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.sidebar-0e79 {
    flex: 1;
}

.wrapper-77be {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-77be li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.wrapper-77be li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hovered_096c {
    margin-top: 3rem;
}

.active_over_5978 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.picture-a7f6 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer_huge_13ce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_huge_13ce li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.footer_huge_13ce li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.footer_huge_13ce li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.current-8a8d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-c803 {
    margin: 2rem 0;
}

.backdrop-next-8050 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.backdrop-next-8050 .shadow-77ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip_4a32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tooltip_4a32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solid-2c9f {
    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);
}

.solid-2c9f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.in_37a8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chip_smooth_32f4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.fixed_7fa6 {
    padding: var(--section-padding);
}

.dark-801a {
    margin: 2rem 0;
}

.tooltip-9608 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tooltip-9608 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tooltip-9608 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_a79a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.popup_a79a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail_d8e5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gas_a223 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.nav_simple_6052 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav_simple_6052.purple-089d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.alert-0064 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.pressed-f6a7 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.simple_634f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table_purple_6956 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.box_cf24 {
    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);
}

.box_cf24 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_cf24 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.chip_outer_f2ae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green_5221 {
    margin: 2rem 0;
}

.button-2303 {
    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) {
    .button-2303 {
        flex-direction: column;
        gap: 1rem;
    }
}

.button-2303:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.button-2303::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);
}

.element_middle_ed08 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.selected-91b9 {
    flex: 1;
}

.logo_0423 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.silver-7dfd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver-7dfd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-blue-59d6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up_01cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide-d8f5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wide-d8f5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-026a {
    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);
}

.static-8236 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown_9c07 {
    flex: 1;
}

.button-gas-275a {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.widget-over-9ba7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accordion-0ed2 {
    margin-top: 2rem;
    text-align: center;
}

.focus_fluid_45b1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus_fluid_45b1 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.disabled-a054 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-a054 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_2201 {
    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);
}

.popup_2201:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.popup_2201 .layout_45bf {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_2201 .table-bright-f053 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.popup_2201 .mask_under_92c9 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.popup_2201 .column_f62e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.stone_7b2b {
    padding: var(--section-padding);
}

.accent-west-b519 .thick-6134 {
    flex: 1;
}

/* Promo Calendar Section */
.red-7d35 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_hard_6554 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_hard_6554 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-steel-beca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_bronze_e6f6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dim-1762 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-4e05 {
    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);
}

.dropdown_mini_0da1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accordion-yellow-99ae {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.picture-narrow-b235 {
    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);
}

.picture-narrow-b235 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture-narrow-b235 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.slow-35d3 {
    padding: var(--section-padding);
}

.pattern_8654 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pattern_8654 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-02f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_6a11 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black_a5ee {
    list-style: none;
    padding: 0;
    margin: 0;
}

.black_a5ee li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_60c6 {
    margin-top: 3rem;
}

.shade_60c6 .active_over_5978 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.shade_60c6 .picture-a7f6 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade_60c6 .footer_huge_13ce {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.shade_60c6 .footer_huge_13ce li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.shade_60c6 .footer_huge_13ce li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.shade_60c6 .footer_huge_13ce li strong {
    color: var(--warning-color);
}

.title-0a04 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title-0a04 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.header_upper_21b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-eef8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-eef8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_8f7a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_8f7a .shadow-77ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.menu-steel-56bb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-5aba {
    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);
}

.accordion-5aba:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hidden_bright_e230 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron_a1bd {
    flex: 1;
}

.sidebar_82cc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.row_east_b8d1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.thumbnail-d14a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.accordion_9cf9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.border_mini_af38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .border_mini_af38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_cold_59f6 {
    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);
}

.summary_cold_59f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.orange_d076 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.over_654d {
    color: var(--text-gray);
    font-size: 1rem;
}

.motion_5779 {
    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);
}

.tertiary-new-5e3b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tertiary-new-5e3b strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.picture-a365 { 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; }
.secondary-static-1502, .notice-78e7 { max-width:100%; height:auto; }

.hot_17d5, .active_969d, .tooltip-fd90 { white-space:normal; }

.item-pressed-9e3b,
.first_a361,
.search_simple_611f,
.disabled-a054,
.cool-3456,
.video_solid_7c85 {
  flex-wrap:wrap;
}

[class*="grid"],
.border_mini_af38,
.tooltip-9608,
.aside-bright-53b8 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.thumbnail-narrow-fc24 img,
.first_a361 img,
.alert-8701 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.sort_west_5977, .icon-c56b,
.backdrop-b09e, .wide-3597 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.outline_red_33f3 { width:100%; overflow-x:auto; }
.outline_red_33f3 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.fast-20b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .fast-20b3 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.column-motion-4fe0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.banner-2c3c,
.bronze_c65d,
.component-stale-0657,
.gas_c630,
.sort_copper_8bbc,
.border_mini_af38,
.tooltip-9608,
.aside-bright-53b8,
.photo_top_2203,
.banner_plasma_e31d,
.fast-20b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .banner-2c3c,
  .bronze_c65d,
  .component-stale-0657,
  .gas_c630,
  .sort_copper_8bbc,
  .border_mini_af38,
  .tooltip-9608,
  .aside-bright-53b8,
  .photo_top_2203,
  .banner_plasma_e31d,
  .fast-20b3 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.old-6ddf,
.aside-top-9a03,
.summary_cold_59f6,
.accent_huge_318f,
.popup_a79a,
.upper-f2af,
.easy-6c6c,
.column-motion-4fe0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.modal_0f5a,
.active_north_95fe,
.aside-dark-89d8 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal_0f5a > *,
.active_north_95fe > *,
.aside-dark-89d8 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 2a53 */
.phantom-card-x0 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
