/* {$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;
}

.current-85f1 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.purple_f48e {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .purple_f48e {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .purple_f48e {
        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 */
.filter-advanced-d75a {
    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);
}

.breadcrumb_short_b75a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .breadcrumb_short_b75a {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .thick-d00c {
        grid-column: 1;
    }
    
    .layout_d04b {
        grid-column: 2;
    }
    
    .search_steel_1f31 {
        grid-column: 3;
    }
}

.thick-d00c img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.thick-d00c:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hovered-8738 {
    display: none;
}

@media (min-width: 1024px) {
    .hovered-8738 {
        display: block;
    }
}

/* Grouped Navigation */
.hero-8d83 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.plasma-9d98 {
    position: relative;
}

.mask_85b9 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.plasma-9d98 .mini-45a6 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.mini-45a6 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.menu_large_97cd {
    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;
}

.menu_large_97cd:hover,
.menu_large_97cd.fn-active-ee76 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.section_d96a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .section_d96a {
        display: flex;
    }
}

/* Mobile Register Button */
.layout_d04b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .layout_d04b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.video_4579 {
    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;
}

.video_4579::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 */
.search_steel_1f31 {
    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) {
    .search_steel_1f31 {
        display: none;
    }
}

.search_steel_1f31 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.search_steel_1f31.fn-active-ee76 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.search_steel_1f31.fn-active-ee76 span:nth-child(2) {
    opacity: 0;
}

.search_steel_1f31.fn-active-ee76 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo_full_8376 {
    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;
}

.logo_full_8376.fn-active-ee76 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.tag-4cc9 {
    overflow: hidden;
}

.logo-lite-952b {
    list-style: none;
    padding: 0.75rem 0;
}

.soft_1f41 {
    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;
}

.soft_1f41:hover,
.soft_1f41.fn-active-ee76 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.soft_1f41.south_6ecc {
    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;
}

.soft_1f41.south_6ecc::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 */
.carousel_pro_8357 {
    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;
}

.white_543d {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.white_543d:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.up_344f {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.up_344f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.advanced-ae49 {
    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;
}

.advanced-ae49:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.frame-6e89 {
    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;
}

.basic_74a2 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.basic_74a2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.stale-2d18 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.stale-2d18:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.article-ef01 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.article-ef01: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);
}

.element-cool-8277 {
    font-size: 1em;
    font-weight: 700;
}

.background_d957 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.east-8397 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.east-8397::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;
}

.tooltip-brown-9d1b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tooltip-brown-9d1b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.silver_b42c {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tall_78c0 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.feature_easy_aeb2 {
    margin-bottom: 2rem;
}

.small-af77 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .small-af77 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-923c {
    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);
}

.shade_b2cd {
    font-size: 1.5rem;
}

.prev-7ef1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.info-b14f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.north-52a7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.north-52a7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.simple-8c2a {
    text-align: center;
    margin-bottom: 3rem;
}

.gas_2b02 {
    margin-bottom: 1rem;
}

