/* {$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;
}

.table_pro_75b9 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.sort_fresh_e108 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .sort_fresh_e108 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .sort_fresh_e108 {
        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 */
.secondary-huge-98df {
    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);
}

.iron-e9e6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .iron-e9e6 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .accordion_focused_aea9 {
        grid-column: 1;
    }
    
    .simple-4871 {
        grid-column: 2;
    }
    
    .tiny_f7a7 {
        grid-column: 3;
    }
}

.accordion_focused_aea9 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.accordion_focused_aea9:hover img {
    transform: scale(1.05);
}

/* Navigation */
.shade_b66d {
    display: none;
}

@media (min-width: 1024px) {
    .shade_b66d {
        display: block;
    }
}

/* Grouped Navigation */
.backdrop_5098 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.chip_854f {
    position: relative;
}

.north-6665 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.chip_854f .icon_down_991f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.icon_down_991f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.avatar-glass-edd2 {
    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;
}

.avatar-glass-edd2:hover,
.avatar-glass-edd2.fn-active-5f6e {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.dropdown-a5be {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .dropdown-a5be {
        display: flex;
    }
}

/* Mobile Register Button */
.simple-4871 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .simple-4871 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.gradient-0253 {
    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;
}

.gradient-0253::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 */
.tiny_f7a7 {
    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) {
    .tiny_f7a7 {
        display: none;
    }
}

.tiny_f7a7 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tiny_f7a7.fn-active-5f6e span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tiny_f7a7.fn-active-5f6e span:nth-child(2) {
    opacity: 0;
}

.tiny_f7a7.fn-active-5f6e span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.info-white-5341 {
    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;
}

.info-white-5341.fn-active-5f6e {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.east-7ba1 {
    overflow: hidden;
}

.slider_3aca {
    list-style: none;
    padding: 0.75rem 0;
}

.description-3703 {
    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;
}

.description-3703:hover,
.description-3703.fn-active-5f6e {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.description-3703.lower_939e {
    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;
}

.description-3703.lower_939e::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 */
.frame_east_5667 {
    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;
}

.sidebar_medium_9c82 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.sidebar_medium_9c82:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.block-cef3 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.block-cef3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.search_dim_33ae {
    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;
}

.search_dim_33ae:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.panel_a323 {
    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;
}

.hot_d94f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hot_d94f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.video-212c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.video-212c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.sort-3a7e {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.sort-3a7e: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);
}

.nav_easy_7ce7 {
    font-size: 1em;
    font-weight: 700;
}

.hard-cf96 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.text-5b7b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.text-5b7b::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;
}

.item_north_03de {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item_north_03de {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.section_385a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pressed_8c2a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hidden_923d {
    margin-bottom: 2rem;
}

.focus-6121 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .focus-6121 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-thick-7413 {
    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);
}

.table-92bb {
    font-size: 1.5rem;
}

.sidebar-9981 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.section-green-a78d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo_green_a908 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.photo_green_a908:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.article_dynamic_2f07 {
    text-align: center;
    margin-bottom: 3rem;
}

.brown_2655 {
    margin-bottom: 1rem;
}

.button_small_8374 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.light_287b {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .light_287b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .light_287b.photo_d466 {
        direction: rtl;
    }
    
    .light_287b.photo_d466 > * {
        direction: ltr;
    }
}

.pink-3d3d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pink-3d3d:first-child {
    margin-top: 0;
}

.sidebar_hard_f959 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dropdown-5688 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dropdown-5688:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.card_light_47c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_light_47c2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_under_f370 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article_middle_fab6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.popup_gas_958b {
    list-style: none;
}

.popup_gas_958b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_gas_958b li:last-child {
    border-bottom: none;
}

/* Games Features */
.new_3393 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.column_thick_2f43 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.container_f15b {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_880a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.dropdown_bronze_7902 {
    margin: 2rem 0;
}

.row_289a {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.header-d4cd {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.thumbnail_steel_42de {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.block-6a14 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.left-61f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-61f9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_82fa {
    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);
}

.layout_82fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid-hard-aeb9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.action-9df1 {
    font-size: 1.5rem;
}

.progress_7bb8 {
    color: var(--accent-color);
    margin: 0;
}

.widget-outer-4251 {
    list-style: none;
}

.widget-outer-4251 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.widget-outer-4251 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.tooltip-wide-dfc3 {
    margin: 2rem 0;
}

.nav_2676 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tertiary-9f79 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tertiary-9f79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_hard_3d1a {
    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);
}

.media-focused-b2ba {
    font-size: 1.25rem;
}

.menu_a9c3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.component_light_b551,
.out-0912 {
    text-align: center;
    margin: 2rem 0;
}

.search-hard-261a,
.copper_dc90 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.full-6d97 {
    margin: 2rem 0;
    text-align: center;
}

.active_gas_8697 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.active_gas_8697::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;
}

.active-3656 {
    position: relative;
    z-index: 1;
}

.shade_hard_77cf {
    margin-bottom: 1rem;
}

.basic_b2fa {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.black-5456 {
    margin-bottom: 3rem;
}

.large-1b97 {
    margin-top: 3rem;
}

.label-3bcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .label-3bcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-3bcd .hero-thick-7413 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_8613 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tabs-b46a {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.frame_cba2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.border-7401 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .border-7401 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border-7401 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.element_north_7590 {
    margin-bottom: 1rem;
}

.red-0776 img {
    margin-bottom: 1rem;
}

.center-b1c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_347b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.shadow-outer-d398 {
    list-style: none;
}

.shadow-outer-d398 li {
    margin-bottom: 0.5rem;
}

.shadow-outer-d398 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.shadow-outer-d398 a:hover {
    color: var(--accent-color);
}

.prev_8a51 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar_prev_b0bf {
    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);
}

.sidebar_prev_b0bf:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.row-bb32 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.row-bb32 p {
    margin-bottom: 0.25rem;
}

.tabs_green_59c2 {
    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) {
    .tabs_green_59c2 {
        flex-direction: row;
    }
}

.detail_9a47 {
    text-align: center;
}

@media (min-width: 768px) {
    .detail_9a47 {
        text-align: left;
    }
}

.detail_9a47 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade_easy_fee9 {
    font-size: 0.75rem !important;
}

.preview_4135 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.article-a572 {
    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);
    }
}

.hot_8c9c {
    animation: fadeInUp 0.6s ease-out;
}

.brown-3c35 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.article_8762 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_8762 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pattern_dark_1999 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_dark_1999 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-6fa4 {
    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);
}

.current-6fa4 .container_f15b {
    font-size: 1.25rem;
}

.current-6fa4 .warm-65a4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.small-c133 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small-c133 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_edd0 {
    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);
}

