/* {$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;
}

.mask-paper-7577 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.cold_eda5 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cold_eda5 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cold_eda5 {
        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 */
.caption_79a8 {
    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);
}

.bottom-86ec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .bottom-86ec {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .disabled-action-6c99 {
        grid-column: 1;
    }
    
    .pattern-c083 {
        grid-column: 2;
    }
    
    .new_1a13 {
        grid-column: 3;
    }
}

.disabled-action-6c99 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.disabled-action-6c99:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav-fluid-7c36 {
    display: none;
}

@media (min-width: 1024px) {
    .nav-fluid-7c36 {
        display: block;
    }
}

/* Grouped Navigation */
.shade_copper_77dd {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.bottom-ceb8 {
    position: relative;
}

.summary_outer_809a {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.bottom-ceb8 .content-east-15e8 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.content-east-15e8 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.card-f8a4 {
    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;
}

.card-f8a4:hover,
.card-f8a4.fn-active-3970 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.image_dirty_76f5 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .image_dirty_76f5 {
        display: flex;
    }
}

/* Mobile Register Button */
.pattern-c083 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .pattern-c083 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.pressed_7101 {
    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;
}

.pressed_7101::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 */
.new_1a13 {
    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) {
    .new_1a13 {
        display: none;
    }
}

.new_1a13 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.new_1a13.fn-active-3970 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.new_1a13.fn-active-3970 span:nth-child(2) {
    opacity: 0;
}

.new_1a13.fn-active-3970 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.basic_6a9f {
    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;
}

.basic_6a9f.fn-active-3970 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.sidebar-slow-bf05 {
    overflow: hidden;
}

.glass-97f9 {
    list-style: none;
    padding: 0.75rem 0;
}

.copper_ddd1 {
    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;
}

.copper_ddd1:hover,
.copper_ddd1.fn-active-3970 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.copper_ddd1.pink-97d2 {
    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;
}

.copper_ddd1.pink-97d2::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 */
.form_e130 {
    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;
}

.highlight_clean_1617 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.highlight_clean_1617:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.icon-98c0 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.icon-98c0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.clean-d16e {
    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;
}

.clean-d16e:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.wrapper_e828 {
    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;
}

.status_731b {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.status_731b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.logo-bottom-c95e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.logo-bottom-c95e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.title-ac89 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.title-ac89: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);
}

.rough-7c90 {
    font-size: 1em;
    font-weight: 700;
}

.content-black-39ba {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.preview_pink_3e91 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.preview_pink_3e91::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;
}

.paragraph_paper_9b2d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .paragraph_paper_9b2d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.photo-a4c3 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.surface_b148 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.popup_gas_d80b {
    margin-bottom: 2rem;
}

.tooltip-489e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tooltip-489e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner_6b26 {
    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);
}

.nav_4ba1 {
    font-size: 1.5rem;
}

.component_8d3c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.focused_360a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs_3d8a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tabs_3d8a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.row-a392 {
    text-align: center;
    margin-bottom: 3rem;
}

.alert_dc9a {
    margin-bottom: 1rem;
}

.mask_old_2bf2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.prev-38eb {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .prev-38eb {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .prev-38eb.stone-2f77 {
        direction: rtl;
    }
    
    .prev-38eb.stone-2f77 > * {
        direction: ltr;
    }
}

.table-03d9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.table-03d9:first-child {
    margin-top: 0;
}

.popup-d5ca {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.current-3f62 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.current-3f62:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.grid-blue-e14e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-blue-e14e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-da43 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pattern-8b45 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.rough-6cc8 {
    list-style: none;
}

.rough-6cc8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rough-6cc8 li:last-child {
    border-bottom: none;
}

/* Games Features */
.hard_34ec {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.tooltip_current_f48c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hidden_dd76 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro-ded6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.column_68f3 {
    margin: 2rem 0;
}

.block_narrow_6a01 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.backdrop_plasma_b6e8 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.card_stone_d3c6 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tooltip_plasma_c557 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.hovered-0b7f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered-0b7f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_132a {
    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);
}

.out_132a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.red-c071 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shade_7bcb {
    font-size: 1.5rem;
}

.liquid-b26f {
    color: var(--accent-color);
    margin: 0;
}

.center_da4b {
    list-style: none;
}

.center_da4b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.center_da4b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.first_59b3 {
    margin: 2rem 0;
}

.top-e3c0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.active-41ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .active-41ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-huge-c2ca {
    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);
}

.backdrop-237a {
    font-size: 1.25rem;
}

.backdrop-d3f3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.prev-ef98,
.badge-over-251a {
    text-align: center;
    margin: 2rem 0;
}

.new_eceb,
.article-current-5a56 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.item_904f {
    margin: 2rem 0;
    text-align: center;
}

.white_bed0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.white_bed0::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;
}