.hover-copper-74fa {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.soft_7d5d {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .soft_7d5d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .soft_7d5d.pattern-full-58ab {
        direction: rtl;
    }
    
    .soft_7d5d.pattern-full-58ab > * {
        direction: ltr;
    }
}

.logo_ae55 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.logo_ae55:first-child {
    margin-top: 0;
}

.backdrop-easy-9f44 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info-30bd {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.info-30bd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.input_out_1542 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_out_1542 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-last-0950 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_1417 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.badge-d350 {
    list-style: none;
}

.badge-d350 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-d350 li:last-child {
    border-bottom: none;
}

/* Games Features */
.avatar_4968 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.current-7c7f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.row-98b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_1482 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.mask-0db2 {
    margin: 2rem 0;
}

.footer_large_ca1a {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.copper_78eb {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.active_ec89 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.module_b7ef {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.east-5ef3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east-5ef3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_thick_d866 {
    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);
}

.filter_thick_d866:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hovered-6c85 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.search-pink-6b84 {
    font-size: 1.5rem;
}

.over-f290 {
    color: var(--accent-color);
    margin: 0;
}

.easy-242d {
    list-style: none;
}

.easy-242d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.easy-242d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.first-09a5 {
    margin: 2rem 0;
}

.search-31a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tooltip-glass-c921 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tooltip-glass-c921 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-473a {
    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);
}

.mini-cff5 {
    font-size: 1.25rem;
}

.hovered-3008 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.article_red_9094,
.table-stale-b5aa {
    text-align: center;
    margin: 2rem 0;
}

.paragraph-839c,
.hover-7437 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.media_241d {
    margin: 2rem 0;
    text-align: center;
}

.under-ab81 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.under-ab81::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.up-827b {
    position: relative;
    z-index: 1;
}

.focus-b752 {
    margin-bottom: 1rem;
}

.chip-north-7081 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.summary-bc83 {
    margin-bottom: 3rem;
}

.video_blue_ef0f {
    margin-top: 3rem;
}

.input_e021 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .input_e021 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_e021 .tooltip-923c {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.complex_b165 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary-3bba {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.last-7d32 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.purple-298c {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .purple-298c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .purple-298c {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.gradient_d142 {
    margin-bottom: 1rem;
}

.shadow_cool_c249 img {
    margin-bottom: 1rem;
}

.icon_966d {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_b750 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.up_d3d6 {
    list-style: none;
}

.up_d3d6 li {
    margin-bottom: 0.5rem;
}

.up_d3d6 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.up_d3d6 a:hover {
    color: var(--accent-color);
}

.caption-motion-7219 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section_soft_ba90 {
    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);
}

.section_soft_ba90:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tiny-ba32 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tiny-ba32 p {
    margin-bottom: 0.25rem;
}

.breadcrumb-1d99 {
    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) {
    .breadcrumb-1d99 {
        flex-direction: row;
    }
}

.panel_silver_7a00 {
    text-align: center;
}

@media (min-width: 768px) {
    .panel_silver_7a00 {
        text-align: left;
    }
}

.panel_silver_7a00 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.clean-7b46 {
    font-size: 0.75rem !important;
}

.video_bottom_af6a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.active_fc0d {
    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);
    }
}

.secondary-e97a {
    animation: fadeInUp 0.6s ease-out;
}

.secondary-lower-a56a {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.black-651f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .black-651f {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.active_e130 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_e130 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-hovered-8218 {
    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);
}

.grid-hovered-8218 .row-98b9 {
    font-size: 1.25rem;
}

.grid-hovered-8218 .menu-687b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary_fluid_303d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary_fluid_303d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-2cb8 {
    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);
}

.hovered-2cb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-tall-8740 {
    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);
}

.current-6fd2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort-black-2b32 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-7252 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-24b7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gold-24b7 .complex_1482 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold-24b7 .box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
}

.text_right_023c {
    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);
}

.hard-d8fd {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.hard-d8fd img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hard-d8fd img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.header_a416 {
    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);
}

.logo_1283 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.texture-9e5c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.texture-9e5c label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.texture-9e5c 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);
}

.texture-9e5c input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.texture-9e5c input::placeholder {
    color: var(--text-muted);
}

.picture-south-5a8d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.photo_266e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.photo_266e input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.blue-1553 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.blue-1553:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tooltip-glass-c921 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-glass-c921 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-473a {
    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);
}

.preview-473a .mini-cff5 {
    font-size: 1.25rem;
}

.preview-473a .hovered-3008 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.hidden-current-3286 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-61b4 {
    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);
}

.wood-61b4 .row-98b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood-61b4 .complex_1482 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood-61b4 .box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-3793 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool-c7f4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.cool-c7f4 .active_b446 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool-c7f4 .fixed-87cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider-dark-38a0 {
    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);
}

.warm-5214 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .warm-5214 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-506d {
    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);
}

.main-506d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_hovered_02bc {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info_north_cd31 {
    flex: 1;
}

.outline_cf86 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image-191a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-pressed-d415 {
    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);
}

.panel-pressed-d415:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.orange_6de9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange_6de9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.soft-56ee {
    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);
}

.soft-56ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel_3979 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_mini_e2d8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content-0889 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.highlight_3875 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.bronze-3840 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_wood_4d8f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail_current_0a3a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.detail_current_0a3a .surface_4bcc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail_current_0a3a .panel_3a79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_last_8f68 {
    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);
}

.hero-hard-bad1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-13d5 {
    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);
}

.card-13d5 .row-98b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-13d5 .complex_1482 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-13d5 .box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue_4612 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_4612 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_outer_a5a6 {
    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);
}

.backdrop_outer_a5a6:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.narrow-02f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-02f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_new_7a4b {
    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);
}

.tag_new_7a4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-1e95 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav-dim-7daf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copper_78eb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.frame-f6e6 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.blue-cba0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron-ca9e {
    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);
}

.iron-ca9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth_03d6 {
    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);
}

.smooth_59f8 {
    flex: 1;
}

