/* {$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;
}

.card-a0bc {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.shade-eb15 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .shade-eb15 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shade-eb15 {
        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 */
.avatar-4bc3 {
    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);
}

.media_abc0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .media_abc0 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .selected_aedf {
        grid-column: 1;
    }
    
    .backdrop-bf7f {
        grid-column: 2;
    }
    
    .image-e031 {
        grid-column: 3;
    }
}

.selected_aedf img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.selected_aedf:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hidden-e2dc {
    display: none;
}

@media (min-width: 1024px) {
    .hidden-e2dc {
        display: block;
    }
}

/* Grouped Navigation */
.plasma-a536 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header_615d {
    position: relative;
}

.medium_1f69 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.header_615d .photo-selected-bafb {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.photo-selected-bafb {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.west_60f7 {
    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;
}

.west_60f7:hover,
.west_60f7.fn-active-7978 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.prev_f808 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .prev_f808 {
        display: flex;
    }
}

/* Mobile Register Button */
.backdrop-bf7f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .backdrop-bf7f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.dropdown-blue-753e {
    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;
}

.dropdown-blue-753e::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 */
.image-e031 {
    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) {
    .image-e031 {
        display: none;
    }
}

.image-e031 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.image-e031.fn-active-7978 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.image-e031.fn-active-7978 span:nth-child(2) {
    opacity: 0;
}

.image-e031.fn-active-7978 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.layout_3f3e {
    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;
}

.layout_3f3e.fn-active-7978 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.hard-faa5 {
    overflow: hidden;
}

.tertiary_bright_8774 {
    list-style: none;
    padding: 0.75rem 0;
}

.advanced-1b02 {
    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;
}

.advanced-1b02:hover,
.advanced-1b02.fn-active-7978 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.advanced-1b02.upper-11a7 {
    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;
}

.advanced-1b02.upper-11a7::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 */
.media_db75 {
    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;
}

.orange-4df2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.orange-4df2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.outline_8349 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.outline_8349:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.primary_e168 {
    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;
}

.primary_e168:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.top-05a5 {
    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;
}

.rough_446a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.rough_446a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media_small_da91 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media_small_da91:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.link-prev-fd26 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.link-prev-fd26: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);
}

.block_f686 {
    font-size: 1em;
    font-weight: 700;
}

.inner-3db1 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.label-up-e3a3 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.label-up-e3a3::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;
}

.copper-e08b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .copper-e08b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.module-focused-bcad {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sort-b4f3 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.new_b68a {
    margin-bottom: 2rem;
}

.video-6ddc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .video-6ddc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_031f {
    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);
}

.component_light_fa2b {
    font-size: 1.5rem;
}

.notification_outer_c4d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.paper-c10c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort_advanced_4801 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.sort_advanced_4801:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.active_orange_8c2e {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-7118 {
    margin-bottom: 1rem;
}

.panel-c052 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.table-plasma-f439 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .table-plasma-f439 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .table-plasma-f439.mini_968c {
        direction: rtl;
    }
    
    .table-plasma-f439.mini_968c > * {
        direction: ltr;
    }
}

.dark-5d05 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.dark-5d05:first-child {
    margin-top: 0;
}

.feature-narrow-1281 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.up_7850 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.up_7850:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tiny-5678 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-5678 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up_5068 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-pro-9241 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.iron-cf9f {
    list-style: none;
}

.iron-cf9f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.iron-cf9f li:last-child {
    border-bottom: none;
}