.detail_edd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_6de6 {
    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);
}

.sort_light_2939 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery_pink_6bd2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_def5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.black_0653 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.black_0653 .fluid_880a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.black_0653 .info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_full_c20c {
    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);
}

.surface-9e7a {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.surface-9e7a img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.surface-9e7a img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.right-284d {
    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);
}

.under_e021 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.active-brown-8b00 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.active-brown-8b00 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.active-brown-8b00 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);
}

.active-brown-8b00 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.active-brown-8b00 input::placeholder {
    color: var(--text-muted);
}

.button-12d3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.border_blue_c5f5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.border_blue_c5f5 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pattern_3b74 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pattern_3b74:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tertiary-9f79 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-9f79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_hard_3d1a {
    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);
}

.summary_hard_3d1a .media-focused-b2ba {
    font-size: 1.25rem;
}

.summary_hard_3d1a .menu_a9c3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.info_2a28 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_north_6327 {
    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);
}

.sidebar_north_6327 .container_f15b {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar_north_6327 .fluid_880a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar_north_6327 .info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.copper_2105 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_hard_9f6e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component_hard_9f6e .backdrop_brown_6e9c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_hard_9f6e .out_9d62 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_bc01 {
    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);
}

.box_clean_59d3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box_clean_59d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge_a161 {
    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);
}

.huge_a161:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_cool_fa3b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.complex-40f6 {
    flex: 1;
}

.shadow_wood_5f5c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paper-c995 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.label-clean-08f2 {
    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);
}

.label-clean-08f2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.detail_active_3b63 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_active_3b63 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-hot-e9c6 {
    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);
}

.gradient-hot-e9c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.current_cd94 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel-176d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview_action_d51b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination_dirty_85ce {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.basic_b26b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth-76aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_bronze_4c20 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_bronze_4c20 .solid_5656 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_bronze_4c20 .title-17ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_over_6a58 {
    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);
}

.column-prev-8e65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-focused-3459 {
    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);
}

.hover-focused-3459 .container_f15b {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-focused-3459 .fluid_880a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover-focused-3459 .info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-b00c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-b00c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_1c41 {
    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_1c41:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.yellow_f0f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_f0f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_16fb {
    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);
}

.focus_16fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_yellow_5053 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_c586 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-d4cd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.pro_0c56 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.preview-hard-29d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion_a838 {
    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);
}

.motion_a838:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_56f2 {
    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);
}

.avatar-next-0581 {
    flex: 1;
}

