/* {$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;
}

.link-fluid-53ca {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.fast-74ee {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .fast-74ee {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .fast-74ee {
        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 */
.progress_upper_281d {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card-fluid-e1e3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .card-fluid-e1e3 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .media-in-04ea {
        grid-column: 1;
    }
    
    .slow-0f82 {
        grid-column: 2;
    }
    
    .pro-beba {
        grid-column: 3;
    }
}

.media-in-04ea img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.media-in-04ea:hover img {
    transform: scale(1.05);
}

/* Navigation */
.frame-4a5e {
    display: none;
}

@media (min-width: 1024px) {
    .frame-4a5e {
        display: block;
    }
}

/* Grouped Navigation */
.summary_wide_947c {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.middle_1ef2 {
    position: relative;
}

.pattern_7def {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.middle_1ef2 .texture_motion_b459 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.texture_motion_b459 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.down-a3b3 {
    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;
}

.down-a3b3:hover,
.down-a3b3.fn-active-bc10 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.texture_top_5bf0 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .texture_top_5bf0 {
        display: flex;
    }
}

/* Mobile Register Button */
.slow-0f82 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .slow-0f82 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.shade-83be {
    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;
}

.shade-83be::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 */
.pro-beba {
    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) {
    .pro-beba {
        display: none;
    }
}

.pro-beba span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.pro-beba.fn-active-bc10 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.pro-beba.fn-active-bc10 span:nth-child(2) {
    opacity: 0;
}

.pro-beba.fn-active-bc10 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.thumbnail_plasma_c42a {
    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;
}

.thumbnail_plasma_c42a.fn-active-bc10 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.overlay_hot_2b78 {
    overflow: hidden;
}

.static_b415 {
    list-style: none;
    padding: 0.75rem 0;
}

.layout_7020 {
    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;
}

.layout_7020:hover,
.layout_7020.fn-active-bc10 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.layout_7020.narrow-004a {
    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;
}

.layout_7020.narrow-004a::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 */
.column-black-df7d {
    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;
}

.description_fbc2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.description_fbc2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.static-306d {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.static-306d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tooltip-0a30 {
    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;
}

.tooltip-0a30:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.tall-fc0a {
    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;
}

.search_stone_11f2 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.search_stone_11f2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.heading-focused-c2ef {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.heading-focused-c2ef:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.chip_thick_d09b {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.chip_thick_d09b: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);
}

.notice-8294 {
    font-size: 1em;
    font-weight: 700;
}

.secondary_solid_9b5c {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.grid_focused_ae00 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.grid_focused_ae00::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;
}

.avatar-39ee {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .avatar-39ee {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.secondary-205d {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pagination_green_3a47 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.carousel-easy-dec1 {
    margin-bottom: 2rem;
}

.outer-b904 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .outer-b904 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_hovered_e12d {
    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);
}

.accent_e7df {
    font-size: 1.5rem;
}

.link_7d85 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.iron_e71e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary_285d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.primary_285d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.list_yellow_18af {
    text-align: center;
    margin-bottom: 3rem;
}

.cold_081e {
    margin-bottom: 1rem;
}

.filter-steel-b937 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.accent_static_0065 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .accent_static_0065 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .accent_static_0065.breadcrumb_86c2 {
        direction: rtl;
    }
    
    .accent_static_0065.breadcrumb_86c2 > * {
        direction: ltr;
    }
}

.fluid-5e3e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.fluid-5e3e:first-child {
    margin-top: 0;
}

.tiny_c321 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.popup-e9d4 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.popup-e9d4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.background_brown_2339 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_brown_2339 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_stone_e429 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border_red_4fcb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner_steel_19e2 {
    list-style: none;
}

.banner_steel_19e2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner_steel_19e2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.fast_3c4a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.south_5f64 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.texture_00fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-6077 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.disabled-e8b3 {
    margin: 2rem 0;
}

.outline-97b6 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hovered-9fef {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.down_7215 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.logo-7770 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.prev_3dd6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev_3dd6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_803f {
    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);
}

.heading_803f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thick_1888 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fast_1831 {
    font-size: 1.5rem;
}

.status_small_3737 {
    color: var(--accent-color);
    margin: 0;
}

.selected-7636 {
    list-style: none;
}

.selected-7636 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.selected-7636 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.stone-4acf {
    margin: 2rem 0;
}

.preview_b34f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pagination-a08d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pagination-a08d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_warm_64d0 {
    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);
}

.overlay_937f {
    font-size: 1.25rem;
}

.large-9070 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.photo_motion_67a3,
.secondary_fresh_092c {
    text-align: center;
    margin: 2rem 0;
}

.gradient_dirty_e29b,
.main_cold_4364 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.bronze_8d83 {
    margin: 2rem 0;
    text-align: center;
}

.smooth_3fa8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.smooth_3fa8::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;
}

.overlay-a82f {
    position: relative;
    z-index: 1;
}

.background_c935 {
    margin-bottom: 1rem;
}

.slider_plasma_a913 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.huge-39a2 {
    margin-bottom: 3rem;
}

.component_medium_34dd {
    margin-top: 3rem;
}

.grid-static-cce1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-static-cce1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-static-cce1 .background_hovered_e12d {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_daaa {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.medium-50f8 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.box_plasma_7040 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.basic_30fd {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .basic_30fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic_30fd {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.sidebar-ad67 {
    margin-bottom: 1rem;
}

.accent_b0c1 img {
    margin-bottom: 1rem;
}

.wood_9ecd {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-gas-2a25 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.under-c916 {
    list-style: none;
}

.under-c916 li {
    margin-bottom: 0.5rem;
}

.under-c916 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.under-c916 a:hover {
    color: var(--accent-color);
}

.center_51c7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fixed-2be9 {
    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);
}

.fixed-2be9:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.input_hot_e998 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.input_hot_e998 p {
    margin-bottom: 0.25rem;
}

.east_9b62 {
    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) {
    .east_9b62 {
        flex-direction: row;
    }
}

.wrapper-over-f44d {
    text-align: center;
}

@media (min-width: 768px) {
    .wrapper-over-f44d {
        text-align: left;
    }
}

.wrapper-over-f44d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight-gold-b241 {
    font-size: 0.75rem !important;
}

.right_5d68 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.widget_7361 {
    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);
    }
}

.hovered-6d2e {
    animation: fadeInUp 0.6s ease-out;
}

.old-7a71 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.notice-cf7d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-cf7d {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.border-static-f5d4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-static-f5d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-large-3d09 {
    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);
}

.hover-large-3d09 .texture_00fa {
    font-size: 1.25rem;
}

.hover-large-3d09 .module_1594 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.item-advanced-7d8f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item-advanced-7d8f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-liquid-339f {
    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);
}

.menu-liquid-339f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-be27 {
    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);
}

.outline-over-ff5b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status-red-02a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-2d12 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_smooth_1bb4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion_smooth_1bb4 .preview-6077 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion_smooth_1bb4 .secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_aa46 {
    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);
}

