/* {$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;
}

.clean-27fe {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.fluid_74e3 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .fluid_74e3 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .fluid_74e3 {
        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 */
.pagination-narrow-f167 {
    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);
}

.shadow_a502 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .shadow_a502 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .active-9294 {
        grid-column: 1;
    }
    
    .widget-cf1a {
        grid-column: 2;
    }
    
    .banner_47e2 {
        grid-column: 3;
    }
}

.active-9294 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.active-9294:hover img {
    transform: scale(1.05);
}

/* Navigation */
.video-wide-b9a6 {
    display: none;
}

@media (min-width: 1024px) {
    .video-wide-b9a6 {
        display: block;
    }
}

/* Grouped Navigation */
.alert_blue_6697 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.avatar_c2ae {
    position: relative;
}

.green_ed84 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.avatar_c2ae .tag-slow-01b1 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.tag-slow-01b1 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.media-7cda {
    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;
}

.media-7cda:hover,
.media-7cda.fn-active-e005 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.hovered_f8f8 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .hovered_f8f8 {
        display: flex;
    }
}

/* Mobile Register Button */
.widget-cf1a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .widget-cf1a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.info_6f3f {
    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;
}

.info_6f3f::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 */
.banner_47e2 {
    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) {
    .banner_47e2 {
        display: none;
    }
}

.banner_47e2 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.banner_47e2.fn-active-e005 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.banner_47e2.fn-active-e005 span:nth-child(2) {
    opacity: 0;
}

.banner_47e2.fn-active-e005 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.icon_bottom_2032 {
    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;
}

.icon_bottom_2032.fn-active-e005 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.complex_1f89 {
    overflow: hidden;
}

.panel-wide-6ad0 {
    list-style: none;
    padding: 0.75rem 0;
}

.tabs_small_a50d {
    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;
}

.tabs_small_a50d:hover,
.tabs_small_a50d.fn-active-e005 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tabs_small_a50d.fluid_b650 {
    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;
}

.tabs_small_a50d.fluid_b650::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 */
.item_huge_c25d {
    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;
}

.aside-7750 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.aside-7750:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.stone_cf87 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.stone_cf87:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.middle-c6c5 {
    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;
}

.middle-c6c5:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.full-66fe {
    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;
}

.list_brown_18d6 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.list_brown_18d6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.list-tiny-f382 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.list-tiny-f382:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.list_a969 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.list_a969: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);
}

.table_116b {
    font-size: 1em;
    font-weight: 700;
}

.widget-narrow-fda8 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.widget-huge-c235 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.widget-huge-c235::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;
}

.aside-under-4a22 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .aside-under-4a22 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.row-d4cc {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dim_43a2 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.main-95e7 {
    margin-bottom: 2rem;
}

.sort-white-8a33 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .sort-white-8a33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-3418 {
    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);
}

.sidebar_1aca {
    font-size: 1.5rem;
}

.background_c249 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pattern_copper_5bd6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.green-40d3 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.green-40d3:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.container_lower_dddc {
    text-align: center;
    margin-bottom: 3rem;
}

.paper_059c {
    margin-bottom: 1rem;
}

.static-cc18 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.easy-67c0 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .easy-67c0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .easy-67c0.tabs-b29e {
        direction: rtl;
    }
    
    .easy-67c0.tabs-b29e > * {
        direction: ltr;
    }
}

.down-85b2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.down-85b2:first-child {
    margin-top: 0;
}

.active_2626 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-4816 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.section-4816:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.carousel_44c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_44c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_thick_381a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gas-bfae {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.caption_8657 {
    list-style: none;
}

.caption_8657 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.caption_8657 li:last-child {
    border-bottom: none;
}

/* Games Features */
.list_medium_4f45 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.west-1492 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.table_old_e10b {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_pressed_38ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current-177e {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.avatar-inner-b9a4 {
    margin: 2rem 0;
}

.sort-bc94 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.breadcrumb_left_73d5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.widget-pro-4b18 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.upper-c53f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.active-f36b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-f36b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_dec2 {
    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);
}

.iron_dec2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title_3cf1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pink-99a0 {
    font-size: 1.5rem;
}

.paragraph_431e {
    color: var(--accent-color);
    margin: 0;
}

.module_019e {
    list-style: none;
}

.module_019e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.module_019e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.column-wood-e72b {
    margin: 2rem 0;
}

.breadcrumb_057b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fresh-0593 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fresh-0593 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_full_675c {
    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);
}

.focus_4d76 {
    font-size: 1.25rem;
}

.basic-2834 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.under_de34,
.heading-hard-444c {
    text-align: center;
    margin: 2rem 0;
}

.overlay_west_87b6,
.column-fresh-ce68 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.text-out-f27a {
    margin: 2rem 0;
    text-align: center;
}

.alert_9991 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.alert_9991::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;
}