.sidebar-purple-aa03 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.next-e7bb {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.stone_01ee {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_fluid_57ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-9e15 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-9e15 .backdrop_brown_6e9c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-9e15 .out_9d62 {
    color: var(--text-gray);
    line-height: 1.6;
}

.out-0912 {
    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);
}

.content_e59c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_e59c {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.popup_15ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_15ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_a298 {
    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);
}

.notification_a298:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hot_1324 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper_5107 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wrapper-3ada {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination_0ade {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-cold-633b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new_1338 {
    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);
}

.content-soft-d077 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-2652 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent_new_2fc6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-prev-8e65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-focused-3459 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hover-focused-3459 .fluid_880a {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover-focused-3459 .info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_out_7108 {
    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);
}

.component-f5a2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component-f5a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-f5a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-8b24 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.inner-8b24:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-glass-353f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.background-up-b209 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sort-eccb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.filter-ea4d {
    padding: 1.5rem;
}

.footer-next-11ab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aside-e8bf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-e8bf 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;
}

.aside-e8bf li:last-child {
    border-bottom: none;
}

.aside-e8bf li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.disabled_up_ce6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_up_ce6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_2543 {
    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_2543:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper_8d14 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-9b62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-96cc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_dim_ca59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout-bottom-c9f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_gold_0651 {
    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);
}

.badge_b1c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-de5d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-07ab {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-dark-6b98 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article_over_b2a8 {
    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);
}

.message-lower-6ff1 {
    text-align: center;
}

.under-a596 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall_8d0e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hot_2320 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out-2f0d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-2f0d .fluid_880a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out-2f0d .info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left_5145 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .left_5145 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .left_5145 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-d064 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tooltip-d064:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-red-c97a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.link-gas-ad75 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fluid_880a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.media_dd5d {
    padding: 1.5rem;
}

.info-93c2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paper-6854 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper-6854 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;
}

.paper-6854 li:last-child {
    border-bottom: none;
}

.paper-6854 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.paragraph_dirty_12c5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.sort-1593 {
    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);
}

.sort-1593:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_dc26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fresh-bb74 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_6de6 {
    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;
}

.sort_light_2939 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery_pink_6bd2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_ddd4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-new-5006 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pro-185a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu_middle_51aa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lite_b100 {
    display: flex;
    gap: 1rem;
}

.lite_b100 .wood_53e8 {
    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;
}

.large-5cbd {
    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);
}

.gallery-light-670a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.next-6753 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-6753 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-6753 li:last-child {
    border-bottom: none;
}

.next-6753 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.badge_smooth_76a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .badge_smooth_76a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .badge_smooth_76a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-f981 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.item-f981:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_red_0497 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper_3258 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.solid_5656 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.highlight_6df9 {
    font-size: 1rem;
}

.media-red-74ef {
    padding: 1.5rem;
}

.title-17ce {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.complex-d66f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.complex-d66f .message-lower-6ff1 {
    text-align: center;
}

.complex-d66f .tall_8d0e {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.complex-d66f .slider_9a45 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.container-current-5e9e {
    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);
}

.container-current-5e9e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.caption-orange-94dc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-orange-94dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale-fdb5 {
    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);
}

.stale-fdb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_copper_efe5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic_05db {
    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);
}

.description_tiny_c8f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-e09c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slow_96d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wide-d2fd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.progress_cdfe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-easy-7d6a {
    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);
}

.pressed_5fc0 {
    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;
}

.pressed_5fc0.notice_c439 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.pressed_5fc0.gold_ec64 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.pressed_5fc0.shadow-stone-b91a {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.pressed_5fc0.lower-536a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.pressed_5fc0.cold-2b9f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.media_bfd2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.medium-ca50 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_a25b {
    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);
}

.row-in-f49d {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.copper_2105 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper_2105 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;
}

.copper_2105 li:last-child {
    border-bottom: none;
}

.copper_2105 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.accordion_yellow_4509 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion_yellow_4509 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion_yellow_4509 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-bright-6ef7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.overlay-bright-6ef7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-bright-6ef7.menu-hard-b343 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .overlay-bright-6ef7.menu-hard-b343 {
        grid-column: span 3;
    }
}

.description_current_5d48 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.overlay-bright-6ef7.menu-hard-b343 .description_current_5d48 {
    background: rgba(6, 182, 212, 0.1);
}

.layout_gas_923f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.preview_gas_fdde {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.overlay-bright-6ef7.menu-hard-b343 .preview_gas_fdde {
    color: var(--info-color);
}

.header-blue-f8fd {
    padding: 1.5rem;
    text-align: center;
}

.input_dirty_2f27 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.overlay-bright-6ef7.menu-hard-b343 .input_dirty_2f27 {
    color: var(--info-color);
}

.paragraph-5cde {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hot-a6bf {
    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 */
.message_red_e870 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_red_e870 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_2658 {
    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);
}

.full_2658:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_54c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_north_6327 {
    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);
}

.media-focused-b2ba {
    font-size: 2rem;
    flex-shrink: 0;
}

.north-c8c7 {
    flex: 1;
}

.nav_2676 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb-soft-7d24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-tall-d178 {
    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);
}

.easy-4673 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accordion-c298 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-a572 {
    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);
}

.tabs-648b {
  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);
}

.tabs-648b .message-lower-6ff1 {
    text-align: center;
}

