/* {$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;
}

.status_8d43 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.breadcrumb_blue_3219 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .breadcrumb_blue_3219 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .breadcrumb_blue_3219 {
        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 */
.main-4463 {
    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);
}

.card-bright-df34 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .card-bright-df34 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .filter_f3f6 {
        grid-column: 1;
    }
    
    .header_a448 {
        grid-column: 2;
    }
    
    .paragraph_acda {
        grid-column: 3;
    }
}

.filter_f3f6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.filter_f3f6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.sort_warm_649e {
    display: none;
}

@media (min-width: 1024px) {
    .sort_warm_649e {
        display: block;
    }
}

/* Grouped Navigation */
.label-2d7a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.gallery_3487 {
    position: relative;
}

.wrapper-red-1a2a {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.gallery_3487 .lite_5d56 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.lite_5d56 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.cold-39a9 {
    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;
}

.cold-39a9:hover,
.cold-39a9.fn-active-51d1 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.new_ba6f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .new_ba6f {
        display: flex;
    }
}

/* Mobile Register Button */
.header_a448 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .header_a448 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.texture_caef {
    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;
}

.texture_caef::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 */
.paragraph_acda {
    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) {
    .paragraph_acda {
        display: none;
    }
}

.paragraph_acda span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.paragraph_acda.fn-active-51d1 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.paragraph_acda.fn-active-51d1 span:nth-child(2) {
    opacity: 0;
}

.paragraph_acda.fn-active-51d1 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.list_stone_6f2b {
    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;
}

.list_stone_6f2b.fn-active-51d1 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.active-7f2d {
    overflow: hidden;
}

.gas_5283 {
    list-style: none;
    padding: 0.75rem 0;
}

.east-b8a1 {
    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;
}

.east-b8a1:hover,
.east-b8a1.fn-active-51d1 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.east-b8a1.secondary_steel_cedd {
    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;
}

.east-b8a1.secondary_steel_cedd::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 */
.grid-8645 {
    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;
}

.south-0f6b {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.south-0f6b:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.image_12e6 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.image_12e6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.card_bottom_ea10 {
    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;
}

.card_bottom_ea10:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.sidebar-wood-6c2c {
    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;
}

.menu-39e4 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.menu-39e4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.action-cc2f {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.action-cc2f:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.picture_dark_09e3 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.picture_dark_09e3: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);
}

.detail_out_9351 {
    font-size: 1em;
    font-weight: 700;
}

.alert-right-9109 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.south_5825 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.south_5825::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;
}

.iron_c60b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .iron_c60b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.fast_2a7f {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.bottom_bd71 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.disabled-bright-7276 {
    margin-bottom: 2rem;
}

.tooltip_73ff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tooltip_73ff {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_fast_ab7a {
    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);
}

.action-ae35 {
    font-size: 1.5rem;
}

.status-bronze-26f2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hard_157e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hover_811e {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.hover_811e:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.column-6725 {
    text-align: center;
    margin-bottom: 3rem;
}

.media-097a {
    margin-bottom: 1rem;
}

.hard-116d {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gold_4fe3 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gold_4fe3 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .gold_4fe3.orange-180c {
        direction: rtl;
    }
    
    .gold_4fe3.orange-180c > * {
        direction: ltr;
    }
}

.detail-steel-35c4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.detail-steel-35c4:first-child {
    margin-top: 0;
}

.pink-5992 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article_light_6b0c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.article_light_6b0c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.hidden_hard_7434 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_hard_7434 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple_4876 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.rough_b4ce {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gallery_bottom_c9a4 {
    list-style: none;
}

.gallery_bottom_c9a4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery_bottom_c9a4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.status-6369 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.up_225d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hero-right-f948 {
    font-size: 2rem;
    flex-shrink: 0;
}

.white_e07c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.filter_dim_aad6 {
    margin: 2rem 0;
}

.tag_basic_05c0 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.gradient-prev-1e15 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.photo_hovered_4390 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.small_1ad9 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.item-rough-9f3d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-rough-9f3d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-rough-1fc7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.filter-rough-1fc7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thumbnail_west_1ff0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-lite-39d0 {
    font-size: 1.5rem;
}

.pagination_503d {
    color: var(--accent-color);
    margin: 0;
}

.logo-hovered-bed7 {
    list-style: none;
}

.logo-hovered-bed7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.logo-hovered-bed7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.form-under-a699 {
    margin: 2rem 0;
}

.surface_0c88 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.content_eb26 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .content_eb26 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_wood_d002 {
    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);
}

.highlight-hovered-0e0c {
    font-size: 1.25rem;
}

.tabs-solid-ba96 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.progress-b4ea,
.hovered-e254 {
    text-align: center;
    margin: 2rem 0;
}

.tooltip_pro_f86d,
.right_d1fe {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.nav_advanced_f106 {
    margin: 2rem 0;
    text-align: center;
}

.outline_553e {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outline_553e::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;
}

.dynamic_eb9e {
    position: relative;
    z-index: 1;
}

.progress_stone_2aa0 {
    margin-bottom: 1rem;
}

.tooltip-1d18 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.primary_plasma_16ae {
    margin-bottom: 3rem;
}

.in_ca11 {
    margin-top: 3rem;
}

.backdrop_d4b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .backdrop_d4b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_d4b0 .notice_fast_ab7a {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.preview_3b3b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar-fresh-2765 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.stale_fe80 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.white_64b9 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .white_64b9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .white_64b9 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.overlay_yellow_c09a {
    margin-bottom: 1rem;
}

.column_fc6c img {
    margin-bottom: 1rem;
}

.menu_stone_e591 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-static-3259 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.west-a0ae {
    list-style: none;
}

.west-a0ae li {
    margin-bottom: 0.5rem;
}

.west-a0ae a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.west-a0ae a:hover {
    color: var(--accent-color);
}

.backdrop-0fb4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-28d0 {
    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);
}

.action-28d0:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.bottom_4f8a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.bottom_4f8a p {
    margin-bottom: 0.25rem;
}

.item-e3de {
    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) {
    .item-e3de {
        flex-direction: row;
    }
}

.secondary-current-24df {
    text-align: center;
}

@media (min-width: 768px) {
    .secondary-current-24df {
        text-align: left;
    }
}

.secondary-current-24df p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.progress_b185 {
    font-size: 0.75rem !important;
}

.title_up_8b3b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notification-simple-a7cc {
    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);
    }
}

.green-dd88 {
    animation: fadeInUp 0.6s ease-out;
}

.grid_1e16 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.focus-01ab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-01ab {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.under-1c83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-1c83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_cde4 {
    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);
}

.gallery_cde4 .hero-right-f948 {
    font-size: 1.25rem;
}

.gallery_cde4 .frame_fdf3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.feature_d3aa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature_d3aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple-37d9 {
    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);
}