.media_77af {
    position: relative;
    z-index: 1;
}

.frame-9245 {
    margin-bottom: 1rem;
}

.hidden_3c71 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dropdown_rough_60be {
    margin-bottom: 3rem;
}

.static_ffea {
    margin-top: 3rem;
}

.search-upper-d8be {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .search-upper-d8be {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-upper-d8be .link-3418 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table_action_b184 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled_new_65f9 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.hover-old-b68f {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.dropdown-cc6c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .dropdown-cc6c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-cc6c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.under_7f12 {
    margin-bottom: 1rem;
}

.section-4a6a img {
    margin-bottom: 1rem;
}

.dim_2aee {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-9937 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.purple_8e9e {
    list-style: none;
}

.purple_8e9e li {
    margin-bottom: 0.5rem;
}

.purple_8e9e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.purple_8e9e a:hover {
    color: var(--accent-color);
}

.static-ff0c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.top_e7e8 {
    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);
}

.top_e7e8:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.shadow-paper-9e48 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.shadow-paper-9e48 p {
    margin-bottom: 0.25rem;
}

.pagination-c79b {
    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) {
    .pagination-c79b {
        flex-direction: row;
    }
}

.heading_narrow_7faa {
    text-align: center;
}

@media (min-width: 768px) {
    .heading_narrow_7faa {
        text-align: left;
    }
}

.heading_narrow_7faa p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.action-a2f4 {
    font-size: 0.75rem !important;
}

.stale_8b4b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fixed-e0d7 {
    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);
    }
}

.accordion-simple-98a3 {
    animation: fadeInUp 0.6s ease-out;
}

.picture_5df9 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.chip_brown_1160 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip_brown_1160 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.paragraph-inner-4214 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-inner-4214 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-f5da {
    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);
}

.hovered-f5da .table_old_e10b {
    font-size: 1.25rem;
}

.hovered-f5da .dark_a698 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.solid-2ccb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .solid-2ccb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification-south-8cc1 {
    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);
}

.notification-south-8cc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-418b {
    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);
}

.up-2064 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.primary-hard-fe74 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_4a12 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-749c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple-749c .form_pressed_38ce {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple-749c .current-177e {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_gas_1b2e {
    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);
}

.tertiary-dark-ded9 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.tertiary-dark-ded9 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.tertiary-dark-ded9 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.gallery-e102 {
    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);
}

.notification_3811 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel_bronze_ce0f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.panel_bronze_ce0f label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel_bronze_ce0f 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);
}

.panel_bronze_ce0f input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.panel_bronze_ce0f input::placeholder {
    color: var(--text-muted);
}

.tabs-narrow-9057 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.texture_mini_69dd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.texture_mini_69dd input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tabs_south_2b41 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tabs_south_2b41:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.fresh-0593 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh-0593 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_full_675c {
    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);
}

.container_full_675c .focus_4d76 {
    font-size: 1.25rem;
}

.container_full_675c .basic-2834 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.modal-solid-2947 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_6470 {
    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);
}

.component_6470 .table_old_e10b {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_6470 .form_pressed_38ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_6470 .current-177e {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-c4d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-inner-7366 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden-inner-7366 .paragraph-a020 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-inner-7366 .preview-left-5663 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-tall-c363 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-full-e020 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link-full-e020 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold_81f5 {
    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);
}

.cold_81f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex_762b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.block-29fc {
    flex: 1;
}

.motion-928c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.border-b636 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row_781d {
    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);
}

.row_781d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.overlay_69f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_69f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-prev-e677 {
    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);
}

.breadcrumb-prev-e677:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper_a690 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale_3607 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stone_8512 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hot_e2de {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.form_in_53a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-4176 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright_0f1a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_0f1a .outer-991d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright_0f1a .search-center-b3d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-bb3b {
    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);
}