.background-tiny-eef6 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.background-tiny-eef6 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.background-tiny-eef6 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.frame_up_9a07 {
    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);
}

.banner-complex-077e {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.easy_0ff5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.easy_0ff5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy_0ff5 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);
}

.easy_0ff5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.easy_0ff5 input::placeholder {
    color: var(--text-muted);
}

.filter-c418 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.east_0b53 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.east_0b53 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.gallery-solid-e739 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.gallery-solid-e739:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pagination-a08d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-a08d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_warm_64d0 {
    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);
}

.popup_warm_64d0 .overlay_937f {
    font-size: 1.25rem;
}

.popup_warm_64d0 .large-9070 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.input-hot-750e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-08f4 {
    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);
}

.lite-08f4 .texture_00fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite-08f4 .preview-6077 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite-08f4 .secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_small_7abf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_down_47a2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table_down_47a2 .breadcrumb_green_0b57 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_down_47a2 .bronze_f7f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_c0f6 {
    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);
}

.copper_d49a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .copper_d49a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-rough-08e4 {
    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);
}

.feature-rough-08e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_fc4b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thumbnail_c7de {
    flex: 1;
}

.brown-162b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled-8d38 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.box_rough_c9dc {
    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);
}

.box_rough_c9dc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.selected_87a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected_87a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-3579 {
    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);
}

.tiny-3579:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.black_fa4f {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_center_9629 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary_gas_8c3a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary_mini_e1b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge_lite_78be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_lite_46b0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inner-8bcc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.inner-8bcc .fast-e59b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inner-8bcc .pressed-43b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-tall-f1a3 {
    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);
}

.preview_e1c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed-cd78 {
    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);
}

.fixed-cd78 .texture_00fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-cd78 .preview-6077 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed-cd78 .secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-7130 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-7130 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-68bc {
    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);
}

.bottom-68bc:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.disabled-dark-2b73 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-dark-2b73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-f119 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media-f119:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list_2b69 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-4665 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hovered-9fef {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.link-pro-cf06 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.dropdown-2abc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-north-cf72 {
    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);
}

.media-north-cf72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-next-e71b {
    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);
}

.upper-ec50 {
    flex: 1;
}

.icon_silver_a534 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.shadow-a01c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.input_0314 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_4b3c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_df92 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_df92 .breadcrumb_green_0b57 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link_df92 .bronze_f7f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_fresh_092c {
    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);
}