/* Games Features */
.card-a23c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.summary-solid-1ebe {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu_basic_6567 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-9128 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.gallery_51ef {
    margin: 2rem 0;
}

.summary_88bc {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.breadcrumb-white-588d {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.search_29c7 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.outline_2928 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.preview_4894 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_4894 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_left_6d47 {
    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);
}

.container_left_6d47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview_glass_de72 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wrapper_8119 {
    font-size: 1.5rem;
}

.breadcrumb_8f44 {
    color: var(--accent-color);
    margin: 0;
}

.steel-e02e {
    list-style: none;
}

.steel-e02e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.steel-e02e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.surface-large-38f8 {
    margin: 2rem 0;
}

.disabled_2548 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.block-cool-ba08 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .block-cool-ba08 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_steel_1398 {
    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);
}

.bright-5291 {
    font-size: 1.25rem;
}

.filter-wide-10cc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.tabs_advanced_e0d7,
.component-full-68d5 {
    text-align: center;
    margin: 2rem 0;
}

.green-72f9,
.red-0431 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.detail_top_adce {
    margin: 2rem 0;
    text-align: center;
}

.shade-tiny-8ee3 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shade-tiny-8ee3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.highlight_action_a969 {
    position: relative;
    z-index: 1;
}

.sort_glass_1742 {
    margin-bottom: 1rem;
}

.gradient_ae19 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.widget-cae1 {
    margin-bottom: 3rem;
}

.backdrop_left_ae75 {
    margin-top: 3rem;
}

.warm_7044 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .warm_7044 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm_7044 .slider_031f {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.main_thick_d8b5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-pink-aa0f {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.link-82bb {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.smooth_7a60 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .smooth_7a60 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .smooth_7a60 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.paragraph-90dd {
    margin-bottom: 1rem;
}

.layout_left_07a3 img {
    margin-bottom: 1rem;
}

.column-left-3ac6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom_1a69 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.green_8194 {
    list-style: none;
}

.green_8194 li {
    margin-bottom: 0.5rem;
}

.green_8194 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.green_8194 a:hover {
    color: var(--accent-color);
}

.chip_7e4c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.aside_b2b7 {
    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);
}

.aside_b2b7:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.sort-next-0673 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.sort-next-0673 p {
    margin-bottom: 0.25rem;
}

.preview_active_d187 {
    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) {
    .preview_active_d187 {
        flex-direction: row;
    }
}

.detail-85cc {
    text-align: center;
}

@media (min-width: 768px) {
    .detail-85cc {
        text-align: left;
    }
}

.detail-85cc p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo-dd9b {
    font-size: 0.75rem !important;
}

.glass-52c8 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.disabled_static_543d {
    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);
    }
}

.caption_dynamic_8c15 {
    animation: fadeInUp 0.6s ease-out;
}

.item-inner-f669 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.caption-tiny-8f0b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-tiny-8f0b {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.surface-328a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-328a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_e862 {
    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);
}

.element_e862 .menu_basic_6567 {
    font-size: 1.25rem;
}

.element_e862 .status-944b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.link-plasma-d220 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link-plasma-d220 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth-8a5e {
    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);
}

.smooth-8a5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-189d {
    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);
}

.active_e011 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.secondary_dark_b257 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-b032 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-medium-afeb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-medium-afeb .shadow-9128 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-medium-afeb .texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-5f7b {
    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_3f72 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.secondary_3f72 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.secondary_3f72 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.paragraph_cdd8 {
    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);
}

.hot_d555 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-basic-909e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-basic-909e label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-basic-909e 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);
}

.hero-basic-909e input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hero-basic-909e input::placeholder {
    color: var(--text-muted);
}

.text_2ad5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.surface_simple_283b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.surface_simple_283b input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tall_9320 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tall_9320:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.block-cool-ba08 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block-cool-ba08 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_steel_1398 {
    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);
}

.background_steel_1398 .bright-5291 {
    font-size: 1.25rem;
}

.background_steel_1398 .filter-wide-10cc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.highlight-smooth-22d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail_copper_7811 {
    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);
}

.thumbnail_copper_7811 .menu_basic_6567 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_copper_7811 .shadow-9128 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thumbnail_copper_7811 .texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
}

.up_f9f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_fba3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.card_fba3 .wrapper_inner_f40a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_fba3 .hidden_4299 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_fluid_219e {
    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);
}

.paragraph-plasma-5198 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-plasma-5198 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-blue-b580 {
    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);
}

.header-blue-b580:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic_7a89 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-e6b1 {
    flex: 1;
}

.wrapper_dim_18c3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pagination-soft-7b60 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter_8b73 {
    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);
}

.filter_8b73:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.table_36d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_36d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_f005 {
    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);
}

.media_f005:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_out_3160 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_cb7a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mini_0ee0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.light_b207 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal_fluid_febe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone-195a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick_8ee0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thick_8ee0 .rough_8ad1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thick_8ee0 .info-87a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-slow-ff7b {
    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);
}

.element_4c74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-65dd {
    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);
}

.footer-65dd .menu_basic_6567 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-65dd .shadow-9128 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-65dd .texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-white-8105 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-white-8105 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_copper_4c43 {
    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);
}

.notice_copper_4c43:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.focus-13a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-13a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_14f5 {
    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);
}

.main_14f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_easy_3f18 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_soft_1fb1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.breadcrumb-white-588d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.rough-390c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.popup-e774 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-5984 {
    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);
}

.highlight-5984:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-huge-4928 {
    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);
}

.photo_left_438c {
    flex: 1;
}

.filter_90f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.background-focused-cb72 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.upper_6646 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-ba26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced-d55f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-d55f .wrapper_inner_f40a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced-d55f .hidden_4299 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-full-68d5 {
    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);
}

.focus-849b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-849b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.image-ed03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-ed03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_5364 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.background_5364:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow_28f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_south_16a2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shadow_dynamic_9ab2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gallery-f6cb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter_c1eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-prev-b18c {
    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);
}