.layout_e30f {
    position: relative;
    z-index: 1;
}

.message_static_5f1e {
    margin-bottom: 1rem;
}

.stone_839d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.out-75fc {
    margin-bottom: 3rem;
}

.primary-97e5 {
    margin-top: 3rem;
}

.card-next-8272 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card-next-8272 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-next-8272 .inner_6b26 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_cf89 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-1637 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.list-fresh-6f32 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.pagination-fadf {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .pagination-fadf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pagination-fadf {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.gradient_cool_77a9 {
    margin-bottom: 1rem;
}

.mask_a8f3 img {
    margin-bottom: 1rem;
}

.yellow-001e {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-basic-9aeb {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.selected-62a2 {
    list-style: none;
}

.selected-62a2 li {
    margin-bottom: 0.5rem;
}

.selected-62a2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.selected-62a2 a:hover {
    color: var(--accent-color);
}

.hovered_baa0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.description-407a {
    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);
}

.description-407a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.full_beaa {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.full_beaa p {
    margin-bottom: 0.25rem;
}

.logo-south-6dda {
    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) {
    .logo-south-6dda {
        flex-direction: row;
    }
}

.hero_cecd {
    text-align: center;
}

@media (min-width: 768px) {
    .hero_cecd {
        text-align: left;
    }
}

.hero_cecd p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.purple-2f1b {
    font-size: 0.75rem !important;
}

.over-202e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.status_cf1d {
    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);
    }
}

.overlay_active_9c84 {
    animation: fadeInUp 0.6s ease-out;
}

.wood_b5f9 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.white_e7e3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white_e7e3 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.active_hot_dbe7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_hot_dbe7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline_rough_3319 {
    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);
}

.outline_rough_3319 .hidden_dd76 {
    font-size: 1.25rem;
}

.outline_rough_3319 .texture_d85a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.lower-114d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lower-114d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft_b1e9 {
    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);
}

.soft_b1e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_320f {
    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);
}

.paragraph_6e4a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.heading_under_7beb {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-1ef1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_e6d1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fluid_e6d1 .pro-ded6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fluid_e6d1 .breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_slow_c524 {
    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);
}

.blue-1d97 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.blue-1d97 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.blue-1d97 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hover_down_44d0 {
    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);
}

.breadcrumb-full-d58e {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title_bronze_9699 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title_bronze_9699 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.title_bronze_9699 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);
}

.title_bronze_9699 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title_bronze_9699 input::placeholder {
    color: var(--text-muted);
}

.caption_pro_96df {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.outline_steel_9f44 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.outline_steel_9f44 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.middle_6e1f {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.middle_6e1f:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.active-41ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-41ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-huge-c2ca {
    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);
}

.article-huge-c2ca .backdrop-237a {
    font-size: 1.25rem;
}

.article-huge-c2ca .backdrop-d3f3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.mask-dd78 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_mini_e599 {
    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);
}

.preview_mini_e599 .hidden_dd76 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_mini_e599 .pro-ded6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_mini_e599 .breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.steel-0449 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red_1f90 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.red_1f90 .orange-7112 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.red_1f90 .layout-0a5c {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-b254 {
    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);
}

.border-4cc1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border-4cc1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_mini_e1c4 {
    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);
}

.pattern_mini_e1c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper_b296 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.basic-fb56 {
    flex: 1;
}

.surface_5b35 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled-huge-1333 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.photo_5ddd {
    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);
}

.photo_5ddd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.slider-up-ded9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-up-ded9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma_f9bb {
    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);
}

.plasma_f9bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-e2f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-complex-ab2f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copper-e7c1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.up_3cef {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thick_03bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_2c0c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_top_3eda {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion_top_3eda .gallery_8f55 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion_top_3eda .detail-5313 {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver_0c13 {
    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);
}

.list_gas_70cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_4f38 {
    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);
}

.label_4f38 .hidden_dd76 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_4f38 .pro-ded6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_4f38 .breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-west-4710 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-west-4710 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top_3e90 {
    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);
}

.top_3e90:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.highlight_huge_9e25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_huge_9e25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_action_36fe {
    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_action_36fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-center-f4db {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-4bab {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.backdrop_plasma_b6e8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.west_3ff6 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.module_98fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-smooth-963e {
    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);
}

.border-smooth-963e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_0b1f {
    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);
}

.feature-advanced-faf0 {
    flex: 1;
}

.hover_pink_56e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.panel-e6ee {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.photo-8b63 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze_7cfe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-8c2a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-8c2a .orange-7112 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-8c2a .layout-0a5c {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-over-251a {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small_cd07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small_cd07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.footer-orange-1163 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-orange-1163 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_white_535b {
    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);
}

.message_white_535b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_40fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-755a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-top-f226 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_ef50 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element_d818 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture-9269 {
    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);
}

.filter_58c0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-326c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-b64f {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_gas_70cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_4f38 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.label_4f38 .pro-ded6 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_4f38 .breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze-e564 {
    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);
}

.block-3885 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block-3885 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block-3885 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.middle_0f93 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.middle_0f93:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-lower-c469 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.card-dirty-a712 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.basic_2b92 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.notification-south-f0a3 {
    padding: 1.5rem;
}

.info-top-0efa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.under_8b35 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.under_8b35 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;
}

.under_8b35 li:last-child {
    border-bottom: none;
}

.under_8b35 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.main_8c4a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_8c4a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-a199 {
    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);
}