.simple-37d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale_c555 {
    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);
}

.header_4068 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature_c67a {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_215f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_d6c1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden_d6c1 .white_e07c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden_d6c1 .badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-a76e {
    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);
}

.new-d54e {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.new-d54e img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.new-d54e img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.popup-41fd {
    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);
}

.last-1f0b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.primary-2031 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.primary-2031 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary-2031 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);
}

.primary-2031 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.primary-2031 input::placeholder {
    color: var(--text-muted);
}

.out_a536 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.west_3d14 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.west_3d14 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.medium-b59c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.medium-b59c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.content_eb26 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_eb26 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_wood_d002 {
    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);
}

.focus_wood_d002 .highlight-hovered-0e0c {
    font-size: 1.25rem;
}

.focus_wood_d002 .tabs-solid-ba96 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.mask_9c75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_5ab2 {
    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);
}

.hero_5ab2 .hero-right-f948 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_5ab2 .white_e07c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero_5ab2 .badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.main-d00d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-a12a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight-a12a .media-2e32 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight-a12a .gallery_70ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-ce52 {
    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);
}

.stale_1361 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .stale_1361 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-270b {
    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);
}

.red-270b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.red_ff07 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tabs_c7a6 {
    flex: 1;
}

.middle-3d12 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lite_ef0b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gold-6f77 {
    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);
}

.gold-6f77:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.over_108a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over_108a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-dedb {
    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);
}

.red-dedb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-ea0e {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture-68e2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link_fresh_49dd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hidden-db08 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shade_upper_f193 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick_92be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medium_50b0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.medium_50b0 .overlay_7eb9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.medium_50b0 .over-ae6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_ebee {
    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);
}

.badge_ac83 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-action-6e94 {
    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);
}

.sort-action-6e94 .hero-right-f948 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-action-6e94 .white_e07c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-action-6e94 .badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_018f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_018f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_2ce0 {
    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);
}

.selected_2ce0:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.alert-upper-2cb9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-upper-2cb9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_glass_7235 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.chip_glass_7235:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new-fa98 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer-1f55 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gradient-prev-1e15 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.section-pro-0280 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shadow-cbd3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-bottom-0994 {
    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);
}

.footer-bottom-0994:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_e1ab {
    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);
}

.tertiary-selected-0717 {
    flex: 1;
}

.row_gas_8bd8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.over_ac06 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.focus_25aa {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-a9e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-steel-8b91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-steel-8b91 .media-2e32 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-steel-8b91 .gallery_70ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered-e254 {
    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);
}

.pink-53c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-53c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.widget_tall_7248 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_tall_7248 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_9488 {
    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);
}

.glass_9488:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short-d2f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-iron-cb69 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.column_8d9c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media_small_9195 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tertiary_cold_c1d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-glass-9639 {
    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);
}