.tabs-next-20d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-next-20d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.highlight-slow-d9e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-slow-d9e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-34ff {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message-34ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_7d41 {
    font-size: 2rem;
    flex-shrink: 0;
}

.static-8665 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.current-39d5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.popup_wide_ac47 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.static_a63b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow-7a04 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_huge_d0d9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module_south_b85b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.north-1aa8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_e1c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed-cd78 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fixed-cd78 .preview-6077 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fixed-cd78 .secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-bad5 {
    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);
}

.basic-3e9a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic-3e9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-3e9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-cf4f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.frame-cf4f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_792c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel_green_a86a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shadow_da58 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden-11a6 {
    padding: 1.5rem;
}

.menu_dbb9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-85bb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-85bb 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;
}

.slider-85bb li:last-child {
    border-bottom: none;
}

.slider-85bb li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.basic_2def {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic_2def {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_motion_3406 {
    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);
}

.icon_motion_3406:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas_bb63 {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_807f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.south_d640 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outer_e52b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.soft-4b54 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-e14e {
    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);
}

.top-2859 {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected-3641 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid-571b {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-full-3d5e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph_rough_7de0 {
    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);
}

.inner_e27b {
    text-align: center;
}

.backdrop_wood_e6ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.orange-ec83 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_liquid_85dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-7e99 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-7e99 .preview-6077 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight-7e99 .secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_bottom_b9e8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tooltip_bottom_b9e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tooltip_bottom_b9e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_plasma_d4af {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.module_plasma_d4af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_f5b3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper_tall_942e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.preview-6077 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.north-ae21 {
    padding: 1.5rem;
}

.secondary-337e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aside_f449 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_f449 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_f449 li:last-child {
    border-bottom: none;
}

.aside_f449 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.block_last_1099 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.next_7c24 {
    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);
}

.next_7c24:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-1d02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_last_dacc {
    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);
}

.active-be27 {
    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;
}

.outline-over-ff5b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status-red-02a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple_a163 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-gas-a13b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.content-over-88d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern_c550 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.item-21e1 {
    display: flex;
    gap: 1rem;
}

.item-21e1 .block_fbe0 {
    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;
}

.photo-orange-9718 {
    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);
}

.red_b4c4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.detail-db5d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-db5d 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;
}

.detail-db5d li:last-child {
    border-bottom: none;
}

.detail-db5d li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.liquid-44db {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .liquid-44db {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid-44db {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_daaa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.light_daaa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-slow-6947 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-fixed-7eb3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fast-e59b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.modal_over_4ef6 {
    font-size: 1rem;
}

.stale-c718 {
    padding: 1.5rem;
}

.pressed-43b2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.purple_d811 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.purple_d811 .inner_e27b {
    text-align: center;
}

.purple_d811 .orange-ec83 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.purple_d811 .hero-b8db {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.button_35e0 {
    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);
}

.button_35e0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.picture_motion_b889 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_motion_b889 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-17bb {
    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);
}

.cool-17bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-yellow-04dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-a36c {
    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);
}

.module-pink-3ba0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion-clean-eacc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary_up_34e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_1c44 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption_a687 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_narrow_7048 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item-easy-188c {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-easy-188c.accent_fresh_6007 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.item-easy-188c.shade_2ecc {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.item-easy-188c.photo_thick_204d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.item-easy-188c.nav_94f3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.item-easy-188c.hidden_d234 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.breadcrumb-7613 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification_ed1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-5da7 {
    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);
}

.tooltip_b73f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb_small_7abf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb_small_7abf 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;
}

.breadcrumb_small_7abf li:last-child {
    border-bottom: none;
}

.breadcrumb_small_7abf li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.backdrop_purple_df11 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .backdrop_purple_df11 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_purple_df11 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_in_7760 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.paragraph_in_7760:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_in_7760.title_6575 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .paragraph_in_7760.title_6575 {
        grid-column: span 3;
    }
}

.outline-dirty-b5bb {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.paragraph_in_7760.title_6575 .outline-dirty-b5bb {
    background: rgba(6, 182, 212, 0.1);
}

.huge_356f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.input_light_1a2c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.paragraph_in_7760.title_6575 .input_light_1a2c {
    color: var(--info-color);
}

.wide-6c50 {
    padding: 1.5rem;
    text-align: center;
}

.solid-f0d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.paragraph_in_7760.title_6575 .solid-f0d9 {
    color: var(--info-color);
}

.black_3041 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.copper_c838 {
    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 */
.outline_middle_e903 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_middle_e903 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-3215 {
    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);
}

.west-3215:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_3698 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-08f4 {
    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);
}

.overlay_937f {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-96ea {
    flex: 1;
}

.preview_b34f {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.top_ba70 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_b4d1 {
    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);
}

.layout_last_6535 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.stale-74f9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.widget_7361 {
    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);
}

.block-fast-14a1 {
  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);
}

.block-fast-14a1 .inner_e27b {
    text-align: center;
}