.tabs-648b .under-a596 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.tabs-648b .tall_8d0e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.picture_middle_48d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_current_4aab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-hot-4108 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slider_purple_1752 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-next-2069 {
    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);
}

.paper-cb86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail_9c80 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-new-20ea {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal-new-20ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal-new-20ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-4ae0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview-4ae0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer-8fb9 {
    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);
}

.notice-mini-706c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pattern_fixed_d9fc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.yellow_4cde {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yellow_4cde.picture_focused_f42a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.yellow_4cde.info_yellow_5065 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.yellow_4cde.selected_913e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.container-outer-0b04 {
    padding: 1.5rem;
    text-align: center;
}

.secondary_solid_b505 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shade_pressed_0c38 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.shade_pressed_0c38 .heading_under_8a40 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.footer_789e {
    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);
}

.footer_789e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pink_1ff7 {
  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);
}

.header-cbd8 {
    text-align: center;
}

.header-cbd8 .under-a596 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.header-cbd8 .tall_8d0e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.soft_5213 { text-align: center; }
.block-fast-a4c8 { text-align: left; }
.advanced_7422 { text-align: right; }

.easy_1102 { margin-bottom: 0; }
.label_up_e138 { margin-bottom: 0.5rem; }
.active-2dc1 { margin-bottom: 1rem; }
.dim-0d47 { margin-bottom: 1.5rem; }
.box-white-e5a4 { margin-bottom: 2rem; }

.thumbnail-upper-fed2 { margin-top: 0; }
.inner-6e11 { margin-top: 0.5rem; }
.purple_f10b { margin-top: 1rem; }
.disabled-3dbe { margin-top: 1.5rem; }
.footer-bf08 { margin-top: 2rem; }

.fn-hidden-5f6e { display: none; }
.fn-visible-5f6e { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .text-5b7b {
        padding: 6rem 0 3rem;
    }
    
    .item_north_03de {
        text-align: center;
    }
    
    .light_287b {
        text-align: center;
    }
    
    .focus-6121 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .secondary-huge-98df,
    .info-white-5341,
    .active_gas_8697,
    .frame_cba2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .text-5b7b {
        background: none;
    }
}

/* Providers Section */
.silver_299f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_current_703d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_current_703d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider_current_703d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade_b58b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade_b58b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold_dc80 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.focus-377f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.east-7b7f {
    list-style: none;
    padding: 0;
}

.east-7b7f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.east-7b7f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.complex_c1f7 {
    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);
}

.complex_c1f7 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.background-16d2 {
    padding: var(--section-padding);
}

.advanced_b15c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced_b15c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_56e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tooltip_56e8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.basic_eb6a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tag_bronze_b040 {
    display: flex;
    flex-direction: column;
}

.selected_5189 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.heading-top-4a1c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.purple-5444 {
    color: var(--accent-color);
}

.shadow-mini-c7f1 {
    font-size: 1.25rem;
}

.progress-inner-238a {
    margin-bottom: 1rem;
}

.progress-inner-238a p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.notice_6008 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.column_feec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.message-lower-6ff1 {
    text-align: center;
}