.gallery_motion_75ac {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_f9e3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_776f {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_4c74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-65dd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-65dd .shadow-9128 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-65dd .texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_1368 {
    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);
}

.info-small-2497 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info-small-2497 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-small-2497 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall-5f19 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tall-5f19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top_d7be {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slider_2445 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.menu-huge-1aab {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.paper_3d48 {
    padding: 1.5rem;
}

.sort-3ca8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.focus-d1d9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-d1d9 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;
}

.focus-d1d9 li:last-child {
    border-bottom: none;
}

.focus-d1d9 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.media-slow-c758 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-slow-c758 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_liquid_c1bd {
    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);
}

.disabled_liquid_c1bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_325a {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-fc95 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification_ac20 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled_center_81ce {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.complex-0f29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-b05d {
    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);
}

.message-dynamic-aaf0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_fb7a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.last_5171 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-6f6a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.slider_rough_e399 {
    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);
}

.new-1180 {
    text-align: center;
}

.thumbnail_upper_0d4c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask-bd4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status_dd4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_ee71 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_ee71 .shadow-9128 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_ee71 .texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_smooth_b735 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_smooth_b735 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_smooth_b735 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-selected-48bc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.form-selected-48bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside_276c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.section_b7d2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shadow-9128 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.row_wood_f42b {
    padding: 1.5rem;
}

.texture-black-297d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.right_c826 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right_c826 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;
}

.right_c826 li:last-child {
    border-bottom: none;
}

.right_c826 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.easy_9188 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.info-d03d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info-d03d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down_1d86 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-motion-2ad9 {
    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);
}

.heading-189d {
    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;
}

.active_e011 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_dark_b257 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_pressed_a412 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-purple-b825 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.aside-prev-5641 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal-1de6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer_selected_5dd7 {
    display: flex;
    gap: 1rem;
}

.footer_selected_5dd7 .liquid-70bb {
    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;
}

.focused-a506 {
    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);
}

.container_0b84 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.backdrop-old-f750 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop-old-f750 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;
}

.backdrop-old-f750 li:last-child {
    border-bottom: none;
}

.backdrop-old-f750 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.gallery-e6c5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-e6c5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-e6c5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-gas-c450 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort-gas-c450:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow-84d4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.last_66e6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.rough_8ad1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.sort-5700 {
    font-size: 1rem;
}

.item-c741 {
    padding: 1.5rem;
}

.info-87a6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pro-38a1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pro-38a1 .new-1180 {
    text-align: center;
}

.pro-38a1 .mask-bd4b {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pro-38a1 .card-white-f6f8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.link-advanced-8a15 {
    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);
}

.link-advanced-8a15:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.popup-down-0f71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-down-0f71 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-b6c4 {
    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);
}

.footer-b6c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_ab96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_3ab7 {
    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);
}

.input-4f31 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-pink-6f63 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-center-9c2a {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-up-0049 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.status-old-01f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_672f {
    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);
}

.green-bc41 {
    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;
}

.green-bc41.main-large-f59b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.green-bc41.picture-cf2b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.green-bc41.large_730e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.green-bc41.grid_smooth_2ccd {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.green-bc41.next_78bb {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.section_complex_0c6a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_huge_c57a {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-006b {
    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);
}

.caption_5204 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.up_f9f3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.up_f9f3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.up_f9f3 li:last-child {
    border-bottom: none;
}

.up_f9f3 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.badge_897f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .badge_897f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .badge_897f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-ab34 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dynamic-ab34:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-ab34.soft_0130 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .dynamic-ab34.soft_0130 {
        grid-column: span 3;
    }
}

.out_66de {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.dynamic-ab34.soft_0130 .out_66de {
    background: rgba(6, 182, 212, 0.1);
}

.description-fluid-389a {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.focus_4cad {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.dynamic-ab34.soft_0130 .focus_4cad {
    color: var(--info-color);
}

.list-pro-4b8c {
    padding: 1.5rem;
    text-align: center;
}

.shade_4271 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dynamic-ab34.soft_0130 .shade_4271 {
    color: var(--info-color);
}

.warm-322c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer_lite_dce6 {
    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 */
.content_2e69 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_2e69 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video_cool_1b59 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.video_cool_1b59:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_fa39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail_copper_7811 {
    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);
}

.bright-5291 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-dynamic-f1bf {
    flex: 1;
}

.disabled_2548 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget-west-6299 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-570e {
    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);
}

.tag_99ce {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.over-aa34 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.disabled_static_543d {
    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);
}

.outline_bronze_4725 {
  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);
}

.outline_bronze_4725 .new-1180 {
    text-align: center;
}

.outline_bronze_4725 .thumbnail_upper_0d4c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.outline_bronze_4725 .mask-bd4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.input-704d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_a8c9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-stone-f7a1 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_black_f291 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_c478 {
    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);
}

.in-e335 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.yellow-75f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-be32 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .prev-be32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .prev-be32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_5494 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask_5494:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-b1fa {
    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);
}