.block-fast-14a1 .backdrop_wood_e6ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.block-fast-14a1 .orange-ec83 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.left_b29f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-8542 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-9544 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north-d43b {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-pressed-a222 {
    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);
}

.tertiary_cfa0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.blue_ac89 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-3c14 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .surface-3c14 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface-3c14 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-d345 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element-d345:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_b0aa {
    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);
}

.paper-ab88 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar-c8a5 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.small_67be {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.small_67be.right-5720 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.small_67be.thick-e803 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.small_67be.tiny-0899 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.outline_0b01 {
    padding: 1.5rem;
    text-align: center;
}

.short_acfb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status_1aaf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.status_1aaf .accent_prev_f629 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.secondary-787a {
    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);
}

.secondary-787a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.full_2792 {
  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);
}

.hover_white_6b12 {
    text-align: center;
}

.hover_white_6b12 .backdrop_wood_e6ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hover_white_6b12 .orange-ec83 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.simple-b4b1 { text-align: center; }
.modal_in_16f5 { text-align: left; }
.tiny-fb4b { text-align: right; }

.hero-east-f417 { margin-bottom: 0; }
.pink-4bfa { margin-bottom: 0.5rem; }
.gradient_yellow_f0b5 { margin-bottom: 1rem; }
.block-12b3 { margin-bottom: 1.5rem; }
.dim_4732 { margin-bottom: 2rem; }

.shade_mini_c294 { margin-top: 0; }
.footer_plasma_532d { margin-top: 0.5rem; }
.summary_3f12 { margin-top: 1rem; }
.grid-warm-7464 { margin-top: 1.5rem; }
.simple-0d1f { margin-top: 2rem; }

.fn-hidden-bc10 { display: none; }
.fn-visible-bc10 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .grid_focused_ae00 {
        padding: 6rem 0 3rem;
    }
    
    .avatar-39ee {
        text-align: center;
    }
    
    .accent_static_0065 {
        text-align: center;
    }
    
    .outer-b904 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .progress_upper_281d,
    .thumbnail_plasma_c42a,
    .smooth_3fa8,
    .box_plasma_7040 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .grid_focused_ae00 {
        background: none;
    }
}

/* Providers Section */
.background-6c2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-0881 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-0881 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panel-0881 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_2ab9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_2ab9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary_hard_edd0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.column-silver-6106 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thick-2e13 {
    list-style: none;
    padding: 0;
}

.thick-2e13 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.thick-2e13 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.avatar-cace {
    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);
}

.avatar-cace p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.carousel-abf4 {
    padding: var(--section-padding);
}

.card_basic_20b4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_basic_20b4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_copper_ff95 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active_copper_ff95:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.advanced_3fbe {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.inner_4c57 {
    display: flex;
    flex-direction: column;
}

.bronze_686e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.carousel-short-aee8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.filter_c743 {
    color: var(--accent-color);
}

.hot-6502 {
    font-size: 1.25rem;
}

.progress-current-b2cb {
    margin-bottom: 1rem;
}

.progress-current-b2cb p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.liquid_1339 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.inner-fd19 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.inner_e27b {
    text-align: center;
}

.backdrop_wood_e6ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.orange-ec83 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.action_ca2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white-dd55 {
    margin: 2rem 0;
}

.header-5831 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.header-5831 .texture_00fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-c73f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.block_020f {
    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;
}

.block_020f:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip_5ec4 {
    font-size: 2rem;
}

.footer-brown-ecad {
    display: flex;
    flex-direction: column;
}

.picture-blue-0d34 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hover_a706 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.wide_ffc1 {
    padding: var(--section-padding);
}

.nav_active_e1f5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav_active_e1f5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav_active_e1f5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_hot_3494 {
    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);
}

.heading_hot_3494:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading_hot_3494 .backdrop_wood_e6ee {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.heading_hot_3494 .orange-ec83 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.heading_hot_3494 .middle_9038 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.up-ba3b {
    margin-top: 4rem;
}

.filter-0cff {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.title_focused_c5a1 {
    overflow-x: auto;
}

.article_hard_1680 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article_hard_1680 thead {
    background: var(--accent-color);
}

.article_hard_1680 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.article_hard_1680 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.article_hard_1680 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.article_hard_1680 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.accent-wood-a42a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_hard_2b20 {
    max-width: 900px;
    margin: 0 auto;
}

.summary_old_e5cd {
    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);
}

.summary_old_e5cd:hover {
    border-color: var(--accent-color);
}

.row-cffe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.row-cffe h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.section-right-b336 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.summary_old_e5cd.fn-active-bc10 .section-right-b336 {
    transform: rotate(45deg);
}

.in_ba2a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.summary_old_e5cd.fn-active-bc10 .in_ba2a {
    max-height: 1000px;
}

.in_ba2a p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.info_tiny_0b50 {
    padding: var(--section-padding);
}

.background-tiny-eef6 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.block_current_85c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-bd7b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-bd7b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.upper_ab36 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_paper_b247 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.easy-37d8 {
    font-size: 2rem;
}

.texture_11b0 {
    color: var(--text-white);
    margin: 0;
}

.highlight-medium-be9a {
    list-style: none;
    padding: 0;
}

.highlight-medium-be9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-medium-be9a li:last-child {
    border-bottom: none;
}

.dropdown_smooth_cf6c {
    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);
}