.under-a596 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall_8d0e {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.old-00d3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-6abc {
    margin: 2rem 0;
}

.pink_8095 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.pink_8095 .container_f15b {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_d5b7 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.huge-ebfb {
    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;
}

.huge-ebfb:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-pro-bc30 {
    font-size: 2rem;
}

.dropdown_f550 {
    display: flex;
    flex-direction: column;
}

.overlay_3bb4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.border-focused-cc9c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.message_orange_6a14 {
    padding: var(--section-padding);
}

.gold-d684 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gold-d684 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold-d684 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_960b {
    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);
}

.mask_960b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask_960b .under-a596 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.mask_960b .tall_8d0e {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.mask_960b .medium-48a9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.preview-46a5 {
    margin-top: 4rem;
}

.hot-5c8b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.picture-outer-56d4 {
    overflow-x: auto;
}

.section-left-dc65 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.section-left-dc65 thead {
    background: var(--accent-color);
}

.section-left-dc65 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.section-left-dc65 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.section-left-dc65 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.section-left-dc65 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.list-82ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_bronze_4c96 {
    max-width: 900px;
    margin: 0 auto;
}

.footer-32b6 {
    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);
}

.footer-32b6:hover {
    border-color: var(--accent-color);
}

.video-d37e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.video-d37e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.pink-01ad {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.footer-32b6.fn-active-5f6e .pink-01ad {
    transform: rotate(45deg);
}

.container_7e26 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.footer-32b6.fn-active-5f6e .container_7e26 {
    max-height: 1000px;
}

.container_7e26 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.aside_2d92 {
    padding: var(--section-padding);
}

.surface-9e7a {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tertiary-dd42 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-last-34e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-last-34e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper_cd5a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-cc82 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary_025e {
    font-size: 2rem;
}

.avatar-motion-7133 {
    color: var(--text-white);
    margin: 0;
}

.dynamic-c426 {
    list-style: none;
    padding: 0;
}

.dynamic-c426 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dynamic-c426 li:last-child {
    border-bottom: none;
}

.paragraph_2cbd {
    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);
}

.paragraph_2cbd p {
    color: var(--success-color);
    margin: 0;
}

.warm-a147 {
    margin-top: 3rem;
}

.gallery-light-670a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.slider-short-635c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider-short-635c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav_a340 {
    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);
}

.tertiary-8495 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nav_a340 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.small-f618 {
    padding: var(--section-padding);
}

.selected_3602 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected_3602 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-27a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status-27a3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slider-first-ac19 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pattern_636f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.item_e470 {
    flex: 1;
}

.block-west-9c0a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hard_34a4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.link_south_60c1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_lower_fa6b {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.primary_lower_fa6b:last-child {
    border-bottom: none;
}

/* Comparison Section */
.primary-hot-93b9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.east_bca7 {
    padding: var(--section-padding);
}

.huge-d9d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.modal_8a80 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_8a80 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-5cf5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_e1e3, .bottom-d35a, .sort-0b56 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.sort-0b56 {
    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 */
.photo_84d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth-0e46 {
    margin: 2rem 0;
}

.blue_6951 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused-965c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.carousel_hard_27c1 {
    list-style: none;
    padding: 0;
}

.carousel_hard_27c1 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;
}

.carousel_hard_27c1 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.carousel_hard_27c1 li:last-child {
    border-bottom: none;
}

.main-bright-72d3 {
    text-align: center;
    margin-top: 2rem;
}

.caption-2a9b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.heading-large-ce56 {
    padding: var(--section-padding);
}

.main_fluid_246a {
    margin: 2rem 0;
}

.background-in-803e {
    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) {
    .background-in-803e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.background-in-803e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notice_bb81 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.surface_north_292d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.outline_aa9b {
    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;
}

.in_2f71 {
    flex: 1;
}

.large_83ab {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.down_8f29 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.heading_advanced_e9df {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.tabs-892d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .tabs-892d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.outline-fresh-9442 {
    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);
}

.outline-fresh-9442:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.outline-fresh-9442 .under-a596 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline-fresh-9442 .tall_8d0e {
    color: var(--text-gray);
    font-size: 1rem;
}

.lite_574b {
    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);
}

.section-16ad {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.section-16ad strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.filter-hard-5af8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .filter-hard-5af8 {
        grid-template-columns: 1fr 1fr;
    }
}

.status_basic_f8c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_fast_25f6 {
    margin-bottom: 1.5rem;
}

.picture_fast_25f6 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.picture_fast_25f6 input,
.picture_fast_25f6 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;
}

.picture_fast_25f6 input:focus,
.picture_fast_25f6 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.shade-7921 {
    width: 100%;
    margin-top: 1rem;
}

.tabs_396b {
    display: flex;
    align-items: center;
}

.text-old-d5ee {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.module-simple-4593 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.component_lite_3fc5 {
    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;
}

.image_10c7 {
    color: var(--text-gray);
}

.module_c59f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.badge-505e {
    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);
}

.badge-505e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.highlight_next_2333 {
    margin-top: 3rem;
}

.summary-428d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.up_9cb7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold_6d03 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.nav_down_f94a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_down_f94a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.link-east-ef8d {
    padding: var(--section-padding);
}

.feature_fc9c {
    margin: 2rem 0;
}

.white-5704 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fluid_91c7 {
    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;
}

.fluid_91c7:hover, .fluid_91c7.fn-active-5f6e {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.content-0d48 {
    display: none;
}

.content-0d48.fn-active-5f6e {
    display: block;
}

.old-6a33 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_upper_7c08 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.old_ab97 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.old_ab97 ul {
    list-style: none;
    padding: 0;
}

.old_ab97 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.old_ab97 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.dynamic-0c25 {
    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 */
.new-1c7e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid-60eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-1ad0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.box_0ba9 {
    color: var(--accent-color);
    margin: 0;
}

.sort_hard_98f7 {
    display: flex;
    gap: 1.5rem;
}

.nav_84a2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.content-in-3e2c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tertiary-pink-bb9d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary-pink-bb9d.tall_d844 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tertiary-pink-bb9d.icon_2f30 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tertiary-pink-bb9d.caption_bottom_fb4a {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.paragraph-west-cec2 {
    margin-top: 2rem;
}

.description_cold_f348 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hot-6d47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hot-6d47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-a4e2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.notification-easy-a4f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.purple_7f27 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.input-hard-ec0c {
    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 */
.simple-38ba {
    padding: var(--section-padding);
}

.fresh_bfde {
    margin: 2rem 0;
}

.tertiary_easy_bc53 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.slow_6a13 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.warm-f9d6 {
    list-style: none;
    padding: 0;
}

.warm-f9d6 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;
}

.warm-f9d6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.warm-f9d6 li:last-child {
    border-bottom: none;
}

.input-439f {
    margin: 2rem 0;
}

.left-5839 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.in_b127 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .in_b127 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fast_9091 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-small-c133 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center-c153 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_top_cbd3 {
    margin-top: 2rem;
}

.shadow_wood_5f5c {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.info_outer_2745 {
    list-style: none;
    padding: 0;
}

.column_3412 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.column_3412 a {
    color: var(--accent-color);
    text-decoration: none;
}

.column_3412 a:hover {
    text-decoration: underline;
}

.progress_huge_11ab {
    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 */
.active_ed84 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-31ea {
    margin: 2rem 0;
}

.hard_7741 {
    margin-bottom: 3rem;
}

.hard_7741 .focused-965c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dark_fc95 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.warm-3a1f {
    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);
}

.warm-3a1f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.secondary_next_6987 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .secondary_next_6987 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_b592 {
    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 */
.table_bronze_66ee {
    padding: var(--section-padding);
}

.chip_4996 {
    margin: 2rem 0;
}

.column-cold-9e70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.soft_e3b7 {
    overflow-x: auto;
    margin: 2rem 0;
}

.light_d79a {
    background: rgba(6, 182, 212, 0.1) !important;
}

.detail_inner_ee74 {
    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;
}

.photo-focused-3357 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.primary-dark-f704 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .primary-dark-f704 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-8b98 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-8b98 .container_f15b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pro-8b98 .fluid_880a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-tall-7963 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.dim-7bbe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border_537b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_537b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left-7e4a {
    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;
}

.left-7e4a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dirty-fc5d {
    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);
}

.paragraph_7b3e {
    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;
}

.wrapper-inner-540f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.texture-19e4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.stone_3e2b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.search_cf85 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header_dim_9e58 {
    color: var(--text-white);
    font-weight: 600;
}

.footer-d818 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.advanced-26bf {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-26bf .wood_53e8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.liquid_b9a9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .liquid_b9a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_d313 {
    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);
}

.avatar_d313:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar_d313 .under-a596 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_d313 .tall_8d0e {
    color: var(--text-gray);
    font-size: 1rem;
}

.copper_f096 {
    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);
}

.tabs_388b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tabs_388b strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.notification-cold-633b {
    margin: 2rem 0;
}

.new_1338 {
    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);
}

.new_1338:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.content-soft-d077 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.iron-8961 {
    flex: 1;
}

.alert-2652 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent_new_2fc6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.column-prev-8e65 {
    margin: 2rem 0;
}

.hover-focused-3459 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-focused-3459 .fluid_880a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.hover-focused-3459 .info-93c2 {
    color: var(--text-gray);
    margin: 0;
}

.hover_out_7108 {
    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);
}

.hover_out_7108 .search-hard-261a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.sort-tall-7963 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.wide_56f2 {
    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;
}

.avatar-next-0581 {
    flex: 1;
}

.next-e7bb {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.stone_01ee {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.heading_6de6 {
    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;
}

.west-a999 {
    flex: 1;
}

.sort_light_2939 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gallery_pink_6bd2 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.pro-185a {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.menu_middle_51aa {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.lite_b100 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.lite_b100 .wood_53e8 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.large-5cbd {
    margin-top: 2rem;
}

.large-5cbd .gallery-light-670a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.sidebar-f183 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_over_b2a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .article_over_b2a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_over_b2a8 .message-lower-6ff1 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot_2320 {
    margin: 2rem 0;
}

.out-2f0d {
    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 */
.main_3dd5 {
    padding: var(--section-padding);
}

.media_dd5d {
    margin-top: 1rem;
}

.paper-6854 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.paper-6854 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.paper-6854 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hot_5b7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-884b {
    margin: 2rem 0;
}

.badge_black_3d19 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.outline-3a27 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.input-light-6e34 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.wrapper_b935 {
    margin: 2rem 0;
}

.message-up-ebd7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.message-up-ebd7 .focused-965c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_7a18 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .preview_7a18 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.current_edb9 {
    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);
}

.modal-hovered-e7a6 {
    color: var(--text-white);
    font-weight: 600;
}

.label_left_c2fc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.huge_6671 {
    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);
}

.huge_6671 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.highlight-small-aebb {
    padding: var(--section-padding);
}

.thumbnail-dirty-639a {
    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;
}

.thumbnail-dirty-639a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.filter_80d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_80d5 .tertiary-8495 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_80d5 .focus-fixed-dd4e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.table-prev-fb0f {
    flex: 1;
}

.dirty-6fd7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thick_ec9e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thick_ec9e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.thick_ec9e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.over-6a27 {
    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);
}

.over-6a27 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.over-6a27 strong {
    color: var(--warning-color);
}

/* Slots Section */
.search_stale_db56 {
    padding: var(--section-padding);
}

.basic_b26b {
    margin: 2rem 0;
}

/* Table Games Section */
.banner-stale-8fbd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth-76aa {
    margin: 2rem 0;
}

.modal_bronze_4c20 {
    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);
}

.modal_bronze_4c20:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.modal_bronze_4c20 .solid_5656 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_bronze_4c20 .title-17ce {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tooltip_over_6a58 {
    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);
}

.tooltip_over_6a58 .search-hard-261a {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.paragraph_3d1d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_14a9 {
    margin: 2rem 0;
}

.component_bcdd {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-7837 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-e439 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel_b28f {
    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);
}

.panel_b28f:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.panel_b28f.fn-active-5f6e {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-dirty-a749 {
    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);
}

.new-f1d5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.new-f1d5 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.next-a3fd {
    padding: var(--section-padding);
}

.sort-fast-ac31 {
    margin: 2rem 0;
}

.green-8b20 {
    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);
}

.green-8b20:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .green-8b20 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.soft-4d15 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.label-fa91 {
    flex: 1;
}

.up-5a24 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip_north_0682 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dark-f19a {
    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;
}

.column-2e3f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade-blue-5da8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.widget-b260 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_aaa5 {
    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;
}

.card_aaa5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.shadow-white-63e1 {
    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);
}

.full-a4ea {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.full-a4ea strong {
    color: var(--accent-color);
}

/* New Games Section */
.pagination_south_14e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tall_cdf6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tall_cdf6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tall_cdf6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper-b302 {
    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;
}

.copper-b302:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accordion-7784 {
    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;
}

.photo-5f01 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.icon-4246 {
    font-size: 2rem;
}

.outer_464d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.surface-brown-15c5 {
    flex: 1;
}

.media-5a67 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.disabled-old-bafe {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pagination_red_12c7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.summary-huge-72e8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.icon_bb33 {
    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;
}

.border_383a {
    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;
}

.border_383a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wrapper_pro_d9d9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall-332e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.iron_0dd4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .iron_0dd4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused-861e {
    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);
}

.basic-0463 {
    color: var(--text-white);
    font-weight: 600;
}

.carousel-26a5 {
    color: var(--accent-color);
    font-weight: 600;
}

.badge-0747 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.badge-0747 strong {
    color: var(--accent-color);
}

/* Security Section */
.rough-1334 {
    padding: var(--section-padding);
}

/* Benefits Section */
.pattern-advanced-dfed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.notice_b418 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.action_91d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_2e75 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.upper_5ca7 {
    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) {
    .upper_5ca7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.upper_5ca7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.upper_5ca7 .heading_6de6 {
    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;
}

.upper_5ca7 .west-a999 {
    flex: 1;
}

.upper_5ca7 .sort_light_2939 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.upper_5ca7 .gallery_pink_6bd2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.backdrop_792e {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_792e .nav_2676 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop_792e .info_2a28 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop_792e .info_2a28 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.backdrop_792e .info_2a28 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.bright-e76a {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.caption_983c {
    padding: var(--section-padding);
}

.search_smooth_a626 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .search_smooth_a626 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_stone_5c5e {
    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);
}

.secondary_stone_5c5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.secondary_stone_5c5e .search-purple-8e54 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_stone_5c5e .thumbnail_solid_158f {
    flex: 1;
}

.secondary_stone_5c5e .backdrop_brown_6e9c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_stone_5c5e .badge_055e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.image_f504 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_f504 .orange_7986 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image_f504 .wood_8300 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.image_f504 .wood_8300 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);
}

.image_f504 .wood_8300 li:last-child {
    border-bottom: none;
}

.image_f504 .wood_8300 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;
}

.image_f504 .wood_8300 li strong {
    color: var(--text-white);
}

.focused_9586 {
    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);
}

.focused_9586 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused_9586 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.pressed-6163 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-lower-83fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list-lower-83fb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.orange-dd47 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.orange-dd47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.filter_new_edb4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-gas-2261 {
    font-size: 2rem;
}

.icon-cool-b4ab {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notification-first-1e19 {
    flex: 1;
}

.accent-0425 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-0425 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent-0425 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.modal-iron-2226 {
    margin-top: 3rem;
}

.tertiary_easy_bc53 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.slow_6a13 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm-f9d6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warm-f9d6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.warm-f9d6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.warm-f9d6 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.active-last-ea63 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-3eca {
    margin: 2rem 0;
}

.under_a10c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.under_a10c .focused-965c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused-115e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .focused-115e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-922f {
    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);
}

.content-922f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.focus-mini-0548 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.liquid-0218 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.fluid-8a61 {
    padding: var(--section-padding);
}

.dropdown_e5e7 {
    margin: 2rem 0;
}

.west-a37a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .west-a37a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west-a37a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-3136 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.narrow-3136:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_ce22 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.nav_7334 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.hero-d3a8 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-d3a8.aside-dark-a8ab {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.media-prev-7db7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.form-8a7e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.stone_79b0 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb_light_d079 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow_iron_f95e {
    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);
}

.shadow_iron_f95e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow_iron_f95e strong {
    color: var(--accent-color);
}

/* Update Log Section */
.slider-8ce5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-gold-6907 {
    margin: 2rem 0;
}

.active-f3dc {
    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) {
    .active-f3dc {
        flex-direction: column;
        gap: 1rem;
    }
}

.active-f3dc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active-f3dc::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);
}