.secondary_small_9329 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup-fd7b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.title_action_2e03 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title_action_2e03.gradient-1f90 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.title_action_2e03.tooltip-pink-cdc0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.title_action_2e03.footer_dbdb {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.small_5729 {
    padding: 1.5rem;
    text-align: center;
}

.popup-prev-692f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.avatar_gold_a8bb {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.avatar_gold_a8bb .footer_a7f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.popup-3336 {
    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);
}

.popup-3336:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.label_cool_5291 {
  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);
}

.sidebar_18cc {
    text-align: center;
}

.sidebar_18cc .thumbnail_upper_0d4c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.sidebar_18cc .mask-bd4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.pagination-stale-f018 { text-align: center; }
.left-7de4 { text-align: left; }
.warm_d530 { text-align: right; }

.notification_7ebb { margin-bottom: 0; }
.purple-2f56 { margin-bottom: 0.5rem; }
.caption-0371 { margin-bottom: 1rem; }
.badge-7144 { margin-bottom: 1.5rem; }
.label-faf1 { margin-bottom: 2rem; }

.accordion-21ba { margin-top: 0; }
.hard_7af3 { margin-top: 0.5rem; }
.secondary-simple-46d4 { margin-top: 1rem; }
.component_54bc { margin-top: 1.5rem; }
.disabled_443e { margin-top: 2rem; }

.fn-hidden-7978 { display: none; }
.fn-visible-7978 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .label-up-e3a3 {
        padding: 6rem 0 3rem;
    }
    
    .copper-e08b {
        text-align: center;
    }
    
    .table-plasma-f439 {
        text-align: center;
    }
    
    .video-6ddc {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .avatar-4bc3,
    .layout_3f3e,
    .shade-tiny-8ee3,
    .link-82bb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .label-up-e3a3 {
        background: none;
    }
}

/* Providers Section */
.narrow-83ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-da6a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-da6a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary-da6a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-a024 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.blue-a024:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.frame_brown_cc0e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter_selected_77d1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.banner_hard_dbc7 {
    list-style: none;
    padding: 0;
}

.banner_hard_dbc7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.banner_hard_dbc7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.orange_ef01 {
    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);
}

.orange_ef01 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.bronze-d356 {
    padding: var(--section-padding);
}