.primary_b972 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_lower_1bef {
    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_lower_1bef .table_old_e10b {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_lower_1bef .form_pressed_38ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_lower_1bef .current-177e {
    color: var(--text-gray);
    line-height: 1.6;
}

.steel-b40d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel-b40d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_center_1062 {
    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);
}

.active_center_1062:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.gas-ec0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas-ec0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_active_d8ec {
    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_active_d8ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-slow-054e {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower-fba5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.breadcrumb_left_73d5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.purple_eed5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.wrapper-purple-e39a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-small-0a74 {
    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);
}

.notice-small-0a74:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-52e4 {
    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);
}

.filter_static_9cc3 {
    flex: 1;
}

.plasma_4ad7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.chip-f7c8 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hard-598a {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-6187 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_hard_2fbb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_hard_2fbb .paragraph-a020 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden_hard_2fbb .preview-left-5663 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-hard-444c {
    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);
}

.secondary-a3cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-a3cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.hidden_lite_b028 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_lite_b028 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_small_a319 {
    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_small_a319:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-upper-6435 {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-ddb1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pink-a9b3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column_92e8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-d20e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_iron_8590 {
    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);
}

.cold-8ba0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_1e3f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background-static-7632 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_b972 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_lower_1bef {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.notice_lower_1bef .form_pressed_38ce {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice_lower_1bef .current-177e {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_37f7 {
    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);
}

.filter_left_7102 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter_left_7102 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter_left_7102 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-97b7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button-97b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-67bf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_top_12b8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.backdrop-7734 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.red_1452 {
    padding: 1.5rem;
}

.hidden_center_5564 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fresh_d84c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fresh_d84c 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;
}

.fresh_d84c li:last-child {
    border-bottom: none;
}

.fresh_d84c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.widget-fast-0d6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-fast-0d6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid_9b90 {
    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);
}

.fluid_9b90:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-7868 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-490e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-bright-64eb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.message_steel_30f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.simple-0eae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_steel_0188 {
    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);
}

.item-solid-2547 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_7121 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-upper-a810 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-5796 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo-7420 {
    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);
}

.border-north-f8a9 {
    text-align: center;
}

.in-ce03 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.copper-4e66 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.simple-3eb2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-dc71 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-dc71 .form_pressed_38ce {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu-dc71 .current-177e {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_middle_778c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title_middle_778c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title_middle_778c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-23a9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.iron-23a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_15b9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.top_d6c0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.form_pressed_38ce {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.border_pink_ac39 {
    padding: 1.5rem;
}

.current-177e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge_dim_3ad2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_dim_3ad2 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;
}

.badge_dim_3ad2 li:last-child {
    border-bottom: none;
}

.badge_dim_3ad2 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.form-050b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.texture-e662 {
    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-e662:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-top-119d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion-c57c {
    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);
}

.liquid-418b {
    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;
}

.up-2064 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-hard-fe74 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_east_2f49 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-71ce {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mini-da4b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_e825 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hidden-a381 {
    display: flex;
    gap: 1rem;
}

.hidden-a381 .west_c490 {
    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;
}

.detail_ee44 {
    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);
}

.texture_full_7517 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.grid_70b3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_70b3 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;
}

.grid_70b3 li:last-child {
    border-bottom: none;
}

.grid_70b3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.smooth-df0b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .smooth-df0b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .smooth-df0b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-focused-fd94 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image-focused-fd94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid_last_21ce {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.next_aef2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outer-991d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.wood-f849 {
    font-size: 1rem;
}

.tertiary-e18c {
    padding: 1.5rem;
}

.search-center-b3d1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.badge-82e7 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.badge-82e7 .border-north-f8a9 {
    text-align: center;
}

.badge-82e7 .copper-4e66 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.badge-82e7 .large_5b49 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.current-4f17 {
    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);
}

.current-4f17:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.header-b67e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-b67e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-2ab8 {
    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);
}

.chip-2ab8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark-e41f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-up-95c5 {
    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);
}

.smooth-124d {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-d9ad {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-hard-c542 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-tiny-5191 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text-south-0041 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink_e486 {
    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);
}

.tertiary_south_b31f {
    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;
}

.tertiary_south_b31f.simple-c760 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.tertiary_south_b31f.soft_427d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.tertiary_south_b31f.tertiary-smooth-9db0 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.tertiary_south_b31f.tabs_out_8037 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.tertiary_south_b31f.hover-6649 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.highlight-tall-d28b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table-7254 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-eb6f {
    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);
}

.hidden-in-1c6d {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.notice-c4d5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-c4d5 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;
}

.notice-c4d5 li:last-child {
    border-bottom: none;
}

.notice-c4d5 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.short-836c {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .short-836c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short-836c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-slow-0e1b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.widget-slow-0e1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-slow-0e1b.input_liquid_fbaa {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .widget-slow-0e1b.input_liquid_fbaa {
        grid-column: span 3;
    }
}

.section_c3fe {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.widget-slow-0e1b.input_liquid_fbaa .section_c3fe {
    background: rgba(6, 182, 212, 0.1);
}

.popup_f160 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.slider_c951 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.widget-slow-0e1b.input_liquid_fbaa .slider_c951 {
    color: var(--info-color);
}

.filter_c3ec {
    padding: 1.5rem;
    text-align: center;
}

.pressed_3314 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.widget-slow-0e1b.input_liquid_fbaa .pressed_3314 {
    color: var(--info-color);
}

.caption_34f6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.middle-3772 {
    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 */
.media_9dbf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_9dbf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-over-3c66 {
    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);
}

.tooltip-over-3c66:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_457d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_6470 {
    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);
}

.focus_4d76 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_stone_4fe6 {
    flex: 1;
}

.breadcrumb_057b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-35ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-huge-f54d {
    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);
}