.dropdown_smooth_cf6c p {
    color: var(--success-color);
    margin: 0;
}

.short_720d {
    margin-top: 3rem;
}

.red_b4c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.article-9c9f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .article-9c9f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input-smooth-c20d {
    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);
}

.media-918c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.input-smooth-c20d p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.current_9695 {
    padding: var(--section-padding);
}

.texture_paper_f529 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_paper_f529 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-last-9c88 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo-last-9c88:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.carousel_25d9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prev-b242 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hovered_2ef7 {
    flex: 1;
}

.hot_a7cf {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.row-d2db {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.dark_82dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-257f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prev-257f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.section-a8ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.section-silver-39fd {
    padding: var(--section-padding);
}

.status-63d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.bottom-30a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom-30a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_last_b9a1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_dc2e, .cold-3036, .cool_5024 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.cool_5024 {
    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 */
.gradient_d715 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_4d69 {
    margin: 2rem 0;
}

.gradient_purple_dba9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-bright-aade {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wide-e8bf {
    list-style: none;
    padding: 0;
}

.wide-e8bf 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;
}

.wide-e8bf li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.wide-e8bf li:last-child {
    border-bottom: none;
}

.surface_upper_c1e7 {
    text-align: center;
    margin-top: 2rem;
}

.tag-orange-540f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.photo-narrow-329b {
    padding: var(--section-padding);
}

.pagination_d15a {
    margin: 2rem 0;
}

.tabs-dc4e {
    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) {
    .tabs-dc4e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tabs-dc4e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.steel_2c82 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.input_1bda {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.notification-fixed-506e {
    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;
}

.status-4067 {
    flex: 1;
}

.cool-08e0 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.steel_a184 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.detail-6bfa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.layout_glass_9ba8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .layout_glass_9ba8 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.grid-new-74f6 {
    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);
}

.grid-new-74f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid-new-74f6 .backdrop_wood_e6ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid-new-74f6 .orange-ec83 {
    color: var(--text-gray);
    font-size: 1rem;
}

.button_f95c {
    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);
}

.shade-1950 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.shade-1950 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.action_58bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .action_58bd {
        grid-template-columns: 1fr 1fr;
    }
}

.hard_41dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge-6101 {
    margin-bottom: 1.5rem;
}

.huge-6101 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.huge-6101 input,
.huge-6101 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;
}

.huge-6101 input:focus,
.huge-6101 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.iron-6588 {
    width: 100%;
    margin-top: 1rem;
}

.huge-e039 {
    display: flex;
    align-items: center;
}

.selected-8a5c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.dynamic-0ebf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.detail_advanced_f199 {
    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;
}

.lower_2f7f {
    color: var(--text-gray);
}

.tabs-pink-5e57 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.grid_a749 {
    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);
}

.grid_a749 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.search-12e3 {
    margin-top: 3rem;
}

.article-0185 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.progress_7a7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_8115 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.active-d677 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active-d677:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hero-7d06 {
    padding: var(--section-padding);
}

.photo-f845 {
    margin: 2rem 0;
}

.menu_soft_324e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fixed-e6fd {
    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;
}

.fixed-e6fd:hover, .fixed-e6fd.fn-active-bc10 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.light-626e {
    display: none;
}

.light-626e.fn-active-bc10 {
    display: block;
}