.modal-right-c3eb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-right-c3eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under_f9e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.under_f9e0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.paper_2c1b {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.video-43ae {
    display: flex;
    flex-direction: column;
}

.description_purple_ef07 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.title_first_42d5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.thumbnail-short-2431 {
    color: var(--accent-color);
}

.layout_230e {
    font-size: 1.25rem;
}

.media_a183 {
    margin-bottom: 1rem;
}

.media_a183 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.gallery-ca75 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.detail-green-d510 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.new-1180 {
    text-align: center;
}

.thumbnail_upper_0d4c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask-bd4b {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.search-up-0fd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_dbe8 {
    margin: 2rem 0;
}

.summary_hard_6f2f {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.summary_hard_6f2f .menu_basic_6567 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_7c38 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.logo_down_0c34 {
    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;
}

.logo_down_0c34:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.under-6d61 {
    font-size: 2rem;
}

.tertiary_ec0b {
    display: flex;
    flex-direction: column;
}

.article_0fbe {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.grid-80fd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.shade_lite_ce9b {
    padding: var(--section-padding);
}

.cool-71cb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .cool-71cb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cool-71cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar_057e {
    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);
}

.sidebar_057e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar_057e .thumbnail_upper_0d4c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sidebar_057e .mask-bd4b {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.sidebar_057e .black-ab75 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.carousel_white_08d5 {
    margin-top: 4rem;
}

.panel_def7 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.panel-first-8359 {
    overflow-x: auto;
}

.alert_6478 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.alert_6478 thead {
    background: var(--accent-color);
}

.alert_6478 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.alert_6478 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_6478 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.alert_6478 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.block-wide-6095 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_d9d7 {
    max-width: 900px;
    margin: 0 auto;
}

.focus_3709 {
    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);
}

.focus_3709:hover {
    border-color: var(--accent-color);
}

.lower-d583 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.lower-d583 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.brown_d385 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.focus_3709.fn-active-7978 .brown_d385 {
    transform: rotate(45deg);
}

.summary-lite-bcce {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.focus_3709.fn-active-7978 .summary-lite-bcce {
    max-height: 1000px;
}

.summary-lite-bcce p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.lower-d8ef {
    padding: var(--section-padding);
}

.secondary_3f72 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.disabled_74dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_action_811c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_action_811c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro-dbd3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_2b76 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.active_0372 {
    font-size: 2rem;
}

.hovered-183f {
    color: var(--text-white);
    margin: 0;
}

.backdrop-ecae {
    list-style: none;
    padding: 0;
}

.backdrop-ecae li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.backdrop-ecae li:last-child {
    border-bottom: none;
}

.banner_3ca5 {
    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);
}

.banner_3ca5 p {
    color: var(--success-color);
    margin: 0;
}

.aside_6df4 {
    margin-top: 3rem;
}

.container_0b84 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.component-stone-d613 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .component-stone-d613 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus_gold_bdc9 {
    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);
}

.sort_0aae {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus_gold_bdc9 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.breadcrumb-plasma-e0ed {
    padding: var(--section-padding);
}

.slow-f525 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow-f525 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-9388 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph-9388:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.aside_tall_dc33 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.disabled-4777 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.input-narrow-4384 {
    flex: 1;
}

.clean-3fd7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.in_350e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.backdrop-9100 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-center-af4d {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-center-af4d:last-child {
    border-bottom: none;
}

/* Comparison Section */
.focused-6cf9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.out_fc7f {
    padding: var(--section-padding);
}

.breadcrumb-c13c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.article-first-8ed0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-first-8ed0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-6cea {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current_33c9, .hover_fc91, .popup-ab17 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.popup-ab17 {
    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 */
.search_78e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-e298 {
    margin: 2rem 0;
}

.wood_8ad1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_1628 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_in_e6ef {
    list-style: none;
    padding: 0;
}

.search_in_e6ef 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;
}

.search_in_e6ef li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.search_in_e6ef li:last-child {
    border-bottom: none;
}

.gallery-rough-f813 {
    text-align: center;
    margin-top: 2rem;
}

.dim_43a9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.wide_cb7d {
    padding: var(--section-padding);
}

.widget-dd29 {
    margin: 2rem 0;
}

.brown_8b49 {
    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) {
    .brown_8b49 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.brown_8b49:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hovered_145c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.link-stone-7d9f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.fast-3a33 {
    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;
}

.advanced_2db8 {
    flex: 1;
}

.aside_7fbd {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.box_6d04 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.full_e378 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.tiny_456e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .tiny_456e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.paper_fe7c {
    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);
}

.paper_fe7c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paper_fe7c .thumbnail_upper_0d4c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paper_fe7c .mask-bd4b {
    color: var(--text-gray);
    font-size: 1rem;
}

.static-e43e {
    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);
}

.wide-3783 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.wide-3783 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.secondary_8700 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .secondary_8700 {
        grid-template-columns: 1fr 1fr;
    }
}

.stale-e02b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_lite_46ec {
    margin-bottom: 1.5rem;
}

.active_lite_46ec label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.active_lite_46ec input,
.active_lite_46ec 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;
}

.active_lite_46ec input:focus,
.active_lite_46ec select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.up-9615 {
    width: 100%;
    margin-top: 1rem;
}

.action_0ec9 {
    display: flex;
    align-items: center;
}

.orange_a70e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.button_3e41 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.short-426f {
    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;
}

.container_lower_b4bf {
    color: var(--text-gray);
}

.summary-62e3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.solid-c17b {
    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);
}

.solid-c17b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.detail-lite-1960 {
    margin-top: 3rem;
}

.button-2ba3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.item-8cf2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_tall_548d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.new-42ab {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-42ab:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.dirty-15e0 {
    padding: var(--section-padding);
}

.next-2f88 {
    margin: 2rem 0;
}

.label-7591 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gas_d909 {
    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;
}

.gas_d909:hover, .gas_d909.fn-active-7978 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.shade_4104 {
    display: none;
}

.shade_4104.fn-active-7978 {
    display: block;
}

.frame-e0e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_thick_a4bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.form-pro-e75a h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.form-pro-e75a ul {
    list-style: none;
    padding: 0;
}

.form-pro-e75a ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.form-pro-e75a ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.active-up-5e20 {
    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 */
.shade_rough_57bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button-fast-01a7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-16d0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cool_aca8 {
    color: var(--accent-color);
    margin: 0;
}

.steel-e048 {
    display: flex;
    gap: 1.5rem;
}

.button-prev-66a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message_fdd7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tiny_de23 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.tiny_de23.list_3ff4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tiny_de23.picture-inner-b357 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tiny_de23.logo-dynamic-0898 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.secondary-soft-3e8f {
    margin-top: 2rem;
}

.pro_9d90 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.list_1516 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .list_1516 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-d599 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.stale-f4ae {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tabs_selected_3b84 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.picture-inner-5990 {
    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 */
.alert-wide-5469 {
    padding: var(--section-padding);
}

.thumbnail_eaae {
    margin: 2rem 0;
}

.panel_23a9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.box_simple_9f90 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.filter-df90 {
    list-style: none;
    padding: 0;
}

.filter-df90 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;
}

.filter-df90 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.filter-df90 li:last-child {
    border-bottom: none;
}

.element-587a {
    margin: 2rem 0;
}

.notice-0603 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gallery_dark_8987 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_dark_8987 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wide_c803 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_7006 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_7ce6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight_fixed_9936 {
    margin-top: 2rem;
}

.wrapper_dim_18c3 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.aside_warm_5356 {
    list-style: none;
    padding: 0;
}

.red-7ee7 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.red-7ee7 a {
    color: var(--accent-color);
    text-decoration: none;
}

.red-7ee7 a:hover {
    text-decoration: underline;
}

.slow_a372 {
    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 */
.button_5749 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-6cf2 {
    margin: 2rem 0;
}

.small-41f2 {
    margin-bottom: 3rem;
}

.small-41f2 .link_1628 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.item_5df3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.yellow_5c92 {
    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);
}

.yellow_5c92:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tag-c342 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tag-c342 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-fresh-5ef4 {
    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 */
.summary_a0f0 {
    padding: var(--section-padding);
}

.nav_gas_a520 {
    margin: 2rem 0;
}

.overlay-static-4c3a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pattern-5d24 {
    overflow-x: auto;
    margin: 2rem 0;
}

.out_4c7e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.out-2764 {
    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;
}

.image_423e {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.soft-ac0e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .soft-ac0e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-5f9b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-5f9b .menu_basic_6567 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.aside-5f9b .shadow-9128 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title-432c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.detail_solid_1cb9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_warm_2940 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_warm_2940 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center_bbab {
    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;
}

.center_bbab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.logo_88f8 {
    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);
}

.box-black-c745 {
    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;
}

.gradient_stale_4607 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cool_3dc0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.header-red-68ab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.bronze-0b2c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label-red-e1ba {
    color: var(--text-white);
    font-weight: 600;
}

.preview-blue-d55e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient_6c3e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient_6c3e .liquid-70bb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.title-bright-67b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title-bright-67b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma_1a3c {
    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);
}

.plasma_1a3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.plasma_1a3c .thumbnail_upper_0d4c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma_1a3c .mask-bd4b {
    color: var(--text-gray);
    font-size: 1rem;
}

.accordion_ed67 {
    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);
}

.label-6242 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.label-6242 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.filter_c1eb {
    margin: 2rem 0;
}

.menu-prev-b18c {
    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);
}

.menu-prev-b18c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.gallery_motion_75ac {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.in-4c9d {
    flex: 1;
}

.description_f9e3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_776f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.element_4c74 {
    margin: 2rem 0;
}

.footer-65dd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-65dd .shadow-9128 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.footer-65dd .texture-black-297d {
    color: var(--text-gray);
    margin: 0;
}

.full_1368 {
    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);
}

.full_1368 .green-72f9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.title-432c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.sidebar-huge-4928 {
    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;
}

.photo_left_438c {
    flex: 1;
}

.background-focused-cb72 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.upper_6646 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.heading-189d {
    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;
}

.action_f35f {
    flex: 1;
}

.active_e011 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.secondary_dark_b257 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.aside-prev-5641 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.modal-1de6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer_selected_5dd7 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer_selected_5dd7 .liquid-70bb {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.focused-a506 {
    margin-top: 2rem;
}

.focused-a506 .container_0b84 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.block_8f86 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_rough_e399 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slider_rough_e399 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_rough_e399 .new-1180 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_dd4b {
    margin: 2rem 0;
}

.shade_ee71 {
    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 */
.brown-4499 {
    padding: var(--section-padding);
}

.row_wood_f42b {
    margin-top: 1rem;
}

.right_c826 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.right_c826 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.right_c826 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.summary_middle_77e8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus_ce6a {
    margin: 2rem 0;
}

.down-d961 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.backdrop-54a8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.list-2ba8 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.primary_d884 {
    margin: 2rem 0;
}

.slider_stone_957c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.slider_stone_957c .link_1628 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide-ffd1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wide-ffd1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.west-85b6 {
    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);
}

.chip-dark-a439 {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper-ecf3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.overlay-medium-fb53 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.overlay-medium-fb53 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.out_dfce {
    padding: var(--section-padding);
}

.narrow_6b6b {
    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;
}

.narrow_6b6b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.slider-hard-40e5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-hard-40e5 .sort_0aae {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-hard-40e5 .item-cool-ae09 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.smooth_b3f0 {
    flex: 1;
}

.pink_8caf {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero_e59a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero_e59a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hero_e59a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.medium_0be5 {
    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);
}

.medium_0be5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.medium_0be5 strong {
    color: var(--warning-color);
}

/* Slots Section */
.gallery_pink_64a8 {
    padding: var(--section-padding);
}

.modal_fluid_febe {
    margin: 2rem 0;
}

/* Table Games Section */
.narrow_6bf0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone-195a {
    margin: 2rem 0;
}

.thick_8ee0 {
    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);
}

.thick_8ee0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.thick_8ee0 .rough_8ad1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thick_8ee0 .info-87a6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.widget-slow-ff7b {
    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);
}

.widget-slow-ff7b .green-72f9 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.dropdown_dark_e764 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_dirty_1d27 {
    margin: 2rem 0;
}

.icon_short_acfd {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_focused_c68c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.under_1781 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.static-3028 {
    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);
}

.static-3028:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.static-3028.fn-active-7978 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-warm-8266 {
    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);
}

.tertiary-17f4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tertiary-17f4 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.component_middle_fd7d {
    padding: var(--section-padding);
}

.thick-620d {
    margin: 2rem 0;
}

.image-dark-aa05 {
    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);
}

.image-dark-aa05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .image-dark-aa05 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.iron_f161 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.input_copper_bade {
    flex: 1;
}

.breadcrumb-d0c1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.medium_b48d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.title-hovered-bd51 {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.iron_3fe7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.logo-black-6f70 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fluid-9084 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.out_ce43 {
    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;
}

.out_ce43:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tertiary-hot-82e1 {
    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);
}

.alert_silver_4fe4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert_silver_4fe4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.layout-fast-feed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner_b215 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .inner_b215 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner_b215 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_5a5c {
    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;
}

.form_5a5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media-81d4 {
    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;
}

.content-plasma-70d2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.form_fixed_1b1e {
    font-size: 2rem;
}

.basic_684b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.title_a25d {
    flex: 1;
}

.accent_short_6b67 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.mask_2bdd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag-liquid-f180 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-3865 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.white_bdec {
    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;
}

.action_d916 {
    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;
}

.action_d916:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dim_bf7f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-fixed-8d88 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh_0c9d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .fresh_0c9d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_eac5 {
    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);
}

.top-65a8 {
    color: var(--text-white);
    font-weight: 600;
}

.backdrop_top_ff56 {
    color: var(--accent-color);
    font-weight: 600;
}

.left_82f7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.left_82f7 strong {
    color: var(--accent-color);
}

/* Security Section */
.static-3592 {
    padding: var(--section-padding);
}

/* Benefits Section */
.in-6c77 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.badge-8a3b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.active_faa7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-22b9 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.focus-0219 {
    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) {
    .focus-0219 {
        flex-direction: column;
        gap: 1rem;
    }
}

.focus-0219:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.focus-0219 .heading-189d {
    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;
}

.focus-0219 .action_f35f {
    flex: 1;
}

.focus-0219 .active_e011 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.focus-0219 .secondary_dark_b257 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.stone_2432 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_2432 .disabled_2548 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stone_2432 .highlight-smooth-22d3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_2432 .highlight-smooth-22d3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.stone_2432 .highlight-smooth-22d3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.cold_7d06 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.outline-narrow-f0ea {
    padding: var(--section-padding);
}

.focused_1892 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .focused_1892 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-dd2f {
    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);
}