.disabled-09e7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down_ba12 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth-390a {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_ac83 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-action-6e94 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sort-action-6e94 .white_e07c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort-action-6e94 .badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-fluid-d084 {
    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);
}

.overlay_5a6c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .overlay_5a6c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay_5a6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_c140 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.green_c140:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-paper-2c0a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mini_39a6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.large-720b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.progress_action_db8d {
    padding: 1.5rem;
}

.section_advanced_6973 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.table_bright_60f5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_bright_60f5 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;
}

.table_bright_60f5 li:last-child {
    border-bottom: none;
}

.table_bright_60f5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.sidebar-e218 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-e218 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-f455 {
    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);
}

.mask-f455:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_right_e085 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_stone_0ffb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last_efc7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.card_clean_a456 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.last-c68b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs-8916 {
    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);
}

.right-dc02 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_eadd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dim-69af {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-2581 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar_purple_84d7 {
    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);
}

.disabled_ed92 {
    text-align: center;
}

.gradient-f862 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-last-f6cb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.image-bronze-4a1b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-dccd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-dccd .white_e07c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop-dccd .badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_soft_1a22 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_soft_1a22 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal_soft_1a22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-8fe8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.filter-8fe8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_8c43 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-4acf {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.white_e07c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.cold-c3b6 {
    padding: 1.5rem;
}

.badge_fb0b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heading-mini-9c69 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-mini-9c69 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;
}

.heading-mini-9c69 li:last-child {
    border-bottom: none;
}

.heading-mini-9c69 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.orange_5225 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.disabled-b67b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled-b67b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper_0719 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_stone_b523 {
    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);
}

.stale_c555 {
    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;
}

.header_4068 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature_c67a {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_fast_5aa4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_b159 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-basic-9d8c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-tiny-8657 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bottom_4493 {
    display: flex;
    gap: 1rem;
}

.bottom_4493 .breadcrumb-b0cd {
    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;
}

.component_9b13 {
    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);
}

.steel_5001 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.next-d084 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-d084 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;
}

.next-d084 li:last-child {
    border-bottom: none;
}

.next-d084 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.border-up-6935 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border-up-6935 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border-up-6935 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_soft_8865 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table_soft_8865:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top-561a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.middle-44d0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.overlay_7eb9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.article_easy_1120 {
    font-size: 1rem;
}

.icon_045a {
    padding: 1.5rem;
}

.over-ae6d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.wood_e0f7 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.wood_e0f7 .disabled_ed92 {
    text-align: center;
}

.wood_e0f7 .disabled-last-f6cb {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.wood_e0f7 .highlight_iron_1629 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.highlight-bright-6af6 {
    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);
}

.highlight-bright-6af6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.overlay-e58b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-e58b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_2d65 {
    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);
}

.accordion_2d65:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-mini-931a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-pro-7671 {
    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);
}

.active_b9a5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-simple-ad1f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container-selected-ad92 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-f921 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accent_5d70 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-77bd {
    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);
}

.popup-silver-d72c {
    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;
}

.popup-silver-d72c.table_dynamic_9f62 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.popup-silver-d72c.pattern_87d1 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.popup-silver-d72c.table-prev-6389 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.popup-silver-d72c.container_79a8 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.popup-silver-d72c.upper-8bc1 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.badge_bright_b11f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent-6446 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_huge_468f {
    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);
}

.main-brown-243c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.main-d00d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-d00d 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;
}

.main-d00d li:last-child {
    border-bottom: none;
}

.main-d00d li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.huge_96c6 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .huge_96c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .huge_96c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center-98bf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.center-98bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center-98bf.banner_cee8 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .center-98bf.banner_cee8 {
        grid-column: span 3;
    }
}

.steel-d367 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.center-98bf.banner_cee8 .steel-d367 {
    background: rgba(6, 182, 212, 0.1);
}

.warm_3218 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.overlay_in_c03e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.center-98bf.banner_cee8 .overlay_in_c03e {
    color: var(--info-color);
}

.breadcrumb_f670 {
    padding: 1.5rem;
    text-align: center;
}

.down-ab79 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.center-98bf.banner_cee8 .down-ab79 {
    color: var(--info-color);
}

.button_710e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tall_5c9f {
    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 */
.box-in-f8a7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-in-f8a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-gold-3dca {
    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);
}

.container-gold-3dca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic-26c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_5ab2 {
    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);
}

.highlight-hovered-0e0c {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-b4ea {
    flex: 1;
}

.surface_0c88 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini_f78a {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider-first-c7eb {
    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);
}

.gallery-7b77 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description-large-51ab {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notification-simple-a7cc {
    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);
}

.layout-action-311e {
  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);
}

.layout-action-311e .disabled_ed92 {
    text-align: center;
}

.layout-action-311e .gradient-f862 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.layout-action-311e .disabled-last-f6cb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar_blue_0a75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail_brown_b6c2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_2315 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_7bf2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-06c1 {
    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);
}