.overlay_81ad {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_a673 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dark_f830 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.dark_f830 ul {
    list-style: none;
    padding: 0;
}

.dark_f830 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.dark_f830 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.media-e8cb {
    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 */
.tertiary-db56 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_liquid_54d8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-50a7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tall_bc16 {
    color: var(--accent-color);
    margin: 0;
}

.basic-c1c6 {
    display: flex;
    gap: 1.5rem;
}

.detail-cb98 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination_small_a318 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.slow-c8f3 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.slow-c8f3.up-f547 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.slow-c8f3.full_e9f2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.slow-c8f3.hidden_2937 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.menu-093d {
    margin-top: 2rem;
}

.form-3f85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.item_ce4d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .item_ce4d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-4066 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.popup-stone-fcd8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mask_static_6f70 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.info_3533 {
    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 */
.dropdown_dcc5 {
    padding: var(--section-padding);
}

.button_last_5bb1 {
    margin: 2rem 0;
}

.white-885d {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.image_right_84f2 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.button-white-7893 {
    list-style: none;
    padding: 0;
}

.button-white-7893 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;
}

.button-white-7893 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.button-white-7893 li:last-child {
    border-bottom: none;
}

.title-1e73 {
    margin: 2rem 0;
}

.gradient_west_72be {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.focus_eb05 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .focus_eb05 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header_7148 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-eddd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.black_39a5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.advanced_1cbe {
    margin-top: 2rem;
}

.brown-162b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.container-up-2fdb {
    list-style: none;
    padding: 0;
}

.right_7e11 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.right_7e11 a {
    color: var(--accent-color);
    text-decoration: none;
}

.right_7e11 a:hover {
    text-decoration: underline;
}

.row_2761 {
    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 */
.easy-9071 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block-brown-8e4a {
    margin: 2rem 0;
}

.next_63d9 {
    margin-bottom: 3rem;
}

.next_63d9 .description-bright-aade {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.thick_4458 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-short-5c54 {
    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);
}

.footer-short-5c54:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.narrow_1b79 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .narrow_1b79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_332e {
    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 */
.message-dynamic-fab2 {
    padding: var(--section-padding);
}

.overlay_bbd5 {
    margin: 2rem 0;
}

.hot-61ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.current-2349 {
    overflow-x: auto;
    margin: 2rem 0;
}

.accordion_pro_a017 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.hover-15ac {
    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;
}

.pressed_cb54 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.prev-53d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .prev-53d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple-4625 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-4625 .texture_00fa {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.simple-4625 .preview-6077 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-green-d076 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.secondary_left_c2ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_3dae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_3dae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_080d {
    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;
}

.carousel_080d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.link-upper-ee76 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-eba4 {
    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;
}

.light-38e4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface-6ca4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.carousel_smooth_3475 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.up-5a40 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled-hard-ccfc {
    color: var(--text-white);
    font-weight: 600;
}

.element_warm_2544 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.label-fixed-be0d {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label-fixed-be0d .block_fbe0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.banner_gold_06a2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_gold_06a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_25cc {
    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);
}

.easy_25cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy_25cc .backdrop_wood_e6ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy_25cc .orange-ec83 {
    color: var(--text-gray);
    font-size: 1rem;
}

.primary_top_6195 {
    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);
}

.text-active-4184 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-active-4184 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.static_a63b {
    margin: 2rem 0;
}

.yellow-7a04 {
    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);
}

.yellow-7a04:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hero_huge_d0d9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.motion-dc05 {
    flex: 1;
}

.module_south_b85b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.north-1aa8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.preview_e1c7 {
    margin: 2rem 0;
}

.fixed-cd78 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-cd78 .preview-6077 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.fixed-cd78 .secondary-337e {
    color: var(--text-gray);
    margin: 0;
}

.over-bad5 {
    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);
}

.over-bad5 .gradient_dirty_e29b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.footer-green-d076 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.status-next-e71b {
    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;
}

.upper-ec50 {
    flex: 1;
}

.shadow-a01c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.input_0314 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.active-be27 {
    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;
}

.brown-42f8 {
    flex: 1;
}

.outline-over-ff5b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.status-red-02a7 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.content-over-88d9 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pattern_c550 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.item-21e1 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.item-21e1 .block_fbe0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.photo-orange-9718 {
    margin-top: 2rem;
}

.photo-orange-9718 .red_b4c4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.fluid-b2f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_rough_7de0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .paragraph_rough_7de0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_rough_7de0 .inner_e27b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_liquid_85dc {
    margin: 2rem 0;
}

.highlight-7e99 {
    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 */
.wide_7d5c {
    padding: var(--section-padding);
}

.north-ae21 {
    margin-top: 1rem;
}

.aside_f449 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.aside_f449 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.aside_f449 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.wood-ea56 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-b573 {
    margin: 2rem 0;
}

.hot-78f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.rough-3f4e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.image-static-2eeb {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.notification-current-34fa {
    margin: 2rem 0;
}

.popup_2a9f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.popup_2a9f .description-bright-aade {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-66e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .primary-66e0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout-6d5c {
    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);
}

.out_3c87 {
    color: var(--text-white);
    font-weight: 600;
}

.gallery-paper-dbee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.background-93fc {
    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);
}

.background-93fc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.white-5794 {
    padding: var(--section-padding);
}

.tooltip_4e16 {
    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;
}

.tooltip_4e16:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.static_03e1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.static_03e1 .media-918c {
    font-size: 2rem;
    flex-shrink: 0;
}

.static_03e1 .text_gas_a57b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.sort-70bd {
    flex: 1;
}

.large-4dad {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.east_d853 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east_d853 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.east_d853 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.border_be0a {
    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);
}

.border_be0a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.border_be0a strong {
    color: var(--warning-color);
}

/* Slots Section */
.container-a58c {
    padding: var(--section-padding);
}

.badge_lite_78be {
    margin: 2rem 0;
}

/* Table Games Section */
.row_e043 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_lite_46b0 {
    margin: 2rem 0;
}

.inner-8bcc {
    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);
}

.inner-8bcc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.inner-8bcc .fast-e59b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inner-8bcc .pressed-43b2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.thumbnail-tall-f1a3 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.thumbnail-tall-f1a3 .gradient_dirty_e29b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.east-15b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_2d7b {
    margin: 2rem 0;
}

.search-smooth-4a63 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-997f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm_24b8 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.grid_huge_556e {
    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);
}

.grid_huge_556e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.grid_huge_556e.fn-active-bc10 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom-f9f0 {
    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);
}

.card_5a35 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.card_5a35 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.advanced-1a17 {
    padding: var(--section-padding);
}

.disabled-center-7fba {
    margin: 2rem 0;
}

.solid-511e {
    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);
}

.solid-511e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .solid-511e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sidebar_2951 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.heading-cebf {
    flex: 1;
}

.soft-4728 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-3bdc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.under_cb05 {
    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;
}

.frame-4776 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.old_4aaa {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.label-181a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.text-red-291b {
    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;
}

.text-red-291b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dynamic_5ec1 {
    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);
}

.background-7671 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.background-7671 strong {
    color: var(--accent-color);
}

/* New Games Section */
.shadow_large_6542 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-11ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .caption-11ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-11ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old-30fe {
    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;
}

.old-30fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static-f847 {
    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;
}

.item_in_b336 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.center_ee9a {
    font-size: 2rem;
}

.sort_inner_0184 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.layout_current_a959 {
    flex: 1;
}

.text_thick_e9c4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.white-67d1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.active-last-552c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tertiary_a146 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.static_de4b {
    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;
}

.summary-prev-94ad {
    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;
}

.summary-prev-94ad:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.component_9882 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-ffc6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-0dfe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .wrapper-0dfe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lower-69ae {
    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);
}