.tertiary-ca91 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.notice_focused_7482 {
    flex: 1;
}

.light_368e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focus_stale_7f14 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_stale_7f14 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-8360 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-iron-502d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.soft-8a4b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .soft-8a4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-4c05 {
    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);
}

.caption-hovered-d1bc {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tag_up_d62e {
    flex: 1;
}

.first-b035 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.red-656b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.input_4a78 {
    margin-top: 2rem;
    text-align: center;
}

.nav_83f4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_83f4 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.caption-orange-94dc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-orange-94dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale-fdb5 {
    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);
}

.stale-fdb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.stale-fdb5 .paper_8d14 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale-fdb5 .status-9b62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.stale-fdb5 .link-96cc {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.stale-fdb5 .progress_dim_ca59 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.basic_161f {
    padding: var(--section-padding);
}

.basic_05db .accent-gas-5091 {
    flex: 1;
}

/* Promo Calendar Section */
.list-99ae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-18c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-18c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-86a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-e85e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.overlay-9719 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tabs-2cbc {
    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);
}

.column-current-213d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dirty_c15d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tag-black-3a85 {
    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);
}

.tag-black-3a85 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tag-black-3a85 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.orange_ac43 {
    padding: var(--section-padding);
}

.wide-4c8d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wide-4c8d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dark_30d9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under-b175 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_e743 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot_e743 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_inner_e42f {
    margin-top: 3rem;
}