.short-dd2f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.short-dd2f .tag-a783 {
    font-size: 2rem;
    flex-shrink: 0;
}

.short-dd2f .wide-afdb {
    flex: 1;
}

.short-dd2f .wrapper_inner_f40a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.short-dd2f .avatar-0739 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.paper-d81d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper-d81d .dim-ebb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paper-d81d .hidden-2308 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.paper-d81d .hidden-2308 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);
}

.paper-d81d .hidden-2308 li:last-child {
    border-bottom: none;
}

.paper-d81d .hidden-2308 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;
}

.paper-d81d .hidden-2308 li strong {
    color: var(--text-white);
}

.logo-red-da89 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.logo-red-da89 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo-red-da89 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.outline_0788 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-large-da07 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thumbnail-large-da07 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wide_c515 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wide_c515:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.liquid-4dcd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-b2d8 {
    font-size: 2rem;
}

.backdrop_1d8c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dirty-527a {
    flex: 1;
}

.cool-0046 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cool-0046 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.cool-0046 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.modal-in-9758 {
    margin-top: 3rem;
}

.panel_23a9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.box_simple_9f90 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-df90 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-df90 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.filter-df90 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.filter-df90 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.module_e61c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini_d660 {
    margin: 2rem 0;
}

.summary_selected_6011 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.summary_selected_6011 .link_1628 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-b892 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-b892 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border_north_ed4e {
    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);
}