.shade-fluid-bbaa {
    color: var(--text-white);
    font-weight: 600;
}

.progress-43d3 {
    color: var(--accent-color);
    font-weight: 600;
}

.steel_cd80 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.steel_cd80 strong {
    color: var(--accent-color);
}

/* Security Section */
.shadow-2b09 {
    padding: var(--section-padding);
}

/* Benefits Section */
.iron_d69c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.pink-6273 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.orange-a03e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-6fc9 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.primary_full_c002 {
    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) {
    .primary_full_c002 {
        flex-direction: column;
        gap: 1rem;
    }
}

.primary_full_c002:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.primary_full_c002 .active-be27 {
    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;
}

.primary_full_c002 .brown-42f8 {
    flex: 1;
}

.primary_full_c002 .outline-over-ff5b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.primary_full_c002 .status-red-02a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.wrapper_2bd8 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_2bd8 .preview_b34f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper_2bd8 .input-hot-750e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_2bd8 .input-hot-750e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.wrapper_2bd8 .input-hot-750e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.basic-7d21 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.form_da52 {
    padding: var(--section-padding);
}

.layout_3de9 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .layout_3de9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_1ce8 {
    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);
}

.notification_1ce8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.notification_1ce8 .filter_f9ce {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_1ce8 .component_next_4f71 {
    flex: 1;
}

.notification_1ce8 .breadcrumb_green_0b57 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification_1ce8 .tiny-8114 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tiny_8d74 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny_8d74 .summary_ab3e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tiny_8d74 .paragraph_b88f {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.tiny_8d74 .paragraph_b88f 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);
}

.tiny_8d74 .paragraph_b88f li:last-child {
    border-bottom: none;
}

.tiny_8d74 .paragraph_b88f 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;
}

.tiny_8d74 .paragraph_b88f li strong {
    color: var(--text-white);
}

.media-deef {
    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);
}