.search-a199:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_next_1195 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo_hot_af03 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.north-28c2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture_green_08c0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element_fluid_c83b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left-1d90 {
    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);
}

.brown_4f2a {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_77c3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid-84f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-6537 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.container-42ae {
    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);
}

.list_a403 {
    text-align: center;
}

.first-400f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bronze-d7e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mini_e0bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section-bright-0d22 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-bright-0d22 .pro-ded6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section-bright-0d22 .breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-clean-b735 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table-clean-b735 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table-clean-b735 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_b9a5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.basic_b9a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description_4d0b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wide-6cb2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pro-ded6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.current_0ad6 {
    padding: 1.5rem;
}

.breadcrumb-1b68 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture_4bb4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture_4bb4 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;
}

.picture_4bb4 li:last-child {
    border-bottom: none;
}

.picture_4bb4 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.border_solid_4835 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.heading-plasma-f6a9 {
    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);
}

.heading-plasma-f6a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-outer-1f04 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-0f5b {
    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);
}

.modal_320f {
    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;
}

.paragraph_6e4a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_under_7beb {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-under-eb3d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_iron_a2c3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark-c530 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_3577 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.right_2084 {
    display: flex;
    gap: 1rem;
}

.right_2084 .dark-f6b1 {
    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;
}

.dirty_2899 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.container-7fdb {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.last-6da3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.last-6da3 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;
}

.last-6da3 li:last-child {
    border-bottom: none;
}

.last-6da3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.tall_8b33 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tall_8b33 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tall_8b33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-new-b7a5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-new-b7a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper_4a92 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-e4ce {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gallery_8f55 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tertiary-huge-08bd {
    font-size: 1rem;
}

.last-fb46 {
    padding: 1.5rem;
}

.detail-5313 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.border-63e8 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.border-63e8 .list_a403 {
    text-align: center;
}

.border-63e8 .bronze-d7e7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.border-63e8 .motion_202a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.middle_91fa {
    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);
}

.middle_91fa:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tag-hard-75eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-hard-75eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze_571c {
    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);
}

.bronze_571c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-c08b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-191e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input-large-fcc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-d150 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_fixed_309d {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-53d2 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.search_596e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple_947c {
    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);
}

.over_18c1 {
    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;
}

.over_18c1.title-a6ee {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.over_18c1.secondary_2710 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.over_18c1.module-3dcd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.over_18c1.gas_a22e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.over_18c1.focus-right-70e4 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.text-last-0695 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-small-c6a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_bcf6 {
    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);
}

.notice_32a5 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.steel-0449 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steel-0449 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;
}

.steel-0449 li:last-child {
    border-bottom: none;
}

.steel-0449 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.module_6e5a {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .module_6e5a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_6e5a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module_a7e8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.module_a7e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_a7e8.info-simple-e353 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .module_a7e8.info-simple-e353 {
        grid-column: span 3;
    }
}

.content-wide-ded2 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.module_a7e8.info-simple-e353 .content-wide-ded2 {
    background: rgba(6, 182, 212, 0.1);
}

.copper-e117 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.shade_673f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.module_a7e8.info-simple-e353 .shade_673f {
    color: var(--info-color);
}

.text-b525 {
    padding: 1.5rem;
    text-align: center;
}

.chip_up_d95b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.module_a7e8.info-simple-e353 .chip_up_d95b {
    color: var(--info-color);
}

.shade_wood_d2c5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.west-1c7e {
    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 */
.detail_top_feab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_top_feab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_wide_fb7b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media_wide_fb7b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_fa05 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_mini_e599 {
    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);
}

.backdrop-237a {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-tall-2f60 {
    flex: 1;
}

.top-e3c0 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow-30e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_4bef {
    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);
}

.banner-54d7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.fresh_083e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status_cf1d {
    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);
}

.avatar_b104 {
  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);
}

.avatar_b104 .list_a403 {
    text-align: center;
}

.avatar_b104 .first-400f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.avatar_b104 .bronze-d7e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.small-0116 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs-930a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_d969 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask-bae8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-ebdb {
    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);
}