.texture_next_aaab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.border_hard_8d39 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.badge_1fb0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-bronze-1b65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-8ed3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-8ed3 .active_b446 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon-8ed3 .fixed-87cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-stale-b5aa {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-422d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-422d {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.module_steel_f823 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_steel_f823 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_current_a33f {
    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_current_a33f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft-5ab6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pressed-a0f0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description_319b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hover-in-ef55 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.blue_c0cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-9f60 {
    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);
}

.progress-large-6f9a {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-bright-3d66 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag_first_c9b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-hard-bad1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-13d5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-13d5 .complex_1482 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card-13d5 .box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic-e601 {
    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);
}

.fixed_19b3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed_19b3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_19b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.soft_cad8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.soft_cad8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_gold_439e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.preview-70c2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button_first_a596 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.wide_a08f {
    padding: 1.5rem;
}

.photo-6b1d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption_e791 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption_e791 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;
}

.caption_e791 li:last-child {
    border-bottom: none;
}

.caption_e791 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.green_e40f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_e40f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-steel-ddeb {
    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);
}

.thumbnail-steel-ddeb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_9e1d {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_afca {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.photo_focused_f8cb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.background_f6cd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pro-c2c8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_complex_43a7 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.frame_dba6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_clean_95d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_glass_0f9b {
    color: var(--text-gray);
    line-height: 1.6;
}

.first_eea7 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.lower-2b5a {
    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);
}

.rough-1ff6 {
    text-align: center;
}

.complex-94eb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column_28a8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thick-8cc8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-744a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-744a .complex_1482 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-744a .box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_lite_1561 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border_lite_1561 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_lite_1561 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-gold-e5d7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.backdrop-gold-e5d7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-91c0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_36cd {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.complex_1482 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.label_5ec9 {
    padding: 1.5rem;
}

.box-full-b43e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption-5891 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption-5891 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;
}

.caption-5891 li:last-child {
    border-bottom: none;
}

.caption-5891 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.section_fc9c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hot_0e1f {
    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);
}

.hot_0e1f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast-64b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_rough_f173 {
    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);
}

.detail-tall-8740 {
    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;
}

.current-6fd2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-black-2b32 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-d2dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-596e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.red_f313 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar_thick_a62e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-focused-6911 {
    display: flex;
    gap: 1rem;
}

.video-focused-6911 .primary-left-f7b7 {
    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;
}

.summary_9305 {
    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);
}

.text-cb46 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.avatar_74af {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar_74af 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;
}

.avatar_74af li:last-child {
    border-bottom: none;
}

.avatar_74af li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.tiny-55b6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tiny-55b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tiny-55b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool_08fe {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool_08fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_stale_ddc2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.next-dd51 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.surface_4bcc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dark-3768 {
    font-size: 1rem;
}

.tabs_west_6957 {
    padding: 1.5rem;
}

.panel_3a79 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.cold_736d {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cold_736d .rough-1ff6 {
    text-align: center;
}

.cold_736d .column_28a8 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.cold_736d .old_7583 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.label_35f2 {
    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);
}

.label_35f2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.middle_e1f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle_e1f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_06ba {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hidden_06ba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_iron_bfc3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-13df {
    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);
}

.middle-eddb {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_wide_b960 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-inner-9df3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_copper_11f3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.short_1a6c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_pink_aa20 {
    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);
}

.item-12e5 {
    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;
}

.item-12e5.section-tall-48e4 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.item-12e5.breadcrumb-dc2e {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.item-12e5.main_bronze_fa3a {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.item-12e5.border-c92c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.item-12e5.slow-7153 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.banner_3275 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb-b31d {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-e8e5 {
    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);
}

.module-8cc8 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active-3793 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-3793 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;
}

.active-3793 li:last-child {
    border-bottom: none;
}

.active-3793 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.selected_11cb {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .selected_11cb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .selected_11cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-e077 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.top-e077:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top-e077.accordion_6487 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .top-e077.accordion_6487 {
        grid-column: span 3;
    }
}

.card-easy-44f5 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.top-e077.accordion_6487 .card-easy-44f5 {
    background: rgba(6, 182, 212, 0.1);
}

.pressed-b500 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rough-b36f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.top-e077.accordion_6487 .rough-b36f {
    color: var(--info-color);
}

.primary-cool-7aee {
    padding: 1.5rem;
    text-align: center;
}

.medium_e41d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.top-e077.accordion_6487 .medium_e41d {
    color: var(--info-color);
}

.link-large-5547 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.static-5587 {
    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 */
.orange-a0d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-a0d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-in-368b {
    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);
}

.description-in-368b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down-27ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-61b4 {
    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);
}

.mini-cff5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_slow_9aeb {
    flex: 1;
}

.search-31a1 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pressed-98ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast-d42b {
    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);
}

.dim_ccad {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.link_active_c64c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.active_fc0d {
    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);
}

.chip-yellow-bb4d {
  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);
}

.chip-yellow-bb4d .rough-1ff6 {
    text-align: center;
}

.chip-yellow-bb4d .complex-94eb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.chip-yellow-bb4d .column_28a8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tabs_large_7c81 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_78ed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-03b7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.silver-cc50 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-light-6252 {
    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);
}