.highlight_inner_e42f .tertiary_easy_bc53 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.highlight_inner_e42f .slow_6a13 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_inner_e42f .warm-f9d6 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.highlight_inner_e42f .warm-f9d6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.highlight_inner_e42f .warm-f9d6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.highlight_inner_e42f .warm-f9d6 li strong {
    color: var(--warning-color);
}

.popup-liquid-967b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup-liquid-967b strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.nav-mini-1175 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma_88cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma_88cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_735a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_735a .focused-965c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.container_73e5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag-wide-f1d2 {
    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);
}

.tag-wide-f1d2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.texture_focused_e3f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_8b1a {
    flex: 1;
}

.secondary-903e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.shade-plasma-7052 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_d74f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.column-red-f4b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accordion-8300 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .accordion-8300 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_pressed_45cd {
    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);
}

.progress_pressed_45cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard-c4c2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup_yellow_1724 {
    color: var(--text-gray);
    font-size: 1rem;
}

.section-16ad {
    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);
}

.tertiary-3290 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tertiary-3290 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.sort_fresh_e108 { 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; }
.photo_green_a908, .dropdown-5688 { max-width:100%; height:auto; }

.frame_east_5667, .search_dim_33ae, .panel_a323 { white-space:normal; }

.item_north_03de,
.light_287b,
.message_red_e870,
.caption-orange-94dc,
.column-prev-8e65,
.modal-new-20ea {
  flex-wrap:wrap;
}