.border_north_ed4e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.feature_81e0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slider-center-4ff5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.in_4034 {
    padding: var(--section-padding);
}

.under_10df {
    margin: 2rem 0;
}

.form-512b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .form-512b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form-512b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-17df {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.caption-17df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.current-cc0b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.grid-1b71 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.tooltip_small_ca3e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tooltip_small_ca3e.hovered-35a0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.static_fbf4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.hard-a886 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.new-c793 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb_a0e7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.aside_warm_01b5 {
    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);
}

.aside_warm_01b5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside_warm_01b5 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.shade_soft_e4f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_cebe {
    margin: 2rem 0;
}

.search-action-83df {
    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) {
    .search-action-83df {
        flex-direction: column;
        gap: 1rem;
    }
}

.search-action-83df:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.search-action-83df::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);
}

.text-cold-05e2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.label_static_e9cf {
    flex: 1;
}

.feature-hard-607b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.message-653f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-653f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_narrow_3c0a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-first-a30d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hover_7bd4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hover_7bd4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev_2d21 {
    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);
}

.row_8490 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail_purple_d1fe {
    flex: 1;
}

.gallery_d9f8 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.link-stone-e6b8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight-medium-3490 {
    margin-top: 2rem;
    text-align: center;
}

.widget-lower-f4d9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-lower-f4d9 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.popup-down-0f71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-down-0f71 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-b6c4 {
    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);
}