.last_baed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient_b934 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-32a7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame-32a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-32a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-445e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.block-445e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-71da {
    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);
}

.purple_ddd8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.breadcrumb_slow_745d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tall-4b17 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tall-4b17.caption-e244 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tall-4b17.hidden-orange-35f8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tall-4b17.dynamic_5cec {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.bright-4cb4 {
    padding: 1.5rem;
    text-align: center;
}

.brown-769e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight_7b8e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight_7b8e .hidden-4479 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.down-dd3c {
    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);
}

.down-dd3c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.link-f499 {
  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);
}

.aside-red-f0ea {
    text-align: center;
}

.aside-red-f0ea .complex-94eb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.aside-red-f0ea .column_28a8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.notification_stale_7329 { text-align: center; }
.shade-cold-2e46 { text-align: left; }
.fast-1bd4 { text-align: right; }

.breadcrumb-pro-fe32 { margin-bottom: 0; }
.old-0b01 { margin-bottom: 0.5rem; }
.search-e3ad { margin-bottom: 1rem; }
.disabled_east_f144 { margin-bottom: 1.5rem; }
.fresh_0375 { margin-bottom: 2rem; }

.sort_white_7200 { margin-top: 0; }
.layout_black_c46b { margin-top: 0.5rem; }
.sort-warm-f565 { margin-top: 1rem; }
.message_3b0d { margin-top: 1.5rem; }
.tiny-8ea4 { margin-top: 2rem; }

.fn-hidden-ee76 { display: none; }
.fn-visible-ee76 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .east-8397 {
        padding: 6rem 0 3rem;
    }
    
    .tooltip-brown-9d1b {
        text-align: center;
    }
    
    .soft_7d5d {
        text-align: center;
    }
    
    .small-af77 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .filter-advanced-d75a,
    .logo_full_8376,
    .under-ab81,
    .last-7d32 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .east-8397 {
        background: none;
    }
}

/* Providers Section */
.nav-hard-03f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_2ba6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_2ba6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_2ba6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-a0a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard-a0a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-70c7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.alert_simple_55e6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.component-e6f5 {
    list-style: none;
    padding: 0;
}

.component-e6f5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.component-e6f5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section-west-a69c {
    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);
}

.section-west-a69c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.primary-dd66 {
    padding: var(--section-padding);
}

.new-7860 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new-7860 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-current-9242 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail-current-9242:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.primary_basic_8dcc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.selected_6cd2 {
    display: flex;
    flex-direction: column;
}

.list_hard_48c0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.detail-582d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.preview-easy-1468 {
    color: var(--accent-color);
}

.row_b89c {
    font-size: 1.25rem;
}

.search_dynamic_9219 {
    margin-bottom: 1rem;
}

.search_dynamic_9219 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.info_3b2e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.chip_0e7f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.rough-1ff6 {
    text-align: center;
}

.complex-94eb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column_28a8 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.section-pink-96b6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.solid-fdae {
    margin: 2rem 0;
}

.preview_87e8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.preview_87e8 .row-98b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver-769f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.iron_2ed4 {
    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;
}

.iron_2ed4:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.short-5d49 {
    font-size: 2rem;
}

.notification_20e9 {
    display: flex;
    flex-direction: column;
}

.nav-dc49 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pro_6b4c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.plasma_abf3 {
    padding: var(--section-padding);
}

.cold_6116 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .cold_6116 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cold_6116 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_58d4 {
    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);
}