.dynamic-d698 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced_2175 {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange_a429 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .orange_a429 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .orange_a429 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-2bca {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list-2bca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new-9101 {
    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);
}

.text-medium-9d5a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.logo_in_6bda {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.glass_8c3c {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass_8c3c.content_3798 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.glass_8c3c.frame_prev_9d9a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.glass_8c3c.disabled_east_af29 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.purple-4562 {
    padding: 1.5rem;
    text-align: center;
}

.info_a274 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tall-5b67 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tall-5b67 .first_25fe {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.search_left_cfb7 {
    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);
}

.search_left_cfb7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.texture_fresh_35a6 {
  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);
}

.pagination_gas_1a02 {
    text-align: center;
}

.pagination_gas_1a02 .gradient-f862 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.pagination_gas_1a02 .disabled-last-f6cb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.highlight-lower-00f9 { text-align: center; }
.preview-fixed-7df9 { text-align: left; }
.hot-260a { text-align: right; }

.main-8963 { margin-bottom: 0; }
.rough_a530 { margin-bottom: 0.5rem; }
.wood-6684 { margin-bottom: 1rem; }
.tag-large-3bd0 { margin-bottom: 1.5rem; }
.hidden_405c { margin-bottom: 2rem; }

.modal_a81b { margin-top: 0; }
.alert-inner-d286 { margin-top: 0.5rem; }
.detail_mini_6635 { margin-top: 1rem; }
.active_af9f { margin-top: 1.5rem; }
.notification-d584 { margin-top: 2rem; }

.fn-hidden-51d1 { display: none; }
.fn-visible-51d1 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .south_5825 {
        padding: 6rem 0 3rem;
    }
    
    .iron_c60b {
        text-align: center;
    }
    
    .gold_4fe3 {
        text-align: center;
    }
    
    .tooltip_73ff {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .main-4463,
    .list_stone_6f2b,
    .outline_553e,
    .stale_fe80 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .south_5825 {
        background: none;
    }
}

/* Providers Section */
.full-eef2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark_7c76 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark_7c76 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dark_7c76 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-purple-7eb9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo-purple-7eb9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pattern-8d28 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hard-8e9c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slider_lite_8096 {
    list-style: none;
    padding: 0;
}

.slider_lite_8096 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.slider_lite_8096 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pagination-d77e {
    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);
}

.pagination-d77e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.container_yellow_96f7 {
    padding: var(--section-padding);
}

.article-440d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-440d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm_fd9a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.warm_fd9a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pressed_9509 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.down_eccd {
    display: flex;
    flex-direction: column;
}

.surface-8fc3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.slow_87ad {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gold-91d0 {
    color: var(--accent-color);
}

.cold_287e {
    font-size: 1.25rem;
}

.link-next-1463 {
    margin-bottom: 1rem;
}

.link-next-1463 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.widget-1f99 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dropdown_6b1b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.disabled_ed92 {
    text-align: center;
}

.gradient-f862 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-last-f6cb {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hover_narrow_6f4f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm-7f25 {
    margin: 2rem 0;
}

.breadcrumb_upper_0d31 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.breadcrumb_upper_0d31 .hero-right-f948 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_1fc3 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.blue-499c {
    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;
}

.blue-499c:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notice_56bf {
    font-size: 2rem;
}

.shade-advanced-ed61 {
    display: flex;
    flex-direction: column;
}

.stone-7cfe {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pressed_9030 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.fixed_40df {
    padding: var(--section-padding);
}

.backdrop_left_83fc {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop_left_83fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_left_83fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-orange-78af {
    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);
}

.summary-orange-78af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-orange-78af .gradient-f862 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.summary-orange-78af .disabled-last-f6cb {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.summary-orange-78af .list-e266 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.upper-c196 {
    margin-top: 4rem;
}

.card-ade7 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.full_3339 {
    overflow-x: auto;
}

.hovered_7861 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hovered_7861 thead {
    background: var(--accent-color);
}

.hovered_7861 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.hovered_7861 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_7861 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.hovered_7861 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.pattern_7c08 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-0d33 {
    max-width: 900px;
    margin: 0 auto;
}

.search-2ce2 {
    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);
}

.search-2ce2:hover {
    border-color: var(--accent-color);
}

.slider_orange_1e68 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.slider_orange_1e68 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.basic-1308 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.search-2ce2.fn-active-51d1 .basic-1308 {
    transform: rotate(45deg);
}

.detail_outer_4450 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.search-2ce2.fn-active-51d1 .detail_outer_4450 {
    max-height: 1000px;
}

.detail_outer_4450 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.search-tall-33ab {
    padding: var(--section-padding);
}

.new-d54e {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.new_4d60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new-9e2f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new-9e2f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask-14e7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_small_3d4a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.texture_ce9d {
    font-size: 2rem;
}

.box-up-996b {
    color: var(--text-white);
    margin: 0;
}

.status-b513 {
    list-style: none;
    padding: 0;
}

.status-b513 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-b513 li:last-child {
    border-bottom: none;
}

.bright_b943 {
    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);
}

.bright_b943 p {
    color: var(--success-color);
    margin: 0;
}

.component-fc99 {
    margin-top: 3rem;
}

.steel_5001 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.heading-east-7bdf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-east-7bdf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.label-solid-c748 {
    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);
}

.action_b476 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label-solid-c748 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.medium_c1b8 {
    padding: var(--section-padding);
}

.nav_center_489c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_center_489c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-lower-065f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-lower-065f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.out-9c02 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-light-7e70 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.banner_short_9aed {
    flex: 1;
}

.plasma_4999 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.stone_55b7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.notification-6810 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-c2b1 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.full-c2b1:last-child {
    border-bottom: none;
}

/* Comparison Section */
.thumbnail_yellow_d8a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.focused-4acb {
    padding: var(--section-padding);
}

.complex_e476 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.bronze-e3e1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-e3e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-0a46 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_03d8, .container_adf7, .in_23e3 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.in_23e3 {
    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 */
.west-9730 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-7cff {
    margin: 2rem 0;
}

.card_white_53f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-c97b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.photo-large-5b29 {
    list-style: none;
    padding: 0;
}

.photo-large-5b29 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;
}

.photo-large-5b29 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.photo-large-5b29 li:last-child {
    border-bottom: none;
}

.tertiary-over-6566 {
    text-align: center;
    margin-top: 2rem;
}

.upper-b55e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.text-full-1504 {
    padding: var(--section-padding);
}

.notice_3beb {
    margin: 2rem 0;
}

.nav-8757 {
    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) {
    .nav-8757 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav-8757:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dim_a05c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.center-56e8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.avatar-brown-65fd {
    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;
}

.pattern_current_a805 {
    flex: 1;
}

.icon_d13c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.label_left_8906 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.old_b901 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.medium_1e0a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .medium_1e0a {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-upper-1dea {
    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);
}

.feature-upper-1dea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature-upper-1dea .gradient-f862 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-upper-1dea .disabled-last-f6cb {
    color: var(--text-gray);
    font-size: 1rem;
}

.narrow-ac91 {
    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);
}

.liquid_51f4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.liquid_51f4 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hover-f723 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hover-f723 {
        grid-template-columns: 1fr 1fr;
    }
}

.overlay-d3fd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_95fa {
    margin-bottom: 1.5rem;
}

.notification_95fa label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.notification_95fa input,
.notification_95fa 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;
}

.notification_95fa input:focus,
.notification_95fa select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form_4e4e {
    width: 100%;
    margin-top: 1rem;
}

.info-0475 {
    display: flex;
    align-items: center;
}

.content_26f9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.next-b5ea {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.heading_bright_37bc {
    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;
}

.list-f337 {
    color: var(--text-gray);
}

.active-up-63b2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gold-7ecb {
    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);
}

.gold-7ecb p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.first-83fa {
    margin-top: 3rem;
}

.gallery_solid_25c8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hidden-large-1443 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-ff9c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.backdrop_slow_d77f {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.backdrop_slow_d77f:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.dropdown_liquid_fbed {
    padding: var(--section-padding);
}

.background-4498 {
    margin: 2rem 0;
}

.filter_dirty_dcad {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.notification_0f2f {
    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;
}

.notification_0f2f:hover, .notification_0f2f.fn-active-51d1 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.media-right-52d6 {
    display: none;
}

.media-right-52d6.fn-active-51d1 {
    display: block;
}

.section_7c32 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south-527c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hover_smooth_e22c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hover_smooth_e22c ul {
    list-style: none;
    padding: 0;
}

.hover_smooth_e22c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hover_smooth_e22c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.module_058c {
    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 */
.small-3e95 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_wood_5a27 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-hard-c560 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.white_28e3 {
    color: var(--accent-color);
    margin: 0;
}

.notice_d73d {
    display: flex;
    gap: 1.5rem;
}

.badge_dark_edab {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.north_f882 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.thick-2504 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.thick-2504.table_out_de75 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.thick-2504.feature_motion_6d93 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.thick-2504.footer-0f4e {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.old_a3c6 {
    margin-top: 2rem;
}

.section-c015 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.table_a45d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .table_a45d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-a553 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.short-4608 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.link-4e2e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.fixed-e18b {
    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_focused_172f {
    padding: var(--section-padding);
}

.picture-light-e778 {
    margin: 2rem 0;
}

.iron-c56e {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.panel_stone_8909 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.description_a236 {
    list-style: none;
    padding: 0;
}

.description_a236 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;
}

.description_a236 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.description_a236 li:last-child {
    border-bottom: none;
}

.summary-fe31 {
    margin: 2rem 0;
}

.tooltip_small_4464 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.full-9bed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .full-9bed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_green_8a58 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-smooth-3c0b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north-a207 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dynamic_e6e5 {
    margin-top: 2rem;
}

.middle-3d12 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.photo-7748 {
    list-style: none;
    padding: 0;
}

.clean-1ae2 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.clean-1ae2 a {
    color: var(--accent-color);
    text-decoration: none;
}

.clean-1ae2 a:hover {
    text-decoration: underline;
}

.photo_copper_9ca1 {
    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 */
.picture-90d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_d86e {
    margin: 2rem 0;
}

.liquid_a7a1 {
    margin-bottom: 3rem;
}

.liquid_a7a1 .iron-c97b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pro_6955 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.photo_3bac {
    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);
}

.photo_3bac:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.focus_glass_baca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .focus_glass_baca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-b75d {
    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 */
.north_bdd2 {
    padding: var(--section-padding);
}

.logo-top-23a3 {
    margin: 2rem 0;
}

.accordion-mini-5122 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface_0c6d {
    overflow-x: auto;
    margin: 2rem 0;
}

.gold_bb9b {
    background: rgba(6, 182, 212, 0.1) !important;
}

.highlight_mini_5ea8 {
    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;
}

.fluid-9142 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.plasma-0361 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .plasma-0361 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-old-3382 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-old-3382 .hero-right-f948 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.box-old-3382 .white_e07c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer_2dfa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.paper-4860 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_medium_c849 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_medium_c849 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-dynamic-0013 {
    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;
}

.hidden-dynamic-0013:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gradient_a0bf {
    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);
}

.image-5de3 {
    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;
}

.down-3286 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus_tall_a8d3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.alert-e8ff {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.easy-7162 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thick-fd35 {
    color: var(--text-white);
    font-weight: 600;
}

.bronze_d160 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.purple-0dd0 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.purple-0dd0 .breadcrumb-b0cd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sort_simple_44cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_simple_44cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-b3b6 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort-b3b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort-b3b6 .gradient-f862 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-b3b6 .disabled-last-f6cb {
    color: var(--text-gray);
    font-size: 1rem;
}

.fast_3cde {
    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);
}

.outline-over-027d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.outline-over-027d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.tertiary_cold_c1d3 {
    margin: 2rem 0;
}

.box-glass-9639 {
    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);
}

.box-glass-9639:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.disabled-09e7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.module_44c3 {
    flex: 1;
}

.down_ba12 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth-390a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.badge_ac83 {
    margin: 2rem 0;
}

.sort-action-6e94 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-action-6e94 .white_e07c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.sort-action-6e94 .badge_fb0b {
    color: var(--text-gray);
    margin: 0;
}

.shade-fluid-d084 {
    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);
}

.shade-fluid-d084 .tooltip_pro_f86d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.outer_2dfa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.hero_e1ab {
    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;
}

.tertiary-selected-0717 {
    flex: 1;
}

.over_ac06 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.focus_25aa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.stale_c555 {
    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;
}

.preview_463d {
    flex: 1;
}

.header_4068 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.feature_c67a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.shade-basic-9d8c {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.form-tiny-8657 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.bottom_4493 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.bottom_4493 .breadcrumb-b0cd {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component_9b13 {
    margin-top: 2rem;
}

.component_9b13 .steel_5001 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.video-4ab1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_purple_84d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .avatar_purple_84d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_purple_84d7 .disabled_ed92 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-bronze-4a1b {
    margin: 2rem 0;
}

.backdrop-dccd {
    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 */
.pro_83a7 {
    padding: var(--section-padding);
}

.cold-c3b6 {
    margin-top: 1rem;
}

.heading-mini-9c69 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.heading-mini-9c69 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.heading-mini-9c69 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.item-center-1f2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark_5b95 {
    margin: 2rem 0;
}

.container-under-d319 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.middle_9f18 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.carousel_f34f {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.next-f79b {
    margin: 2rem 0;
}

.secondary-stone-fbb7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.secondary-stone-fbb7 .iron-c97b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_f981 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_f981 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.red_dbd3 {
    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);
}

.main-tall-21d2 {
    color: var(--text-white);
    font-weight: 600;
}

.feature_fast_551d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.stone_d9db {
    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);
}

.stone_d9db p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.grid-bottom-c429 {
    padding: var(--section-padding);
}

.filter-up-cf20 {
    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;
}

.filter-up-cf20:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hard_cf42 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard_cf42 .action_b476 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_cf42 .left-92ae {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_out_c234 {
    flex: 1;
}

.modal-gold-2465 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.logo-abe8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-abe8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.logo-abe8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.search_6ab7 {
    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);
}

.search_6ab7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_6ab7 strong {
    color: var(--warning-color);
}

/* Slots Section */
.button-4c50 {
    padding: var(--section-padding);
}

.shade_upper_f193 {
    margin: 2rem 0;
}

/* Table Games Section */
.solid_793a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick_92be {
    margin: 2rem 0;
}

.medium_50b0 {
    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);
}

.medium_50b0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.medium_50b0 .overlay_7eb9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.medium_50b0 .over-ae6d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hidden_ebee {
    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);
}

.hidden_ebee .tooltip_pro_f86d {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.pink-63f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-8ff5 {
    margin: 2rem 0;
}

.pagination-fast-d403 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_4c30 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-ce6c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.primary-73ff {
    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);
}

.primary-73ff:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.primary-73ff.fn-active-51d1 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-light-a8da {
    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);
}

.module_b7a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module_b7a7 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.progress-6bb8 {
    padding: var(--section-padding);
}

.media_4802 {
    margin: 2rem 0;
}

.accent_df80 {
    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);
}

.accent_df80:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .accent_df80 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.texture-solid-40c3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.background_old_d195 {
    flex: 1;
}

.heading_77a5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.grid-aaf2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.prev-86ac {
    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;
}

.pagination-84e2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.filter_1810 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.video_mini_1009 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.steel-2869 {
    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;
}

.steel-2869:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.title_focused_c34b {
    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);
}

.shade_tiny_7155 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_tiny_7155 strong {
    color: var(--accent-color);
}

/* New Games Section */
.detail-hard-5413 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large_54d6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .large_54d6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .large_54d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-rough-1d99 {
    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;
}

.gradient-rough-1d99:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.surface-08e3 {
    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;
}

.wide_1d3a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.popup-e1ca {
    font-size: 2rem;
}

.pressed_4fae {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.blue_4ba6 {
    flex: 1;
}

.alert_brown_2015 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.paper-a5ec {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.photo-fee2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb-2e7d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.thumbnail-1ec6 {
    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;
}

.notification-pro-b2db {
    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;
}

.notification-pro-b2db:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pagination-gold-c62a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-aa3d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stone_f44d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .stone_f44d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas-a5e8 {
    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);
}

.first-d743 {
    color: var(--text-white);
    font-weight: 600;
}

.pro_6660 {
    color: var(--accent-color);
    font-weight: 600;
}

.left_bbe1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.left_bbe1 strong {
    color: var(--accent-color);
}

/* Security Section */
.search-d24a {
    padding: var(--section-padding);
}

/* Benefits Section */
.column_lite_bed3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.pressed-c0be {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.complex-0968 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_e532 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.breadcrumb-e75f {
    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) {
    .breadcrumb-e75f {
        flex-direction: column;
        gap: 1rem;
    }
}

.breadcrumb-e75f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.breadcrumb-e75f .stale_c555 {
    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;
}

.breadcrumb-e75f .preview_463d {
    flex: 1;
}

.breadcrumb-e75f .header_4068 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.breadcrumb-e75f .feature_c67a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.outer_4ad4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_4ad4 .surface_0c88 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer_4ad4 .mask_9c75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outer_4ad4 .mask_9c75 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outer_4ad4 .mask_9c75 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.white-5781 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.heading-aa60 {
    padding: var(--section-padding);
}

.over-a167 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .over-a167 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini-8e0e {
    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);
}

.mini-8e0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.mini-8e0e .outline_fe94 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-8e0e .primary_stale_8000 {
    flex: 1;
}

.mini-8e0e .media-2e32 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini-8e0e .modal_f52a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail-dada {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-dada .background_3048 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail-dada .steel-76cd {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.thumbnail-dada .steel-76cd 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);
}

.thumbnail-dada .steel-76cd li:last-child {
    border-bottom: none;
}

.thumbnail-dada .steel-76cd 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;
}

.thumbnail-dada .steel-76cd li strong {
    color: var(--text-white);
}

.widget-new-ef79 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.widget-new-ef79 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-new-ef79 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.motion_020c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new_8f52 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .new_8f52 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent_right_01e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent_right_01e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-purple-8e73 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-3c69 {
    font-size: 2rem;
}

.smooth_3714 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.brown_6c76 {
    flex: 1;
}

.image_b809 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image_b809 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.image_b809 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.last_6973 {
    margin-top: 3rem;
}

.iron-c56e {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.panel_stone_8909 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_a236 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description_a236 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.description_a236 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.description_a236 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.rough_4fcc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-gas-3e33 {
    margin: 2rem 0;
}

.detail-0a16 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.detail-0a16 .iron-c97b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_right_021e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_right_021e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient_919c {
    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);
}

.gradient_919c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.grid-5d4a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video_middle_b27d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.carousel_selected_376e {
    padding: var(--section-padding);
}

.tertiary-7541 {
    margin: 2rem 0;
}

.notification_4550 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .notification_4550 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_4550 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_brown_fe7c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow_brown_fe7c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.active-gold-311a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu_66c2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.carousel_simple_b063 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.carousel_simple_b063.bottom-5933 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.grid_82c3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.frame_bronze_9b01 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.sidebar_2605 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form_blue_7c4e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active-0412 {
    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);
}

.active-0412 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active-0412 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.pro-06c1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-df43 {
    margin: 2rem 0;
}

.grid-north-ed40 {
    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) {
    .grid-north-ed40 {
        flex-direction: column;
        gap: 1rem;
    }
}

.grid-north-ed40:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.grid-north-ed40::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);
}