.caption_huge_b067 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outline_yellow_0ee3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fixed-e0d7 {
    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);
}

.heading-smooth-6925 {
  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);
}

.heading-smooth-6925 .border-north-f8a9 {
    text-align: center;
}

.heading-smooth-6925 .in-ce03 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.heading-smooth-6925 .copper-4e66 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.accent-211b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-0faa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom_3aa3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-last-26b1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_39f7 {
    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);
}

.short-ccaa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-de93 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-903e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame-903e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-903e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_fe39 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid_fe39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-e379 {
    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);
}

.grid-7efa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.huge_0f99 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.secondary-a036 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-a036.south_b038 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.secondary-a036.frame_pressed_9c07 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.secondary-a036.title_cold_2f72 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.row_last_a238 {
    padding: 1.5rem;
    text-align: center;
}

.module_d616 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.border-top-d6af {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.border-top-d6af .cool-efb9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.frame-fluid-8d96 {
    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);
}

.frame-fluid-8d96:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.row-6838 {
  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);
}

.sort-black-60b4 {
    text-align: center;
}

.sort-black-60b4 .in-ce03 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.sort-black-60b4 .copper-4e66 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.summary_narrow_9503 { text-align: center; }
.action-0bcb { text-align: left; }
.avatar_c64b { text-align: right; }

.container-998c { margin-bottom: 0; }
.tag_brown_1e37 { margin-bottom: 0.5rem; }
.menu_2147 { margin-bottom: 1rem; }
.active_b89c { margin-bottom: 1.5rem; }
.outer-2286 { margin-bottom: 2rem; }

.search_de9f { margin-top: 0; }
.heading-under-da54 { margin-top: 0.5rem; }
.modal-8177 { margin-top: 1rem; }
.current_38d6 { margin-top: 1.5rem; }
.notification_dynamic_18be { margin-top: 2rem; }

.fn-hidden-e005 { display: none; }
.fn-visible-e005 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .widget-huge-c235 {
        padding: 6rem 0 3rem;
    }
    
    .aside-under-4a22 {
        text-align: center;
    }
    
    .easy-67c0 {
        text-align: center;
    }
    
    .sort-white-8a33 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .pagination-narrow-f167,
    .icon_bottom_2032,
    .alert_9991,
    .hover-old-b68f {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .widget-huge-c235 {
        background: none;
    }
}

/* Providers Section */
.lite-3285 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-84c6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-84c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-84c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-gas-085a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.form-gas-085a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.article-ccf9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.frame-mini-581c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-b691 {
    list-style: none;
    padding: 0;
}

.card-b691 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.card-b691 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.alert_plasma_2b5a {
    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);
}

.alert_plasma_2b5a p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.slider-light-15d4 {
    padding: var(--section-padding);
}

.backdrop_ec59 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_ec59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-upper-76ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop-upper-76ee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plasma_f74d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.surface-1f30 {
    display: flex;
    flex-direction: column;
}

.text_fast_2e97 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.background_last_b95d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.menu_7794 {
    color: var(--accent-color);
}

.column_bc50 {
    font-size: 1.25rem;
}

.breadcrumb_8a47 {
    margin-bottom: 1rem;
}

.breadcrumb_8a47 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.bottom-5a80 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-left-e8c4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.border-north-f8a9 {
    text-align: center;
}

.in-ce03 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.copper-4e66 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.first_d031 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent-5276 {
    margin: 2rem 0;
}

.preview_center_5658 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.preview_center_5658 .table_old_e10b {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_8f87 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tag_dirty_9bc3 {
    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;
}

.tag_dirty_9bc3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.upper-eb6d {
    font-size: 2rem;
}

.tooltip-narrow-ce95 {
    display: flex;
    flex-direction: column;
}

.link-fast-db91 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.search_yellow_49ee {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.silver_4923 {
    padding: var(--section-padding);
}

.first_f500 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .first_f500 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first_f500 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_7af9 {
    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);
}

.list_7af9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.list_7af9 .in-ce03 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.list_7af9 .copper-4e66 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.list_7af9 .focus_out_a887 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.detail_cf5a {
    margin-top: 4rem;
}

.info-e62b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.stale_d118 {
    overflow-x: auto;
}

.bottom_46e1 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bottom_46e1 thead {
    background: var(--accent-color);
}

.bottom_46e1 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.bottom_46e1 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom_46e1 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.bottom_46e1 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.shade_out_4782 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale_5041 {
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb_c86f {
    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);
}

.breadcrumb_c86f:hover {
    border-color: var(--accent-color);
}

.hard-9826 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hard-9826 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.dim_3aaa {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.breadcrumb_c86f.fn-active-e005 .dim_3aaa {
    transform: rotate(45deg);
}

.feature_in_9f22 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.breadcrumb_c86f.fn-active-e005 .feature_in_9f22 {
    max-height: 1000px;
}

.feature_in_9f22 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.row-green-3455 {
    padding: var(--section-padding);
}

.tertiary-dark-ded9 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.icon-a0a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_8ae5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_8ae5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.small_6d96 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-new-ba19 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-fast-fbb9 {
    font-size: 2rem;
}

.row-soft-a275 {
    color: var(--text-white);
    margin: 0;
}

.shade_tall_9393 {
    list-style: none;
    padding: 0;
}

.shade_tall_9393 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade_tall_9393 li:last-child {
    border-bottom: none;
}

.feature-5989 {
    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);
}

.feature-5989 p {
    color: var(--success-color);
    margin: 0;
}

.notification_up_62be {
    margin-top: 3rem;
}

.texture_full_7517 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.media-white-8b84 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media-white-8b84 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel_dirty_4367 {
    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);
}