.accent_58d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent_58d4 .complex-94eb {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.accent_58d4 .column_28a8 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.accent_58d4 .slow_481f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.mini-b66c {
    margin-top: 4rem;
}

.left_8acf {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.simple_ec93 {
    overflow-x: auto;
}

.message-4761 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.message-4761 thead {
    background: var(--accent-color);
}

.message-4761 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.message-4761 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.message-4761 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.message-4761 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.outer_e5ae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-425a {
    max-width: 900px;
    margin: 0 auto;
}

.tag_62a3 {
    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);
}

.tag_62a3:hover {
    border-color: var(--accent-color);
}

.lite-5443 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.lite-5443 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.cool_1850 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.tag_62a3.fn-active-ee76 .cool_1850 {
    transform: rotate(45deg);
}

.chip_simple_76ca {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.tag_62a3.fn-active-ee76 .chip_simple_76ca {
    max-height: 1000px;
}

.chip_simple_76ca p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.wood_f915 {
    padding: var(--section-padding);
}

.hard-d8fd {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.outline-middle-0cbc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-slow-f25b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-slow-f25b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tiny_87f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_1654 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.carousel-yellow-f802 {
    font-size: 2rem;
}

.alert_cool_8b7a {
    color: var(--text-white);
    margin: 0;
}

.notice-bac8 {
    list-style: none;
    padding: 0;
}

.notice-bac8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-bac8 li:last-child {
    border-bottom: none;
}

.basic-bd00 {
    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);
}

.basic-bd00 p {
    color: var(--success-color);
    margin: 0;
}

.component-fc84 {
    margin-top: 3rem;
}

.text-cb46 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.button_0db8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button_0db8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-6238 {
    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);
}

.soft-fd90 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active-6238 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.photo-top-f7e0 {
    padding: var(--section-padding);
}

.top-f25e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-f25e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-right-c4fc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card-right-c4fc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tag-b3dd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-bc4b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.outer_f861 {
    flex: 1;
}

.sidebar_up_148b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.black-0eb9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.texture-dc87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion_d61f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.motion_d61f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hard-fa32 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.notification_06e1 {
    padding: var(--section-padding);
}

.heading_a499 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.out-0074 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out-0074 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_d5ae {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_fefa, .layout_cc83, .text_bronze_4013 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.text_bronze_4013 {
    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 */
.middle-f833 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_13a5 {
    margin: 2rem 0;
}

.green-2f55 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-fcb1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.item-easy-f5e6 {
    list-style: none;
    padding: 0;
}

.item-easy-f5e6 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;
}

.item-easy-f5e6 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.item-easy-f5e6 li:last-child {
    border-bottom: none;
}

.basic-9438 {
    text-align: center;
    margin-top: 2rem;
}

.wood-a062 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.layout_1aca {
    padding: var(--section-padding);
}

.video-gas-198d {
    margin: 2rem 0;
}

.form_4dca {
    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) {
    .form_4dca {
        flex-direction: column;
        align-items: flex-start;
    }
}

.form_4dca:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.new-1ed6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.summary-e9d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.icon-advanced-f29d {
    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;
}

.shade-blue-2945 {
    flex: 1;
}

.pattern-5c93 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.complex-df47 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.bottom_0192 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.button_left_b17d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .button_left_b17d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sort_advanced_b2e4 {
    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);
}

.sort_advanced_b2e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort_advanced_b2e4 .complex-94eb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort_advanced_b2e4 .column_28a8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.overlay-841c {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_2ef5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.motion_2ef5 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.bright-01aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .bright-01aa {
        grid-template-columns: 1fr 1fr;
    }
}

.upper_e421 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-0576 {
    margin-bottom: 1.5rem;
}

.cold-0576 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cold-0576 input,
.cold-0576 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;
}

.cold-0576 input:focus,
.cold-0576 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.footer-afae {
    width: 100%;
    margin-top: 1rem;
}

.panel_right_0b04 {
    display: flex;
    align-items: center;
}

.message_new_8332 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.notification_8097 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tall-924f {
    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;
}

.active_906a {
    color: var(--text-gray);
}

.tall_7156 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.wrapper-4a77 {
    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);
}

.wrapper-4a77 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.sidebar_e476 {
    margin-top: 3rem;
}

.media_6d81 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.active-cb42 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-4169 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.left-6d5e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.left-6d5e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.outer-6f2a {
    padding: var(--section-padding);
}

.purple_2c2f {
    margin: 2rem 0;
}

.container-left-bf34 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.modal_2c16 {
    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;
}

.modal_2c16:hover, .modal_2c16.fn-active-ee76 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.bronze_76d5 {
    display: none;
}

.bronze_76d5.fn-active-ee76 {
    display: block;
}

.lower_bc6a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_ec4f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.large-2a6a h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.large-2a6a ul {
    list-style: none;
    padding: 0;
}