.upper-c770 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide_563c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_bac2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover_bac2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover_bac2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_6d1e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.surface_6d1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-simple-91a3 {
    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);
}

.tooltip-up-282a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status-wide-3cd4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.black_a4e6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.black_a4e6.menu_228c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.black_a4e6.item_0005 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.black_a4e6.stale-f55d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.highlight-5b23 {
    padding: 1.5rem;
    text-align: center;
}

.out_5bb2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.backdrop_red_1dc6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.backdrop_red_1dc6 .mask-1886 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.purple-c343 {
    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);
}

.purple-c343:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dropdown-medium-da92 {
  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);
}

.card_inner_f3fb {
    text-align: center;
}

.card_inner_f3fb .first-400f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.card_inner_f3fb .bronze-d7e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.progress_blue_7034 { text-align: center; }
.overlay_41be { text-align: left; }
.huge-9a79 { text-align: right; }

.filter_c6c8 { margin-bottom: 0; }
.pagination-west-4434 { margin-bottom: 0.5rem; }
.smooth_931f { margin-bottom: 1rem; }
.focus-1001 { margin-bottom: 1.5rem; }
.active_full_ceeb { margin-bottom: 2rem; }

.outline-507a { margin-top: 0; }
.surface_dim_d9f6 { margin-top: 0.5rem; }
.steel-daf4 { margin-top: 1rem; }
.progress-smooth-5d84 { margin-top: 1.5rem; }
.next-da2e { margin-top: 2rem; }

.fn-hidden-3970 { display: none; }
.fn-visible-3970 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .preview_pink_3e91 {
        padding: 6rem 0 3rem;
    }
    
    .paragraph_paper_9b2d {
        text-align: center;
    }
    
    .prev-38eb {
        text-align: center;
    }
    
    .tooltip-489e {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .caption_79a8,
    .basic_6a9f,
    .white_bed0,
    .list-fresh-6f32 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .preview_pink_3e91 {
        background: none;
    }
}

/* Providers Section */
.box-b7af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under_fe33 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_fe33 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .under_fe33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_fb4a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dirty_fb4a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lower-d6c4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fresh-0811 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade_c46a {
    list-style: none;
    padding: 0;
}

.shade_c46a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.shade_c46a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.light_9a3d {
    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);
}

.light_9a3d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.thumbnail-right-7f33 {
    padding: var(--section-padding);
}

.component-8cac {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-8cac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_83e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout_83e1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lite-3d7e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.label_1131 {
    display: flex;
    flex-direction: column;
}

.accent_5b0a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pattern_9060 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gallery_fixed_b990 {
    color: var(--accent-color);
}

.mask_6b79 {
    font-size: 1.25rem;
}

.table_22f2 {
    margin-bottom: 1rem;
}

.table_22f2 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.red-59ae {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.texture-5ee6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.list_a403 {
    text-align: center;
}

.first-400f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bronze-d7e7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.title_1ab2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_first_4a27 {
    margin: 2rem 0;
}

.preview-5a2d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.preview-5a2d .hidden_dd76 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-cf34 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.article_0c7a {
    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;
}

.article_0c7a:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tiny_81be {
    font-size: 2rem;
}

.input_current_36a0 {
    display: flex;
    flex-direction: column;
}

.hover-out-2f31 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pattern_7fa8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.picture-plasma-e686 {
    padding: var(--section-padding);
}

.complex_e008 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .complex_e008 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .complex_e008 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_9ab0 {
    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);
}

.form_9ab0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.form_9ab0 .first-400f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form_9ab0 .bronze-d7e7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.form_9ab0 .action-44f0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.shadow-620f {
    margin-top: 4rem;
}

.silver-07c2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.gradient-smooth-fb19 {
    overflow-x: auto;
}

.tooltip-c254 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tooltip-c254 thead {
    background: var(--accent-color);
}

.tooltip-c254 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.tooltip-c254 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-c254 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.tooltip-c254 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.paper_dc23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_dfc7 {
    max-width: 900px;
    margin: 0 auto;
}

.dirty-7529 {
    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);
}

.dirty-7529:hover {
    border-color: var(--accent-color);
}

.tiny_6f36 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.tiny_6f36 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.liquid_e109 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.dirty-7529.fn-active-3970 .liquid_e109 {
    transform: rotate(45deg);
}

.plasma_fac7 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.dirty-7529.fn-active-3970 .plasma_fac7 {
    max-height: 1000px;
}

.plasma_fac7 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.advanced-b5c0 {
    padding: var(--section-padding);
}

.blue-1d97 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.sidebar_rough_8082 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-wood-70b8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-wood-70b8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pink-befb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_91c3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current_cd97 {
    font-size: 2rem;
}

.feature_d623 {
    color: var(--text-white);
    margin: 0;
}

.hero_65a4 {
    list-style: none;
    padding: 0;
}