.popup-thick-aab9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.panel_dirty_4367 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.iron_e759 {
    padding: var(--section-padding);
}

.message-stone-a412 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-stone-a412 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-43bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.prev-43bc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.section-1840 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.left_e41f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dark_4bfb {
    flex: 1;
}

.content_old_f946 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.module-a035 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.aside-b230 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_huge_12e5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_huge_12e5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.red_0bd1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.old-33fe {
    padding: var(--section-padding);
}

.modal_1d47 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.frame_ac91 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_ac91 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-slow-bbc8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_tiny_4639, .article_47f7, .column_solid_f6e0 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.column_solid_f6e0 {
    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 */
.purple-8519 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-fast-8fa9 {
    margin: 2rem 0;
}

.picture_mini_cd0a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-0fd4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.orange-433f {
    list-style: none;
    padding: 0;
}

.orange-433f 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;
}

.orange-433f li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.orange-433f li:last-child {
    border-bottom: none;
}

.upper-5603 {
    text-align: center;
    margin-top: 2rem;
}

.surface_cd59 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tall_c885 {
    padding: var(--section-padding);
}

.column-light-a41f {
    margin: 2rem 0;
}

.banner_b4ff {
    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) {
    .banner_b4ff {
        flex-direction: column;
        align-items: flex-start;
    }
}

.banner_b4ff:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.outline_ded4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.west_dcc0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.east-4ea8 {
    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;
}

.box_stale_3ce6 {
    flex: 1;
}

.button-4332 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.title-paper-eedb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.video_yellow_06bc {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.mini_571c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .mini_571c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.alert-b5b7 {
    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);
}

.alert-b5b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert-b5b7 .in-ce03 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert-b5b7 .copper-4e66 {
    color: var(--text-gray);
    font-size: 1rem;
}

.soft_1439 {
    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);
}

.dirty-ed01 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dirty-ed01 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.notice_dim_24b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .notice_dim_24b4 {
        grid-template-columns: 1fr 1fr;
    }
}

.pink-713e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-basic-1377 {
    margin-bottom: 1.5rem;
}

.footer-basic-1377 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-basic-1377 input,
.footer-basic-1377 select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
}

.footer-basic-1377 input:focus,
.footer-basic-1377 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.photo_fresh_77fd {
    width: 100%;
    margin-top: 1rem;
}

.breadcrumb-7421 {
    display: flex;
    align-items: center;
}

.cool_e64f {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.under-a4fd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.steel-d14c {
    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;
}

.primary-inner-a962 {
    color: var(--text-gray);
}

.old_bfb9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.paragraph-669b {
    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);
}

.paragraph-669b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.form_398e {
    margin-top: 3rem;
}

.pink_fe40 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.active_2159 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_85c5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.shade_cd93 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade_cd93:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.slider-2cae {
    padding: var(--section-padding);
}

.pattern_lower_14bf {
    margin: 2rem 0;
}

.label-cool-deb5 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.summary_4c02 {
    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;
}

.summary_4c02:hover, .summary_4c02.fn-active-e005 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.video-29b8 {
    display: none;
}

.video-29b8.fn-active-e005 {
    display: block;
}

.purple_daf4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-in-ccbf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.plasma-0dcd h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.plasma-0dcd ul {
    list-style: none;
    padding: 0;
}