[class*="grid"],
.accordion-8300,
.west-a37a,
.label-3bcd {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.text-5b7b img,
.light_287b img,
.section-green-a78d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.section_385a, .pressed_8c2a,
.brown_2655, .button_small_8374 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.picture-outer-56d4 { width:100%; overflow-x:auto; }
.picture-outer-56d4 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.slider_current_703d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .slider_current_703d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.shade_b58b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.gold-d684,
.hero-9fdb,
.paper_361d,
.up-74b4,
.tabs-892d,
.accordion-8300,
.west-a37a,
.label-3bcd,
.pink_1ff7,
.sort-fast-ac31,
.slider_current_703d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .gold-d684,
  .hero-9fdb,
  .paper_361d,
  .up-74b4,
  .tabs-892d,
  .accordion-8300,
  .west-a37a,
  .label-3bcd,
  .pink_1ff7,
  .sort-fast-ac31,
  .slider_current_703d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.mask_960b,
.outline-fresh-9442,
.progress_pressed_45cd,
.hero-thick-7413,
.narrow-3136,
.header-cbd8,
.green-8b20,
.shade_b58b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.alert-warm-6876,
.heading_brown_ed47,
.block-hard-4749 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.alert-warm-6876 > *,
.heading_brown_ed47 > *,
.block-hard-4749 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: ef7a */
.promo-block-r9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