.hero_65a4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero_65a4 li:last-child {
    border-bottom: none;
}

.title_5b21 {
    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);
}

.title_5b21 p {
    color: var(--success-color);
    margin: 0;
}

.notification-focused-944e {
    margin-top: 3rem;
}

.container-7fdb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hidden-advanced-f6a4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden-advanced-f6a4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-40a2 {
    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);
}

.heading-first-6299 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.list-40a2 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.disabled_prev_ad46 {
    padding: var(--section-padding);
}

.dirty_ac93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty_ac93 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_e760 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gallery_e760:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.nav_ed2a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.content_e2a6 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shade_upper_59dc {
    flex: 1;
}

.feature-78cc {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.content_smooth_6f0b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.east-7f01 {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean_6ad0 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean_6ad0:last-child {
    border-bottom: none;
}

/* Comparison Section */
.dirty-2873 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.photo_fe61 {
    padding: var(--section-padding);
}

.feature-dark-f913 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.breadcrumb-b743 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-b743 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-b688 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-b72c, .item_outer_2bb2, .light-8135 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.light-8135 {
    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 */
.notice-a60a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_mini_76a2 {
    margin: 2rem 0;
}

.narrow_cc4f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light-f7fe {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bottom-a456 {
    list-style: none;
    padding: 0;
}

.bottom-a456 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;
}

.bottom-a456 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.bottom-a456 li:last-child {
    border-bottom: none;
}

.caption-stale-ae7e {
    text-align: center;
    margin-top: 2rem;
}

.modal-cool-6a4c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hard_725c {
    padding: var(--section-padding);
}

.red_8d21 {
    margin: 2rem 0;
}

.section-slow-ff5e {
    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) {
    .section-slow-ff5e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-slow-ff5e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.popup-simple-a8ec {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.notice_yellow_3a57 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pagination_soft_7a8c {
    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;
}

.module_south_13be {
    flex: 1;
}

.form-7099 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tooltip-100f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.section-selected-6de0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.dynamic-804d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .dynamic-804d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.preview_south_a9ed {
    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);
}

.preview_south_a9ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview_south_a9ed .first-400f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview_south_a9ed .bronze-d7e7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.label-4a82 {
    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);
}

.main-west-9457 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.main-west-9457 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.north_cadc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .north_cadc {
        grid-template-columns: 1fr 1fr;
    }
}

.tabs_997a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_59ed {
    margin-bottom: 1.5rem;
}

.pressed_59ed label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pressed_59ed input,
.pressed_59ed 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;
}

.pressed_59ed input:focus,
.pressed_59ed select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.title_inner_0f5f {
    width: 100%;
    margin-top: 1rem;
}

.alert-selected-fb9b {
    display: flex;
    align-items: center;
}

.link_9327 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.column_last_1087 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.light_09a3 {
    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;
}

.cool-ccfa {
    color: var(--text-gray);
}

.pattern_a89d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.caption_full_08b3 {
    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);
}

.caption_full_08b3 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.gallery_iron_308f {
    margin-top: 3rem;
}

.brown_3a57 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.shade_silver_3b82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_5a94 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.right_bad6 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.right_bad6:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.notice_145c {
    padding: var(--section-padding);
}

.input-dddd {
    margin: 2rem 0;
}

.hovered-12a3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.media-bright-7a01 {
    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;
}

.media-bright-7a01:hover, .media-bright-7a01.fn-active-3970 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.cold_a11a {
    display: none;
}

.cold_a11a.fn-active-3970 {
    display: block;
}

.green-f8f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-yellow-0f7c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.summary-974c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.summary-974c ul {
    list-style: none;
    padding: 0;
}