.plasma-0dcd ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.plasma-0dcd ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.shade_c6b5 {
    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 */
.footer_6deb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass_2d24 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-a1f1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.fluid-de65 {
    color: var(--accent-color);
    margin: 0;
}

.item_tiny_5947 {
    display: flex;
    gap: 1.5rem;
}

.dynamic_5347 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.container-5d0b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tooltip-a1bd {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip-a1bd.search-8c69 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tooltip-a1bd.brown-069d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tooltip-a1bd.hot_a3a6 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.outer_448d {
    margin-top: 2rem;
}

.column_outer_e90a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card_fc62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .card_fc62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-74a7 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.shadow_7251 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.label_paper_1eef {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo_2e2a {
    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 */
.list_baf3 {
    padding: var(--section-padding);
}

.row-pressed-904a {
    margin: 2rem 0;
}

.message_yellow_7005 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.caption_wood_3c33 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.south_c7d4 {
    list-style: none;
    padding: 0;
}

.south_c7d4 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;
}

.south_c7d4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.south_c7d4 li:last-child {
    border-bottom: none;
}

.fast_7f8f {
    margin: 2rem 0;
}

.secondary_193a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.liquid-45a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .liquid-45a9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pressed_5554 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_13ad {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected-4209 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay-a9b0 {
    margin-top: 2rem;
}

.motion-928c {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.middle_0021 {
    list-style: none;
    padding: 0;
}

.icon_1b54 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.icon_1b54 a {
    color: var(--accent-color);
    text-decoration: none;
}

.icon_1b54 a:hover {
    text-decoration: underline;
}

.focus-a5a6 {
    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 */
.bronze_889e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_4010 {
    margin: 2rem 0;
}

.dynamic-3acc {
    margin-bottom: 3rem;
}

.dynamic-3acc .iron-0fd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tag-solid-b013 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature_last_7a35 {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.feature_last_7a35:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.main_hot_b43f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .main_hot_b43f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-hot-d178 {
    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 */
.notification-42ab {
    padding: var(--section-padding);
}

.dropdown_motion_88ad {
    margin: 2rem 0;
}

.complex-1853 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hard-d58e {
    overflow-x: auto;
    margin: 2rem 0;
}

.element-8467 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.aside_8f8d {
    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;
}

.clean-b55b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.secondary-dark-81eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .secondary-dark-81eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-5a31 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-5a31 .table_old_e10b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.main-5a31 .form_pressed_38ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message_wood_fb7b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.image-brown-15b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_pink_35ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_pink_35ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_purple_4053 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.alert_purple_4053:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.message-gold-043d {
    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);
}

.heading_west_f913 {
    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;
}

.complex_33c5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.next_4bab {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.search-static-805f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.frame-fixed-f944 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.basic_131b {
    color: var(--text-white);
    font-weight: 600;
}

.input-stale-c9a2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.red-47fb {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.red-47fb .west_c490 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination-east-21d5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pagination-east-21d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy-e0cd {
    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);
}

.easy-e0cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy-e0cd .in-ce03 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy-e0cd .copper-4e66 {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-soft-061f {
    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);
}

.stale_5043 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.stale_5043 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.sidebar-d20e {
    margin: 2rem 0;
}

.section_iron_8590 {
    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);
}

.section_iron_8590:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.cold-8ba0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop_bee1 {
    flex: 1;
}

.search_1e3f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background-static-7632 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.primary_b972 {
    margin: 2rem 0;
}

.notice_lower_1bef {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_lower_1bef .form_pressed_38ce {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.notice_lower_1bef .current-177e {
    color: var(--text-gray);
    margin: 0;
}

.gradient_37f7 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.gradient_37f7 .overlay_west_87b6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.message_wood_fb7b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.aside-52e4 {
    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;
}

.filter_static_9cc3 {
    flex: 1;
}

.chip-f7c8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hard-598a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.liquid-418b {
    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;
}

.iron_660a {
    flex: 1;
}

.up-2064 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.primary-hard-fe74 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.mini-da4b {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.modal_e825 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hidden-a381 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hidden-a381 .west_c490 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail_ee44 {
    margin-top: 2rem;
}

.detail_ee44 .texture_full_7517 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.hot_7e8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-7420 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .logo-7420 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-7420 .border-north-f8a9 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-3eb2 {
    margin: 2rem 0;
}

.menu-dc71 {
    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 */
.pressed_6a5c {
    padding: var(--section-padding);
}

.border_pink_ac39 {
    margin-top: 1rem;
}

.badge_dim_3ad2 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.badge_dim_3ad2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.badge_dim_3ad2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hard-9535 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-03f7 {
    margin: 2rem 0;
}

.accordion_pro_39ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.yellow_1823 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accordion-3c58 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.overlay-outer-cb96 {
    margin: 2rem 0;
}

.slow_989b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.slow_989b .iron-0fd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown_2aaa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dropdown_2aaa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.texture-solid-fe64 {
    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);
}

.heading_ab34 {
    color: var(--text-white);
    font-weight: 600;
}

.out_66bf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.summary_e6b8 {
    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);
}

.summary_e6b8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.warm_4264 {
    padding: var(--section-padding);
}

.chip-97b8 {
    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;
}

.chip-97b8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hover_over_a46f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hover_over_a46f .popup-thick-aab9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_over_a46f .chip_13e6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.brown-1331 {
    flex: 1;
}

.hard_6e1e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.logo_ec73 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_ec73 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.logo_ec73 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.carousel_prev_1668 {
    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);
}

.carousel_prev_1668 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel_prev_1668 strong {
    color: var(--warning-color);
}

/* Slots Section */
.link_blue_8f04 {
    padding: var(--section-padding);
}

.form_in_53a8 {
    margin: 2rem 0;
}

/* Table Games Section */
.modal_purple_60cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-4176 {
    margin: 2rem 0;
}

.bright_0f1a {
    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);
}

.bright_0f1a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bright_0f1a .outer-991d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright_0f1a .search-center-b3d1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.primary-bb3b {
    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);
}

.primary-bb3b .overlay_west_87b6 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.column-3c18 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_020c {
    margin: 2rem 0;
}

.up_a6db {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_over_faeb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel-b751 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside-2077 {
    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);
}

.aside-2077:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.aside-2077.fn-active-e005 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough-3952 {
    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);
}

.alert-fed2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert-fed2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.bright_0830 {
    padding: var(--section-padding);
}

.easy-9b60 {
    margin: 2rem 0;
}

.fresh-a572 {
    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);
}

.fresh-a572:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fresh-a572 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.outline-e722 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.new_1b7e {
    flex: 1;
}

.message_prev_d5a1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.background-af1f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.heading_e18c {
    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;
}

.logo-4479 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.solid-095b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.secondary_527b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus-2f02 {
    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;
}

.focus-2f02:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.next_3eae {
    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);
}

.pattern-large-ac83 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern-large-ac83 strong {
    color: var(--accent-color);
}

/* New Games Section */
.caption-small-d414 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-df51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thumbnail-df51 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail-df51 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_5d63 {
    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;
}

.active_5d63:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gradient-82f5 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--warning-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.box-full-9831 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.label-6bf6 {
    font-size: 2rem;
}

.icon_complex_b1da {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.shadow-1182 {
    flex: 1;
}

.easy_cc20 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.advanced-d345 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hidden-56be {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask_gas_6688 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.basic-49de {
    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;
}

.label-c575 {
    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;
}

.label-c575:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.shadow_94ba {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-under-9394 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_plasma_377b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .row_plasma_377b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_fa22 {
    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);
}

.overlay-dim-79c8 {
    color: var(--text-white);
    font-weight: 600;
}

.green_11d1 {
    color: var(--accent-color);
    font-weight: 600;
}

.tabs-79a3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tabs-79a3 strong {
    color: var(--accent-color);
}

/* Security Section */
.overlay-9fd2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.box_gas_9463 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.footer-c308 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.icon-b0d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-motion-143d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.link-586b {
    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) {
    .link-586b {
        flex-direction: column;
        gap: 1rem;
    }
}

.link-586b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link-586b .liquid-418b {
    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;
}

.link-586b .iron_660a {
    flex: 1;
}

.link-586b .up-2064 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.link-586b .primary-hard-fe74 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.modal-dd71 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-dd71 .breadcrumb_057b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-dd71 .modal-solid-2947 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-dd71 .modal-solid-2947 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.modal-dd71 .modal-solid-2947 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.upper_bcf5 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.simple-9db5 {
    padding: var(--section-padding);
}

.badge_5116 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .badge_5116 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_huge_572b {
    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);
}

.content_huge_572b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.content_huge_572b .short_2d62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_huge_572b .shadow_1b25 {
    flex: 1;
}

.content_huge_572b .paragraph-a020 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.content_huge_572b .slow_93ff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hidden-d8bf {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-d8bf .accent-c9a8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-d8bf .primary-down-fea0 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.hidden-d8bf .primary-down-fea0 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);
}

.hidden-d8bf .primary-down-fea0 li:last-child {
    border-bottom: none;
}

.hidden-d8bf .primary-down-fea0 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;
}

.hidden-d8bf .primary-down-fea0 li strong {
    color: var(--text-white);
}

.input_14a3 {
    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);
}

.input_14a3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input_14a3 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.outline_bronze_917d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop_copper_cf7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop_copper_cf7c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider_right_7625 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider_right_7625:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_b4a3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-4b21 {
    font-size: 2rem;
}

.dirty_47e3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.bottom_86af {
    flex: 1;
}

.old-df30 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old-df30 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.old-df30 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.carousel_top_bc20 {
    margin-top: 3rem;
}

.message_yellow_7005 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.caption_wood_3c33 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south_c7d4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.south_c7d4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.south_c7d4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.south_c7d4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.icon_outer_fdea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft-050c {
    margin: 2rem 0;
}

.light_6019 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.light_6019 .iron-0fd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.clean-8397 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .clean-8397 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-north-7659 {
    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);
}