.footer-b6c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer-b6c4 .soft_325a {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-b6c4 .card-fc95 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.footer-b6c4 .notification_ac20 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.footer-b6c4 .disabled_center_81ce {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.wrapper_459b {
    padding: var(--section-padding);
}

.filter_3ab7 .backdrop_ae17 {
    flex: 1;
}

/* Promo Calendar Section */
.soft-e1d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed-6974 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-6974 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-4dcb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_b652 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.message-fresh-793a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dynamic-5146 {
    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);
}

.backdrop_580e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature_hovered_b7cd {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.video-stone-8f09 {
    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);
}

.video-stone-8f09 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.video-stone-8f09 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.grid_dynamic_9910 {
    padding: var(--section-padding);
}

.mask_next_8092 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask_next_8092 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-69ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-b30c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-complex-b4bf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-complex-b4bf li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.header_brown_1706 {
    margin-top: 3rem;
}

.header_brown_1706 .panel_23a9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.header_brown_1706 .box_simple_9f90 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.header_brown_1706 .filter-df90 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.header_brown_1706 .filter-df90 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.header_brown_1706 .filter-df90 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.header_brown_1706 .filter-df90 li strong {
    color: var(--warning-color);
}

.nav_up_6fa0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_up_6fa0 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.gold-101b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-449b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-449b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_inner_873a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_inner_873a .link_1628 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.component-03d5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.black-0ebe {
    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);
}

.black-0ebe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary-fast-f3fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_mini_1275 {
    flex: 1;
}

.wide_9b58 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.chip_e2a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.table-a5bd {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sidebar-purple-28bb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail-db9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .detail-db9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_east_7cf5 {
    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);
}

.tag_east_7cf5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent_8d5a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup-gas-da74 {
    color: var(--text-gray);
    font-size: 1rem;
}

.wide-3783 {
    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);
}

.active_4145 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.active_4145 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.shade-eb15 { 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; }
.sort_advanced_4801, .up_7850 { max-width:100%; height:auto; }

.media_db75, .primary_e168, .top-05a5 { white-space:normal; }

.copper-e08b,
.table-plasma-f439,
.content_2e69,
.popup-down-0f71,
.element_4c74,
.prev-be32 {
  flex-wrap:wrap;
}

[class*="grid"],
.detail-db9a,
.form-512b,
.warm_7044 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.label-up-e3a3 img,
.table-plasma-f439 img,
.paper-c10c img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.module-focused-bcad, .sort-b4f3,
.carousel-7118, .panel-c052 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.panel-first-8359 { width:100%; overflow-x:auto; }
.panel-first-8359 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.summary-da6a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .summary-da6a {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.blue-a024 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.cool-71cb,
.hover_5522,
.small_562d,
.gallery-a4dd,
.tiny_456e,
.detail-db9a,
.form-512b,
.warm_7044,
.label_cool_5291,
.thick-620d,
.summary-da6a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .cool-71cb,
  .hover_5522,
  .small_562d,
  .gallery-a4dd,
  .tiny_456e,
  .detail-db9a,
  .form-512b,
  .warm_7044,
  .label_cool_5291,
  .thick-620d,
  .summary-da6a {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.sidebar_057e,
.paper_fe7c,
.tag_east_7cf5,
.slider_031f,
.caption-17df,
.sidebar_18cc,
.image-dark-aa05,
.blue-a024 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.accordion_4b1f,
.badge-a6a5,
.preview_fixed_bf2c {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.accordion_4b1f > *,
.badge-a6a5 > *,
.preview_fixed_bf2c > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7ae7 */
.ghost-box-p4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