.summary-974c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.summary-974c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.alert-steel-9b4d {
    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 */
.widget_c71e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_b7d8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-pro-f5d0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero_f264 {
    color: var(--accent-color);
    margin: 0;
}

.upper_7c79 {
    display: flex;
    gap: 1.5rem;
}

.plasma_5ed7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask_6833 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.chip-old-83cc {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.chip-old-83cc.module_2471 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.chip-old-83cc.gallery-d696 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.chip-old-83cc.image-advanced-c080 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pattern-bottom-abdf {
    margin-top: 2rem;
}

.basic_3fc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shadow_hard_254f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .shadow_hard_254f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_c1d6 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.purple-8b85 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.breadcrumb_inner_1eeb {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.up_f6eb {
    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 */
.pagination_2909 {
    padding: var(--section-padding);
}

.white_2822 {
    margin: 2rem 0;
}

.tabs_middle_23ac {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.tag-hovered-3791 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.element_4608 {
    list-style: none;
    padding: 0;
}

.element_4608 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;
}

.element_4608 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.element_4608 li:last-child {
    border-bottom: none;
}

.input_ed0f {
    margin: 2rem 0;
}

.carousel_bf69 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.old-185c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .old-185c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-9dbb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-lower-1705 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status-silver-76a3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.black_2f4b {
    margin-top: 2rem;
}

.surface_5b35 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fast_e081 {
    list-style: none;
    padding: 0;
}

.breadcrumb-glass-0221 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.breadcrumb-glass-0221 a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-glass-0221 a:hover {
    text-decoration: underline;
}

.hard_4caa {
    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 */
.hot_54a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-167d {
    margin: 2rem 0;
}

.wood-6ce8 {
    margin-bottom: 3rem;
}

.wood-6ce8 .light-f7fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.photo_bronze_f748 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.title_aad2 {
    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);
}

.title_aad2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.primary_brown_3c9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .primary_brown_3c9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_up_a168 {
    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 */
.border_plasma_d18c {
    padding: var(--section-padding);
}

.breadcrumb_a045 {
    margin: 2rem 0;
}

.gallery-7f3b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.image-blue-9c21 {
    overflow-x: auto;
    margin: 2rem 0;
}

.middle-68ff {
    background: rgba(6, 182, 212, 0.1) !important;
}

.message_5e55 {
    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;
}

.soft-d435 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.feature-1e59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .feature-1e59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_ecf6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_ecf6 .hidden_dd76 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.icon_ecf6 .pro-ded6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast-d13e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.caption-steel-b43b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro-ea28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro-ea28 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_c434 {
    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;
}

.card_c434:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.text_98e1 {
    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);
}

.widget_2034 {
    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;
}

.thumbnail-stone-2ac9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.photo-lower-8c3a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hovered-7a8c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.carousel-fresh-df9e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-1f54 {
    color: var(--text-white);
    font-weight: 600;
}

.tag_yellow_d6f0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.alert-d6ff {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-d6ff .dark-f6b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.in_80d3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .in_80d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component-copper-e682 {
    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);
}

.component-copper-e682:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component-copper-e682 .first-400f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-copper-e682 .bronze-d7e7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.logo_gold_456d {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_lower_9766 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.active_lower_9766 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.element_d818 {
    margin: 2rem 0;
}

.picture-9269 {
    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);
}

.picture-9269:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.filter_58c0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tooltip-black-6fa4 {
    flex: 1;
}

.secondary-326c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-b64f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.list_gas_70cb {
    margin: 2rem 0;
}

.label_4f38 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_4f38 .pro-ded6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.label_4f38 .breadcrumb-1b68 {
    color: var(--text-gray);
    margin: 0;
}

.bronze-e564 {
    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);
}

.bronze-e564 .new_eceb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.fast-d13e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.small_0b1f {
    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;
}

.feature-advanced-faf0 {
    flex: 1;
}

.panel-e6ee {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.photo-8b63 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.modal_320f {
    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;
}

.smooth-f578 {
    flex: 1;
}

.paragraph_6e4a {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.heading_under_7beb {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.dark-c530 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.primary_3577 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.right_2084 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.right_2084 .dark-f6b1 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dirty_2899 {
    margin-top: 2rem;
}

.dirty_2899 .container-7fdb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pattern-2bda {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-42ae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container-42ae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-42ae .list_a403 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mini_e0bf {
    margin: 2rem 0;
}

.section-bright-0d22 {
    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 */
.stone-a0d9 {
    padding: var(--section-padding);
}

.current_0ad6 {
    margin-top: 1rem;
}

.picture_4bb4 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.picture_4bb4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.picture_4bb4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.logo-15a6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-bottom-4856 {
    margin: 2rem 0;
}

.component-eeb9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.slider_green_f690 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.secondary_wide_ed68 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tag-last-04c9 {
    margin: 2rem 0;
}

.motion-34e4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.motion-34e4 .light-f7fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.advanced-3fdc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .advanced-3fdc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel-dynamic-161d {
    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);
}

.dropdown_47fb {
    color: var(--text-white);
    font-weight: 600;
}

.hidden_clean_a693 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hard-cd2f {
    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);
}

.hard-cd2f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.shade-left-62cf {
    padding: var(--section-padding);
}

.feature_solid_887b {
    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;
}

.feature_solid_887b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tertiary_wide_e029 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary_wide_e029 .heading-first-6299 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_wide_e029 .aside-copper-f960 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.container-easy-8b08 {
    flex: 1;
}

.wood_961c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.clean-89f7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-89f7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.clean-89f7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.menu-advanced-0af7 {
    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);
}

.menu-advanced-0af7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.menu-advanced-0af7 strong {
    color: var(--warning-color);
}

/* Slots Section */
.header-over-bfc3 {
    padding: var(--section-padding);
}

.thick_03bc {
    margin: 2rem 0;
}

/* Table Games Section */
.wood-23db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_2c0c {
    margin: 2rem 0;
}

.accordion_top_3eda {
    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);
}

.accordion_top_3eda:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accordion_top_3eda .gallery_8f55 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion_top_3eda .detail-5313 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.silver_0c13 {
    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);
}

.silver_0c13 .new_eceb {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.avatar-332f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-bc85 {
    margin: 2rem 0;
}

.surface-4de2 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty-d37e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside-da45 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover-6e04 {
    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);
}

.hover-6e04:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hover-6e04.fn-active-3970 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_43c9 {
    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);
}

.frame_a225 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_a225 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.status-cool-5adb {
    padding: var(--section-padding);
}

.module_401c {
    margin: 2rem 0;
}

.hero-9be3 {
    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);
}

.hero-9be3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .hero-9be3 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.lite_af43 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.search-cool-6f05 {
    flex: 1;
}

.breadcrumb_out_8bdf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-dirty-81a4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary_a596 {
    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;
}

.middle-7893 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.right-e716 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.panel-thick-4dcf {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.table_2f0b {
    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;
}

.table_2f0b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.soft-5090 {
    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);
}

.wide-7add {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wide-7add strong {
    color: var(--accent-color);
}

/* New Games Section */
.notice-cabe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-892e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .label-892e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-892e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean_966c {
    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;
}

.clean_966c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tertiary_down_ea16 {
    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;
}

.left-8993 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.filter-black-7f75 {
    font-size: 2rem;
}

.picture_e1ac {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.breadcrumb_3564 {
    flex: 1;
}

.widget-gold-bab1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.block-light-3576 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shadow_11b9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.avatar_6722 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.photo-yellow-d589 {
    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;
}

.article-solid-2c31 {
    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;
}

.article-solid-2c31:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.focus_dark_6013 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_cc38 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph-over-1efb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .paragraph-over-1efb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light_6d49 {
    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);
}

.surface-ddc8 {
    color: var(--text-white);
    font-weight: 600;
}

.layout-993e {
    color: var(--accent-color);
    font-weight: 600;
}

.paragraph_6460 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.paragraph_6460 strong {
    color: var(--accent-color);
}

/* Security Section */
.tertiary_f83d {
    padding: var(--section-padding);
}

/* Benefits Section */
.content-next-0cc1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.disabled-paper-01cb {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.wide-cb50 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-warm-fe89 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.element-mini-8ee6 {
    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) {
    .element-mini-8ee6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.element-mini-8ee6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.element-mini-8ee6 .modal_320f {
    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;
}

.element-mini-8ee6 .smooth-f578 {
    flex: 1;
}

.element-mini-8ee6 .paragraph_6e4a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.element-mini-8ee6 .heading_under_7beb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.menu_712b {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_712b .top-e3c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu_712b .mask-dd78 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_712b .mask-dd78 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.menu_712b .mask-dd78 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.shade-pressed-601d {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.static-6925 {
    padding: var(--section-padding);
}

.top_4cec {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .top_4cec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_action_2854 {
    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);
}

.title_action_2854:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.title_action_2854 .nav-inner-d992 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title_action_2854 .element-mini-ea04 {
    flex: 1;
}

.title_action_2854 .orange-7112 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_action_2854 .heading_6c26 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sidebar_2958 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_2958 .shade-ae78 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_2958 .advanced-6e0c {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.sidebar_2958 .advanced-6e0c 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);
}

.sidebar_2958 .advanced-6e0c li:last-child {
    border-bottom: none;
}

.sidebar_2958 .advanced-6e0c 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;
}

.sidebar_2958 .advanced-6e0c li strong {
    color: var(--text-white);
}

.link_steel_6965 {
    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);
}

.link_steel_6965 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link_steel_6965 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.avatar_3ebd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_ee52 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip_ee52 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description-top-acb8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.description-top-acb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.thumbnail-0b76 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-copper-6219 {
    font-size: 2rem;
}

.new-5427 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.medium_1f80 {
    flex: 1;
}

.chip-f37b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-f37b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.chip-f37b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.solid-149b {
    margin-top: 3rem;
}

.tabs_middle_23ac {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tag-hovered-3791 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.element_4608 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element_4608 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.element_4608 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.element_4608 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.alert-short-a503 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_ec0c {
    margin: 2rem 0;
}

.gold_b40d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.gold_b40d .light-f7fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar-soft-dbc0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sidebar-soft-dbc0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.logo_66fa {
    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);
}

.logo_66fa:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.disabled-acee {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.active_basic_bf3b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.image_eb26 {
    padding: var(--section-padding);
}

.box_58d8 {
    margin: 2rem 0;
}

.photo-simple-990c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .photo-simple-990c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo-simple-990c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-copper-0e2a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article-copper-0e2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sidebar-996e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.warm-f05c {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.chip_75d2 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.chip_75d2.column_318b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.basic-4a98 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.block_copper_4424 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.video-b68c {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb_d1cb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.smooth_65cc {
    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);
}

.smooth_65cc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.smooth_65cc strong {
    color: var(--accent-color);
}

/* Update Log Section */
.up_2338 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_ffc2 {
    margin: 2rem 0;
}

.main_simple_66db {
    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) {
    .main_simple_66db {
        flex-direction: column;
        gap: 1rem;
    }
}

.main_simple_66db:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.main_simple_66db::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);
}

.fluid_a84e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.heading-bb45 {
    flex: 1;
}

.column_purple_7d33 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pattern-b5ef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern-b5ef li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-5fc9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_5e3b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lower_d2b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower_d2b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall-cf76 {
    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);
}

.carousel_lite_b931 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stale_9343 {
    flex: 1;
}

.focused_2b78 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.disabled-7137 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo_paper_86f6 {
    margin-top: 2rem;
    text-align: center;
}

.dirty-f96a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dirty-f96a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tag-hard-75eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-hard-75eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze_571c {
    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);
}

.bronze_571c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bronze_571c .column_next_1195 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bronze_571c .photo_hot_af03 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.bronze_571c .north-28c2 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.bronze_571c .picture_green_08c0 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.shadow_wide_8fee {
    padding: var(--section-padding);
}

.border-191e .hero_old_cf3d {
    flex: 1;
}

/* Promo Calendar Section */
.notification_4a92 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-focused-0057 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-focused-0057 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-clean-1a4e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_up_9423 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.next_7dab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box_advanced_5642 {
    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);
}