.large-2a6a ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.large-2a6a ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.accent-short-10da {
    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 */
.preview_c920 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_active_9ca3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-6094 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon_9c27 {
    color: var(--accent-color);
    margin: 0;
}

.button-6f14 {
    display: flex;
    gap: 1.5rem;
}

.highlight-9f3b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.disabled_fece {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.element-7c8a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.element-7c8a.east-1008 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.element-7c8a.left-4e86 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.element-7c8a.hover_east_28e1 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.thick_1d4a {
    margin-top: 2rem;
}

.full-befd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.section-green-b7d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .section-green-b7d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_small_fbb3 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.table-4f14 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.header-small-81f6 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.notification-middle-00df {
    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 */
.sort_b37c {
    padding: var(--section-padding);
}

.aside_fc7c {
    margin: 2rem 0;
}

.widget_solid_bff0 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.sort_red_2061 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.bright_bd4a {
    list-style: none;
    padding: 0;
}

.bright_bd4a 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;
}

.bright_bd4a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.bright_bd4a li:last-child {
    border-bottom: none;
}

.chip-7d0e {
    margin: 2rem 0;
}

.simple-c5c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.nav_ed59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nav_ed59 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input_full_7a77 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot-8532 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_aa35 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.up-ab3a {
    margin-top: 2rem;
}

.outline_cf86 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.title_west_b73a {
    list-style: none;
    padding: 0;
}

.hidden_1fca {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hidden_1fca a {
    color: var(--accent-color);
    text-decoration: none;
}

.hidden_1fca a:hover {
    text-decoration: underline;
}

.caption-5fd9 {
    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 */
.widget-9502 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_aa01 {
    margin: 2rem 0;
}

.cold_b1e7 {
    margin-bottom: 3rem;
}

.cold_b1e7 .list-fcb1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.under-162d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wood_f7d3 {
    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);
}

.wood_f7d3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.media_b063 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .media_b063 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-44eb {
    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 */
.thick_7035 {
    padding: var(--section-padding);
}

.mask_smooth_cfe6 {
    margin: 2rem 0;
}

.filter-fluid-13fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gold-2773 {
    overflow-x: auto;
    margin: 2rem 0;
}

.avatar_up_bf7d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.pattern_plasma_2129 {
    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;
}

.pagination-hot-1325 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.panel-first-4db4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .panel-first-4db4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-16e0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-16e0 .row-98b9 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.banner-16e0 .complex_1482 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture_focused_3076 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.hovered-ce62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-07f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-07f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_44cf {
    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;
}

.rough_44cf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.rough_0671 {
    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);
}

.row-b613 {
    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;
}

.card-d021 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_left_e1ec {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.iron_116d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.frame_first_5f90 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-c210 {
    color: var(--text-white);
    font-weight: 600;
}

.grid-tiny-8b06 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture_8447 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.picture_8447 .primary-left-f7b7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.info_5f61 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info_5f61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-ed5d {
    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);
}

.selected-ed5d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.selected-ed5d .complex-94eb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected-ed5d .column_28a8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hidden_cb79 {
    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);
}

.accordion-1083 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.accordion-1083 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.blue_c0cb {
    margin: 2rem 0;
}

.panel-9f60 {
    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);
}

.panel-9f60:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.progress-large-6f9a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop-8ef8 {
    flex: 1;
}

.logo-bright-3d66 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag_first_c9b8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hero-hard-bad1 {
    margin: 2rem 0;
}

.card-13d5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-13d5 .complex_1482 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.card-13d5 .box-full-b43e {
    color: var(--text-gray);
    margin: 0;
}

.basic-e601 {
    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);
}

.basic-e601 .paragraph-839c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.picture_focused_3076 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.smooth_03d6 {
    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;
}

.smooth_59f8 {
    flex: 1;
}

.border_hard_8d39 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.badge_1fb0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.detail-tall-8740 {
    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;
}

.tiny_f5a1 {
    flex: 1;
}

.current-6fd2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sort-black-2b32 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.red_f313 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.avatar_thick_a62e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.video-focused-6911 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.video-focused-6911 .primary-left-f7b7 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.summary_9305 {
    margin-top: 2rem;
}

.summary_9305 .text-cb46 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.component_west_cbf9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-2b5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .lower-2b5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower-2b5a .rough-1ff6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-8cc8 {
    margin: 2rem 0;
}

.feature-744a {
    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 */
.mini_8d9a {
    padding: var(--section-padding);
}

.label_5ec9 {
    margin-top: 1rem;
}

.caption-5891 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.caption-5891 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.caption-5891 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.description-motion-b0ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-9f06 {
    margin: 2rem 0;
}

.progress_fixed_f268 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.shade_old_a53f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stone-3ac5 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.message_right_752d {
    margin: 2rem 0;
}

.east_e0c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.east_e0c9 .list-fcb1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-smooth-9264 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .info-smooth-9264 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.avatar-gold-90c8 {
    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);
}

.simple-df75 {
    color: var(--text-white);
    font-weight: 600;
}

.focused_3e2e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.dropdown-old-aae0 {
    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);
}

.dropdown-old-aae0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.description_steel_79b1 {
    padding: var(--section-padding);
}

.component-436c {
    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;
}

.component-436c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.primary_south_7b46 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.primary_south_7b46 .soft-fd90 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_south_7b46 .last-5ade {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.backdrop_fc89 {
    flex: 1;
}

.tertiary_8a68 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.out-91f9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.out-91f9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.out-91f9 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.paragraph-d4f0 {
    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);
}

.paragraph-d4f0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-d4f0 strong {
    color: var(--warning-color);
}

/* Slots Section */
.orange_ca6f {
    padding: var(--section-padding);
}

.bronze-3840 {
    margin: 2rem 0;
}

/* Table Games Section */
.primary_lite_af30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_wood_4d8f {
    margin: 2rem 0;
}

.detail_current_0a3a {
    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);
}