.summary-north-7659:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.texture_fast_93ec {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hard_e921 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.video-c131 {
    padding: var(--section-padding);
}

.surface_black_356c {
    margin: 2rem 0;
}

.tag-0f62 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tag-0f62 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-0f62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-dark-2eab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component-dark-2eab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.caption_f4a8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.badge_small_9bd6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.table_pro_5b82 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.table_pro_5b82.gas-1d6c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tag_first_8fa9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.cool-de7b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.progress-advanced-30c4 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-west-e69b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient-focused-44ef {
    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);
}

.gradient-focused-44ef p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient-focused-44ef strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hero_04a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-640f {
    margin: 2rem 0;
}

.hovered_7860 {
    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) {
    .hovered_7860 {
        flex-direction: column;
        gap: 1rem;
    }
}

.hovered_7860:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hovered_7860::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);
}

.basic_9922 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.media_tall_d3f8 {
    flex: 1;
}

.banner_0546 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pink_6a6b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink_6a6b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.south-922b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-cold-3581 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module_50df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module_50df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title-5c25 {
    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);
}

.slider-solid-c6ea {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hover-pink-4e87 {
    flex: 1;
}

.footer-glass-2165 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.lower-bda3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.focus_motion_406a {
    margin-top: 2rem;
    text-align: center;
}

.button-steel-ed6f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button-steel-ed6f strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.header-b67e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-b67e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-2ab8 {
    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);
}