.row-2378 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fast-0215 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.thumbnail_motion_61fe {
    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);
}

.thumbnail_motion_61fe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_motion_61fe strong {
    color: var(--accent-color);
}

/* Requirements Section */
.texture_c17a {
    padding: var(--section-padding);
}

.heading_a27f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading_a27f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.huge_0a63 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold-7e20 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.out-180e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.out-180e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-middle-9508 {
    margin-top: 3rem;
}

.sort-middle-9508 .tabs_middle_23ac {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sort-middle-9508 .tag-hovered-3791 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-middle-9508 .element_4608 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sort-middle-9508 .element_4608 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sort-middle-9508 .element_4608 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sort-middle-9508 .element_4608 li strong {
    color: var(--warning-color);
}

.modal-clean-b3e0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal-clean-b3e0 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.large_6cdc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_40c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_40c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north_e933 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north_e933 .light-f7fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.liquid-4d01 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.green-c643 {
    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);
}

.green-c643:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hero-05d4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_0f91 {
    flex: 1;
}

.main_hard_6db8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.badge-8cc6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.selected-0b13 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.outline-ca86 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption_action_4615 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .caption_action_4615 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-f9cc {
    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);
}

.widget-f9cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tag_bdad {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav_15a6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.main-west-9457 {
    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);
}