.detail_current_0a3a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.detail_current_0a3a .surface_4bcc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail_current_0a3a .panel_3a79 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.thumbnail_last_8f68 {
    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);
}

.thumbnail_last_8f68 .paragraph-839c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.upper-bb83 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery-fast-3489 {
    margin: 2rem 0;
}

.badge-under-d027 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.brown_e636 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout_f4cf {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.west_0244 {
    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);
}

.west_0244:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.west_0244.fn-active-ee76 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_8b94 {
    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);
}

.brown_7d9d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.brown_7d9d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.bronze_154f {
    padding: var(--section-padding);
}

.avatar-bda1 {
    margin: 2rem 0;
}

.current-11fa {
    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);
}

.current-11fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .current-11fa {
        flex-direction: column;
        align-items: flex-start;
    }
}

.article-e5ba {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.primary-1ea5 {
    flex: 1;
}

.section_d734 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.accordion-d1e6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.aside_9699 {
    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;
}

.hero-684e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.simple-00cf {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.photo-clean-742b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.silver_96f9 {
    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;
}

.silver_96f9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.link-d7fb {
    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-huge-f9dc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside-huge-f9dc strong {
    color: var(--accent-color);
}

/* New Games Section */
.next-924e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_0ff3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shadow_0ff3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_0ff3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-7135 {
    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;
}

.fast-7135:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box-7123 {
    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;
}

.progress-563d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.input_new_1917 {
    font-size: 2rem;
}

.action_63b0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.slow_bbf0 {
    flex: 1;
}

.banner-de15 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.bright_341f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.title-cool-e9fa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.south_8f61 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.outline_c32a {
    padding: 0.375rem 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
}

.main-8030 {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-normal);
    display: block;
}

.main-8030:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.first_2488 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple_5768 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title_slow_6fb1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .title_slow_6fb1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-simple-18bf {
    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);
}

.content_272b {
    color: var(--text-white);
    font-weight: 600;
}

.modal_5b20 {
    color: var(--accent-color);
    font-weight: 600;
}

.caption-53ba {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.caption-53ba strong {
    color: var(--accent-color);
}

/* Security Section */
.next_cc39 {
    padding: var(--section-padding);
}

/* Benefits Section */
.content_cool_cf18 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.content-4d76 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.hero_yellow_534d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel_685d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.highlight_lower_2c02 {
    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) {
    .highlight_lower_2c02 {
        flex-direction: column;
        gap: 1rem;
    }
}

.highlight_lower_2c02:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.highlight_lower_2c02 .detail-tall-8740 {
    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;
}

.highlight_lower_2c02 .tiny_f5a1 {
    flex: 1;
}

.highlight_lower_2c02 .current-6fd2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.highlight_lower_2c02 .sort-black-2b32 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.button_outer_827f {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_outer_827f .search-31a1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button_outer_827f .hidden-current-3286 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button_outer_827f .hidden-current-3286 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.button_outer_827f .hidden-current-3286 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.container_complex_c936 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.outer-7e4c {
    padding: var(--section-padding);
}

.tabs_8cfe {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tabs_8cfe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_small_b287 {
    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);
}

.filter_small_b287:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.filter_small_b287 .last_a02d {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_small_b287 .container_medium_dbc6 {
    flex: 1;
}

.filter_small_b287 .active_b446 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter_small_b287 .dropdown-641f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.focused-7062 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused-7062 .basic_b3a4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused-7062 .caption-motion-bcbf {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.focused-7062 .caption-motion-bcbf 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);
}

.focused-7062 .caption-motion-bcbf li:last-child {
    border-bottom: none;
}

.focused-7062 .caption-motion-bcbf 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;
}

.focused-7062 .caption-motion-bcbf li strong {
    color: var(--text-white);
}

.hovered-b811 {
    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);
}

.hovered-b811 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hovered-b811 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.menu-57e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_aa55 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tabs_aa55 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_complex_72c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary_complex_72c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gallery_4644 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_copper_29c0 {
    font-size: 2rem;
}

.overlay_908f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.outer-1abc {
    flex: 1;
}

.gallery-old-02f8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-old-02f8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gallery-old-02f8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.progress_steel_10d3 {
    margin-top: 3rem;
}

.widget_solid_bff0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sort_red_2061 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bright_bd4a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright_bd4a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.bright_bd4a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.bright_bd4a li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.easy-f0e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red-4e94 {
    margin: 2rem 0;
}

.hot-d7a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.hot-d7a9 .list-fcb1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner-motion-5a76 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .banner-motion-5a76 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar-static-c9f0 {
    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);
}

.sidebar-static-c9f0:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.text_warm_5322 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.huge_fddb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.nav-5c0b {
    padding: var(--section-padding);
}

.popup-bb37 {
    margin: 2rem 0;
}