.hot-69fe {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.secondary_stale_7791 {
    flex: 1;
}

.footer_large_6e72 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hovered_e586 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered_e586 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.element_2abb {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected-bf33 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink-6e1a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pink-6e1a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_liquid_7ded {
    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);
}

.info_226d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-selected-d644 {
    flex: 1;
}

.text_fc97 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.out-264d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wrapper_fixed_8047 {
    margin-top: 2rem;
    text-align: center;
}

.hover-fixed-a36e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hover-fixed-a36e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.overlay-e58b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-e58b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_2d65 {
    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);
}

.accordion_2d65:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accordion_2d65 .section_right_e085 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_2d65 .logo_stone_0ffb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.accordion_2d65 .last_efc7 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.accordion_2d65 .card_clean_a456 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.icon-0a4e {
    padding: var(--section-padding);
}

.notification-pro-7671 .medium-5073 {
    flex: 1;
}

/* Promo Calendar Section */
.alert_36e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_2a40 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic_2a40 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_95bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_stone_7eeb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.fresh_ac5c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-small-d570 {
    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);
}

.glass_2af8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.wrapper_6adc {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.overlay_2b1f {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.overlay_2b1f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_2b1f strong {
    color: var(--accent-color);
}

/* Requirements Section */
.medium-a84f {
    padding: var(--section-padding);
}

.surface-2074 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .surface-2074 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status_46e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-motion-0d6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm_6b70 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warm_6b70 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-228f {
    margin-top: 3rem;
}

.fluid-228f .iron-c56e {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fluid-228f .panel_stone_8909 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fluid-228f .description_a236 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.fluid-228f .description_a236 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fluid-228f .description_a236 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fluid-228f .description_a236 li strong {
    color: var(--warning-color);
}

.purple-de4d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.purple-de4d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.preview-dac6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_edb5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_edb5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-a81a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-a81a .iron-c97b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.icon_left_8767 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next_6442 {
    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);
}

.next_6442:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.heading_2879 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-48d2 {
    flex: 1;
}

.heading-simple-c82a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.huge_6ddd {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accordion_8e3e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.fluid-e7dd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.surface-green-a1a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .surface-green-a1a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade-041d {
    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);
}

.shade-041d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.text-7dfb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.brown_ddef {
    color: var(--text-gray);
    font-size: 1rem;
}

.liquid_51f4 {
    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);
}

.under_67b9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.under_67b9 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.breadcrumb_blue_3219 { 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; }
.hover_811e, .article_light_6b0c { max-width:100%; height:auto; }

.grid-8645, .card_bottom_ea10, .sidebar-wood-6c2c { white-space:normal; }

.iron_c60b,
.gold_4fe3,
.box-in-f8a7,
.overlay-e58b,
.badge_ac83,
.orange_a429 {
  flex-wrap:wrap;
}

[class*="grid"],
.surface-green-a1a6,
.notification_4550,
.backdrop_d4b0 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.south_5825 img,
.gold_4fe3 img,
.hard_157e img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.fast_2a7f, .bottom_bd71,
.media-097a, .hard-116d {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.full_3339 { width:100%; overflow-x:auto; }
.full_3339 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.dark_7c76 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .dark_7c76 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.photo-purple-7eb9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.backdrop_left_83fc,
.dropdown_up_b5cc,
.clean-18d9,
.background_365b,
.medium_1e0a,
.surface-green-a1a6,
.notification_4550,
.backdrop_d4b0,
.texture_fresh_35a6,
.media_4802,
.dark_7c76 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .backdrop_left_83fc,
  .dropdown_up_b5cc,
  .clean-18d9,
  .background_365b,
  .medium_1e0a,
  .surface-green-a1a6,
  .notification_4550,
  .backdrop_d4b0,
  .texture_fresh_35a6,
  .media_4802,
  .dark_7c76 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.summary-orange-78af,
.feature-upper-1dea,
.shade-041d,
.notice_fast_ab7a,
.shadow_brown_fe7c,
.pagination_gas_1a02,
.accent_df80,
.photo-purple-7eb9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.banner-fresh-2acf,
.yellow_4ac7,
.glass-68a1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.banner-fresh-2acf > *,
.yellow_4ac7 > *,
.glass-68a1 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1c92 */
.promo-block-q5 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