.chip-2ab8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.chip-2ab8 .accordion-7868 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-2ab8 .list-490e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.chip-2ab8 .nav-bright-64eb {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.chip-2ab8 .message_steel_30f7 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.summary_hard_244e {
    padding: var(--section-padding);
}

.video-up-95c5 .layout-inner-815a {
    flex: 1;
}

/* Promo Calendar Section */
.first-cf9e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-pink-305e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-pink-305e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-yellow-6291 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron_872d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.section-east-e7b3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tall-c222 {
    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);
}

.article-34c2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.summary_378c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.basic-448a {
    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);
}

.basic-448a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.basic-448a strong {
    color: var(--accent-color);
}

/* Requirements Section */
.gradient_5d35 {
    padding: var(--section-padding);
}

.selected_fd7a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .selected_fd7a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.old-8701 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-hot-9d17 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stale-021a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stale-021a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_da44 {
    margin-top: 3rem;
}

.tag_da44 .message_yellow_7005 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tag_da44 .caption_wood_3c33 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag_da44 .south_c7d4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tag_da44 .south_c7d4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tag_da44 .south_c7d4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tag_da44 .south_c7d4 li strong {
    color: var(--warning-color);
}

.rough_1949 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.rough_1949 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.shade_dim_2e42 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_17b0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_17b0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid_2ae0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid_2ae0 .iron-0fd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.slider-7f8b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter_clean_f8d2 {
    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);
}

.filter_clean_f8d2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.article-8ca5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article_plasma_08fe {
    flex: 1;
}

.widget-left-0d7e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.up_4a86 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.row_hot_1c62 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.narrow-28ba {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.highlight_badb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .highlight_badb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-efc1 {
    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);
}

.paragraph-efc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-386f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_5a30 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dirty-ed01 {
    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);
}

.primary-white-3d19 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.primary-white-3d19 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.fluid_74e3 { 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; }
.green-40d3, .section-4816 { max-width:100%; height:auto; }

.item_huge_c25d, .middle-c6c5, .full-66fe { white-space:normal; }

.aside-under-4a22,
.easy-67c0,
.media_9dbf,
.header-b67e,
.primary_b972,
.frame-903e {
  flex-wrap:wrap;
}

[class*="grid"],
.highlight_badb,
.tag-0f62,
.search-upper-d8be {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.widget-huge-c235 img,
.easy-67c0 img,
.pattern_copper_5bd6 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.row-d4cc, .dim_43a2,
.paper_059c, .static-cc18 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.stale_d118 { width:100%; overflow-x:auto; }
.stale_d118 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.footer-84c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-84c6 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.form-gas-085a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.first_f500,
.filter-iron-9057,
.outer-17f2,
.wrapper_hard_4cbd,
.mini_571c,
.highlight_badb,
.tag-0f62,
.search-upper-d8be,
.row-6838,
.easy-9b60,
.footer-84c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .first_f500,
  .filter-iron-9057,
  .outer-17f2,
  .wrapper_hard_4cbd,
  .mini_571c,
  .highlight_badb,
  .tag-0f62,
  .search-upper-d8be,
  .row-6838,
  .easy-9b60,
  .footer-84c6 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.list_7af9,
.alert-b5b7,
.paragraph-efc1,
.link-3418,
.component-dark-2eab,
.sort-black-60b4,
.fresh-a572,
.form-gas-085a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.background_bc64,
.current_b319,
.primary_glass_1830 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.background_bc64 > *,
.current_b319 > *,
.primary_glass_1830 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7411 */
.ghost-box-y4 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