.in_9ab9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .in_9ab9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in_9ab9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_1c1c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pagination_1c1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.glass-9df5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.frame-a035 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.dropdown_black_a52a {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown_black_a52a.text-lite-e629 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.logo_fixed_fe0e {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.iron-2ecc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.center-c6df {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-eaa3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav_26d4 {
    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);
}

.nav_26d4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_26d4 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.advanced_1360 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview-9a6c {
    margin: 2rem 0;
}

.item-cd85 {
    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) {
    .item-cd85 {
        flex-direction: column;
        gap: 1rem;
    }
}

.item-cd85:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.item-cd85::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);
}

.logo_focused_3bf8 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.bottom-c276 {
    flex: 1;
}

.image_1832 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hard-88d4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-88d4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_18f6 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_static_4dd3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal_905b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal_905b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_wood_33e1 {
    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);
}

.article_ae5b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accent_fe90 {
    flex: 1;
}

.pattern_1ae6 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-bottom-41da {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.current_30dd {
    margin-top: 2rem;
    text-align: center;
}

.pressed_59a3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pressed_59a3 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.middle_e1f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle_e1f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_06ba {
    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);
}

.hidden_06ba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden_06ba .block_9e1d {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_06ba .list_afca {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.hidden_06ba .photo_focused_f8cb {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.hidden_06ba .background_f6cd {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.video_under_88b6 {
    padding: var(--section-padding);
}

.mini-13df .article_2d6c {
    flex: 1;
}

/* Promo Calendar Section */
.panel-simple-bc79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.last_fc29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_fc29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message_3d08 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_up_5490 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.thick-01a3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fluid-2de9 {
    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);
}

.pressed_f468 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal_bf86 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.alert_78e9 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.alert_78e9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert_78e9 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.rough_40ce {
    padding: var(--section-padding);
}

.overlay-334c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .overlay-334c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.yellow-e2e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_eda2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_b936 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_b936 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty_6bf8 {
    margin-top: 3rem;
}

.dirty_6bf8 .widget_solid_bff0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dirty_6bf8 .sort_red_2061 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dirty_6bf8 .bright_bd4a {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dirty_6bf8 .bright_bd4a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dirty_6bf8 .bright_bd4a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dirty_6bf8 .bright_bd4a li strong {
    color: var(--warning-color);
}

.carousel-4fbb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel-4fbb strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.black-078f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_red_bbd2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_red_bbd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_a6c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_a6c9 .list-fcb1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.picture-6ecb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview_glass_fb47 {
    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);
}

.preview_glass_fb47:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gradient_solid_835d {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma_6903 {
    flex: 1;
}

.image_d879 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.glass-6ffb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.table-ea00 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.over-f834 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.item-6cdc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .item-6cdc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_thick_e4a5 {
    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);
}

.chip_thick_e4a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fast_c4fa {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_north_6055 {
    color: var(--text-gray);
    font-size: 1rem;
}

.motion_2ef5 {
    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);
}

.aside-bronze-1c49 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.aside-bronze-1c49 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.purple_f48e { 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; }
.north-52a7, .info-30bd { max-width:100%; height:auto; }

.carousel_pro_8357, .advanced-ae49, .frame-6e89 { white-space:normal; }

.tooltip-brown-9d1b,
.soft_7d5d,
.orange-a0d0,
.middle_e1f9,
.hero-hard-bad1,
.frame-32a7 {
  flex-wrap:wrap;
}

[class*="grid"],
.item-6cdc,
.in_9ab9,
.input_e021 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.east-8397 img,
.soft_7d5d img,
.info-b14f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.silver_b42c, .tall_78c0,
.gas_2b02, .hover-copper-74fa {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.simple_ec93 { width:100%; overflow-x:auto; }
.simple_ec93 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.mask_2ba6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .mask_2ba6 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.hard-a0a9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.cold_6116,
.gallery_new_cafb,
.outer-9d5e,
.basic_1c30,
.button_left_b17d,
.item-6cdc,
.in_9ab9,
.input_e021,
.link-f499,
.avatar-bda1,
.mask_2ba6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .cold_6116,
  .gallery_new_cafb,
  .outer-9d5e,
  .basic_1c30,
  .button_left_b17d,
  .item-6cdc,
  .in_9ab9,
  .input_e021,
  .link-f499,
  .avatar-bda1,
  .mask_2ba6 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.accent_58d4,
.sort_advanced_b2e4,
.chip_thick_e4a5,
.tooltip-923c,
.pagination_1c1c,
.aside-red-f0ea,
.current-11fa,
.hard-a0a9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.tabs-action-26ba,
.heading_solid_c6ef,
.brown_0680 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tabs-action-26ba > *,
.heading_solid_c6ef > *,
.brown_0680 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 35cc */
.ghost-box-n8 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