.blue_f4fe {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.blue_f4fe strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.cold_eda5 { 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; }
.tabs_3d8a, .current-3f62 { max-width:100%; height:auto; }

.form_e130, .clean-d16e, .wrapper_e828 { white-space:normal; }

.paragraph_paper_9b2d,
.prev-38eb,
.detail_top_feab,
.tag-hard-75eb,
.list_gas_70cb,
.hover_bac2 {
  flex-wrap:wrap;
}

[class*="grid"],
.caption_action_4615,
.photo-simple-990c,
.card-next-8272 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.preview_pink_3e91 img,
.prev-38eb img,
.focused_360a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.photo-a4c3, .surface_b148,
.alert_dc9a, .mask_old_2bf2 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.gradient-smooth-fb19 { width:100%; overflow-x:auto; }
.gradient-smooth-fb19 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.under_fe33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .under_fe33 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.dirty_fb4a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.complex_e008,
.link_e7b3,
.overlay-next-9a37,
.backdrop-west-b20f,
.dynamic-804d,
.caption_action_4615,
.photo-simple-990c,
.card-next-8272,
.dropdown-medium-da92,
.module_401c,
.under_fe33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .complex_e008,
  .link_e7b3,
  .overlay-next-9a37,
  .backdrop-west-b20f,
  .dynamic-804d,
  .caption_action_4615,
  .photo-simple-990c,
  .card-next-8272,
  .dropdown-medium-da92,
  .module_401c,
  .under_fe33 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.form_9ab0,
.preview_south_a9ed,
.widget-f9cc,
.inner_6b26,
.article-copper-0e2a,
.card_inner_f3fb,
.hero-9be3,
.dirty_fb4a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.frame-blue-1ce5,
.title_north_03e6,
.progress-bef4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.frame-blue-1ce5 > *,
.title_north_03e6 > *,
.progress-bef4 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 013a */
.shadow-element-z3 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