.media-deef p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media-deef strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.panel-acc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_670f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .brown_670f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link_2164 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link_2164:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.secondary-5043 {
    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-orange-a8f1 {
    font-size: 2rem;
}

.blue_74b6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.light_159d {
    flex: 1;
}

.cold_5766 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold_5766 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.cold_5766 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hover_purple_016e {
    margin-top: 3rem;
}

.white-885d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.image_right_84f2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-white-7893 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button-white-7893 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.button-white-7893 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.button-white-7893 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.panel-3bd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-7f94 {
    margin: 2rem 0;
}

.table_pro_2c68 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.table_pro_2c68 .description-bright-aade {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail-7cda {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thumbnail-7cda {
        grid-template-columns: repeat(2, 1fr);
    }
}

.right-be4c {
    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);
}

.right-be4c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.section_hard_2978 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.table-d157 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.accent-yellow-e661 {
    padding: var(--section-padding);
}

.active-ee15 {
    margin: 2rem 0;
}

.dropdown-yellow-8c55 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .dropdown-yellow-8c55 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-yellow-8c55 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic_0db6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dynamic_0db6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.main-smooth-0c2c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sidebar_d29e {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.shade_simple_2758 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.shade_simple_2758.photo_soft_b4be {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.focus-white-096e {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.article-df12 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.banner_steel_59dc {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.new_98d9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero_0ac5 {
    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);
}

.hero_0ac5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hero_0ac5 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.element-narrow-e2a9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_6639 {
    margin: 2rem 0;
}

.description_3e33 {
    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) {
    .description_3e33 {
        flex-direction: column;
        gap: 1rem;
    }
}

.description_3e33:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description_3e33::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);
}

.current-5ed0 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.pagination_pressed_1560 {
    flex: 1;
}

.avatar-45da {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wide_9da2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide_9da2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.label_f7d7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_7268 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-west-7e7a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .overlay-west-7e7a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_e32e {
    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);
}

.glass-b461 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dark-8adf {
    flex: 1;
}

.form-next-0a0c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.picture_7357 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.media_fresh_74ec {
    margin-top: 2rem;
    text-align: center;
}

.grid_70b9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid_70b9 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.picture_motion_b889 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_motion_b889 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-17bb {
    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);
}

.cool-17bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool-17bb .gas_bb63 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool-17bb .green_807f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.cool-17bb .south_d640 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.cool-17bb .outer_e52b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.out-896b {
    padding: var(--section-padding);
}

.frame-a36c .pagination-motion-8486 {
    flex: 1;
}

/* Promo Calendar Section */
.full-fc30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north_33d8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_33d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-inner-8c88 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_middle_4738 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.copper_be7d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.element_up_f905 {
    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);
}

.image_hard_0b9c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row_6faa {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.heading_42e1 {
    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);
}

.heading_42e1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.heading_42e1 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.texture_9a9f {
    padding: var(--section-padding);
}

.rough-388a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .rough-388a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container-dirty-b889 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_clean_c9b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lite_fb54 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lite_fb54 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-8a80 {
    margin-top: 3rem;
}

.pressed-8a80 .white-885d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pressed-8a80 .image_right_84f2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pressed-8a80 .button-white-7893 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pressed-8a80 .button-white-7893 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pressed-8a80 .button-white-7893 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pressed-8a80 .button-white-7893 li strong {
    color: var(--warning-color);
}

.thumbnail_d72d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_d72d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.prev_362e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_3fb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_3fb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-center-152b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-center-152b .description-bright-aade {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.yellow-ff6a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.surface-68b5 {
    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);
}

.surface-68b5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mask-warm-8028 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas-1b0b {
    flex: 1;
}

.sort_2b06 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.accordion-5bb1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.carousel-pink-854f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gradient_0d48 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.summary-pro-5104 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .summary-pro-5104 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-north-ab02 {
    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);
}

.logo-north-ab02:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.old_86a5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old_ee5d {
    color: var(--text-gray);
    font-size: 1rem;
}

.shade-1950 {
    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);
}

.hard_d2a3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hard_d2a3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.fast-74ee { 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; }
.primary_285d, .popup-e9d4 { max-width:100%; height:auto; }

.column-black-df7d, .tooltip-0a30, .tall-fc0a { white-space:normal; }

.avatar-39ee,
.accent_static_0065,
.outline_middle_e903,
.picture_motion_b889,
.preview_e1c7,
.surface-3c14 {
  flex-wrap:wrap;
}

[class*="grid"],
.summary-pro-5104,
.dropdown-yellow-8c55,
.grid-static-cce1 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.grid_focused_ae00 img,
.accent_static_0065 img,
.iron_e71e img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.secondary-205d, .pagination_green_3a47,
.cold_081e, .filter-steel-b937 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.title_focused_c5a1 { width:100%; overflow-x:auto; }
.title_focused_c5a1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.panel-0881 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .panel-0881 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.title_2ab9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.nav_active_e1f5,
.label-b5ff,
.huge-819d,
.main_8e6a,
.layout_glass_9ba8,
.summary-pro-5104,
.dropdown-yellow-8c55,
.grid-static-cce1,
.full_2792,
.disabled-center-7fba,
.panel-0881 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .nav_active_e1f5,
  .label-b5ff,
  .huge-819d,
  .main_8e6a,
  .layout_glass_9ba8,
  .summary-pro-5104,
  .dropdown-yellow-8c55,
  .grid-static-cce1,
  .full_2792,
  .disabled-center-7fba,
  .panel-0881 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.heading_hot_3494,
.grid-new-74f6,
.logo-north-ab02,
.background_hovered_e12d,
.dynamic_0db6,
.hover_white_6b12,
.solid-511e,
.title_2ab9 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.chip_prev_cf53,
.hero_9482,
.grid-focused-de15 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.chip_prev_cf53 > *,
.hero_9482 > *,
.grid-focused-de15 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d93d */
.promo-block-j1 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.3;
}
