/* {$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;
}

.silver-30bb {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.solid-5ea0 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .solid-5ea0 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .solid-5ea0 {
        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 */
.hover_upper_bb99 {
    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);
}

.section-copper-2bf7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .section-copper-2bf7 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .sort_6692 {
        grid-column: 1;
    }
    
    .down-d5e5 {
        grid-column: 2;
    }
    
    .carousel_fresh_8236 {
        grid-column: 3;
    }
}

.sort_6692 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.sort_6692:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hero_warm_6cd5 {
    display: none;
}

@media (min-width: 1024px) {
    .hero_warm_6cd5 {
        display: block;
    }
}

/* Grouped Navigation */
.shade-5b8e {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.detail-492d {
    position: relative;
}

.media-lite-a5df {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.detail-492d .inner-9a80 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.inner-9a80 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.solid_834f {
    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;
}

.solid_834f:hover,
.solid_834f.fn-active-c194 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.orange_6e6f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .orange_6e6f {
        display: flex;
    }
}

/* Mobile Register Button */
.down-d5e5 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .down-d5e5 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.button_out_febd {
    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;
}

.button_out_febd::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 */
.carousel_fresh_8236 {
    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) {
    .carousel_fresh_8236 {
        display: none;
    }
}

.carousel_fresh_8236 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.carousel_fresh_8236.fn-active-c194 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.carousel_fresh_8236.fn-active-c194 span:nth-child(2) {
    opacity: 0;
}

.carousel_fresh_8236.fn-active-c194 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.text-f6a2 {
    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;
}

.text-f6a2.fn-active-c194 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.focused-d37f {
    overflow: hidden;
}

.highlight-59b5 {
    list-style: none;
    padding: 0.75rem 0;
}

.layout_f9cb {
    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_f9cb:hover,
.layout_f9cb.fn-active-c194 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.layout_f9cb.title_51f6 {
    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_f9cb.title_51f6::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 */
.wide-9a16 {
    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;
}

.narrow-0057 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.narrow-0057:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.center-a915 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.center-a915:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.link-large-f66d {
    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;
}

.link-large-f66d:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.complex-0619 {
    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;
}

.notification_049d {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.notification_049d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.selected-c94c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.selected-c94c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.accent_5e71 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.accent_5e71: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);
}

.basic-fd70 {
    font-size: 1em;
    font-weight: 700;
}

.popup-f88e {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.yellow_d688 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.yellow_d688::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;
}

.active_first_e475 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .active_first_e475 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.notice-3177 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.simple-a519 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.menu-d1b4 {
    margin-bottom: 2rem;
}

.prev_2da6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .prev_2da6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action_ad52 {
    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);
}

.hero-bronze-31e3 {
    font-size: 1.5rem;
}

.hover-silver-c143 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.list_red_a434 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.old-7762 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.old-7762:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.sidebar_iron_e5ce {
    text-align: center;
    margin-bottom: 3rem;
}

.dim-66af {
    margin-bottom: 1rem;
}

.accordion_hovered_c810 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.title-dd8e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .title-dd8e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .title-dd8e.banner-9421 {
        direction: rtl;
    }
    
    .title-dd8e.banner-9421 > * {
        direction: ltr;
    }
}

.pro_0ead {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pro_0ead:first-child {
    margin-top: 0;
}

.info-2a28 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.slider-south-e2e7 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.slider-south-e2e7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.thumbnail_inner_1dd6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_inner_1dd6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_purple_e929 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.surface-3c63 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_slow_41be {
    list-style: none;
}

.active_slow_41be li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_slow_41be li:last-child {
    border-bottom: none;
}

/* Games Features */
.accent-5ef2 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-5f46 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.overlay_067e {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-middle-d696 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.highlight_brown_a309 {
    margin: 2rem 0;
}

.paragraph_blue_22af {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.row-black-b698 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.section_fast_00c5 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.carousel_solid_d08b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.hero-79ae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-79ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fast_92ec {
    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);
}

.fast_92ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.video-e3e1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hover-e9f3 {
    font-size: 1.5rem;
}

.aside_gold_b363 {
    color: var(--accent-color);
    margin: 0;
}

.title-12e7 {
    list-style: none;
}

.title-12e7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.title-12e7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.simple_7d81 {
    margin: 2rem 0;
}

.tooltip-cold-f53a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.popup_09a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .popup_09a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-1706 {
    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);
}

.component_dim_bd07 {
    font-size: 1.25rem;
}

.steel_55d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.backdrop-fresh-1df6,
.link_over_d496 {
    text-align: center;
    margin: 2rem 0;
}

.title-fc1b,
.fluid_824f {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.status_hovered_c5b9 {
    margin: 2rem 0;
    text-align: center;
}

.west-0216 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.west-0216::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;
}

.advanced_25d2 {
    position: relative;
    z-index: 1;
}

.border-under-5e56 {
    margin-bottom: 1rem;
}

.complex_6558 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.layout_paper_3298 {
    margin-bottom: 3rem;
}

.south-eac8 {
    margin-top: 3rem;
}

.mask-prev-d0c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mask-prev-d0c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-prev-d0c1 .action_ad52 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lite-07a6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.label-clean-0479 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.column_glass_2fd9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.grid-5cf0 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .grid-5cf0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-5cf0 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dropdown_selected_64c5 {
    margin-bottom: 1rem;
}

.image-pro-c73b img {
    margin-bottom: 1rem;
}

.banner-focused-4b5a {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-dark-b88b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.highlight_602f {
    list-style: none;
}

.highlight_602f li {
    margin-bottom: 0.5rem;
}

.highlight_602f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.highlight_602f a:hover {
    color: var(--accent-color);
}

.hidden_first_aaca {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.item_7f66 {
    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);
}

.item_7f66:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tertiary-fb0c {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tertiary-fb0c p {
    margin-bottom: 0.25rem;
}

.new-ab55 {
    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) {
    .new-ab55 {
        flex-direction: row;
    }
}

.logo-pressed-5c92 {
    text-align: center;
}

@media (min-width: 768px) {
    .logo-pressed-5c92 {
        text-align: left;
    }
}

.logo-pressed-5c92 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section_1285 {
    font-size: 0.75rem !important;
}

.mask_c53d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main_fdf3 {
    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);
    }
}

.down_bc31 {
    animation: fadeInUp 0.6s ease-out;
}

.south_9e73 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.fluid-8f54 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-8f54 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.media_bottom_a6c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_bottom_a6c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-66d0 {
    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);
}

.slider-66d0 .overlay_067e {
    font-size: 1.25rem;
}

.slider-66d0 .pressed-a309 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.gradient_53a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_53a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-4561 {
    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);
}

.module-4561:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.light_a8fc {
    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);
}

.soft-648d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.detail_bright_6391 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_bronze_0d5e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_d009 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.frame_d009 .detail-middle-d696 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_d009 .element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-light-5a66 {
    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);
}

.accordion_iron_b970 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.accordion_iron_b970 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.accordion_iron_b970 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.link_f3ff {
    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);
}

.picture-old-8fdd {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-d91d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-d91d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.info-d91d 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);
}

.info-d91d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.info-d91d input::placeholder {
    color: var(--text-muted);
}

.highlight-4260 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_old_d0ac {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.footer_old_d0ac input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.under-0a9d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.under-0a9d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.popup_09a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_09a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-1706 {
    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);
}

.top-1706 .component_dim_bd07 {
    font-size: 1.25rem;
}

.top-1706 .steel_55d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.upper_865d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_clean_da76 {
    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);
}

.focus_clean_da76 .overlay_067e {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_clean_da76 .detail-middle-d696 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus_clean_da76 .element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-40a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-4aa8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-4aa8 .popup-copper-6a46 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-4aa8 .sidebar-6ee7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-e08f {
    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);
}

.icon_fresh_5a59 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_fresh_5a59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-paper-f95a {
    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);
}

.alert-paper-f95a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.red-9423 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dropdown_7c89 {
    flex: 1;
}

.notification-pressed-89a9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.slider-easy-406d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption-6128 {
    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);
}

.caption-6128:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.gradient-db49 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-db49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_wood_aff9 {
    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);
}

.alert_wood_aff9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-fixed-7cdc {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_ced3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.backdrop_4b3a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search-201c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.button_warm_e890 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header_3c43 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_3f91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_3f91 .east-6038 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_3f91 .sort_advanced_44b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood-b7c1 {
    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);
}

.tall_ca6e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-light-f4bb {
    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);
}

.list-light-f4bb .overlay_067e {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-light-f4bb .detail-middle-d696 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list-light-f4bb .element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic_6294 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic_6294 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_27a7 {
    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);
}

.dropdown_27a7:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.background_mini_6307 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_mini_6307 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_4d4e {
    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);
}

.green_4d4e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_3e9d {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_9332 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.row-black-b698 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.lower-0b29 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.full_dd81 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-6640 {
    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);
}

.hard-6640:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_ab38 {
    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);
}

.hero-outer-4bf1 {
    flex: 1;
}

.accent-9126 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.picture_pro_371a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pro_0a9b {
    color: var(--text-gray);
    line-height: 1.6;
}

.left_ea57 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-copper-5e31 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-copper-5e31 .popup-copper-6a46 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip-copper-5e31 .sidebar-6ee7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_over_d496 {
    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);
}

.easy-387f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy-387f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.table_bottom_ce2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_bottom_ce2b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim_d17a {
    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);
}

.dim_d17a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-motion-41ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-warm-6596 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thumbnail-short-81fb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dim_618b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip_d6f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_7bb1 {
    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);
}

.glass_c09c {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_narrow_35f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip-6ee1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall_ca6e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-light-f4bb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.list-light-f4bb .detail-middle-d696 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list-light-f4bb .element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-pressed-dd3a {
    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);
}

.paragraph-basic-86da {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-basic-86da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-basic-86da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_clean_24d7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.component_clean_24d7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-cold-32ed {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gold-cdaa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.thumbnail-south-11b2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.media-hovered-d724 {
    padding: 1.5rem;
}

.advanced_466e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wide_066d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide_066d 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;
}

.wide_066d li:last-child {
    border-bottom: none;
}

.wide_066d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.accordion_stone_5e6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_stone_5e6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-c9e6 {
    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);
}

.feature-c9e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-35be {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue_bf7c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.button_dim_268c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.menu_basic_21e0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.article_last_0113 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected-57dc {
    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);
}

.in_b0be {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-iron-3001 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-c4e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-wide-b86e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.aside_inner_d3a4 {
    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);
}

.frame-f540 {
    text-align: center;
}

.pink_9d57 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_a36f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text-mini-5f70 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_827a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_827a .detail-middle-d696 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_827a .element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_200f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .article_200f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article_200f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough_5c8d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.rough_5c8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_6985 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.liquid-1c35 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.detail-middle-d696 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.box-wood-04fe {
    padding: 1.5rem;
}

.element-ca4f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cold-0e9f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold-0e9f 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;
}

.cold-0e9f li:last-child {
    border-bottom: none;
}

.cold-0e9f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.element-0523 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.glass-b25e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.glass-b25e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-f487 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow_b6ea {
    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);
}

.light_a8fc {
    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;
}

.soft-648d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail_bright_6391 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_69f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-2862 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary-dim-c969 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.upper_3098 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.huge_ddcf {
    display: flex;
    gap: 1rem;
}

.huge_ddcf .outer-2591 {
    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;
}

.description_brown_bf98 {
    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);
}

.highlight_black_abdf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.logo_fluid_9f3d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_fluid_9f3d 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;
}

.logo_fluid_9f3d li:last-child {
    border-bottom: none;
}

.logo_fluid_9f3d li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.inner_b033 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .inner_b033 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner_b033 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_soft_6046 {
    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_soft_6046:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused-b2d9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.full-d49d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.east-6038 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.layout-693b {
    font-size: 1rem;
}

.layout_1063 {
    padding: 1.5rem;
}

.sort_advanced_44b0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form_dark_da99 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.form_dark_da99 .frame-f540 {
    text-align: center;
}

.form_dark_da99 .frame_a36f {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.form_dark_da99 .chip_last_ff43 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pink_cc6e {
    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);
}

.pink_cc6e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.heading_0aa2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_0aa2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_0da7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail_0da7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_stale_c8de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_purple_0066 {
    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);
}

.mini-6415 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-66e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outer-00ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-9d06 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected-0f38 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_12cc {
    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);
}

.east-8e7a {
    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;
}

.east-8e7a.right-8b8b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.east-8e7a.card_focused_7a6f {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.east-8e7a.label_tall_5b5e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.east-8e7a.upper_7915 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.east-8e7a.photo-3a07 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tag_steel_f233 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box_black_325d {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-cold-7d6d {
    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);
}

.notification_3e0a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.green-40a3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-40a3 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;
}

.green-40a3 li:last-child {
    border-bottom: none;
}

.green-40a3 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.item_tiny_4aef {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_tiny_4aef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_tiny_4aef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_cool_6e05 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent_cool_6e05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_cool_6e05.wrapper-477c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .accent_cool_6e05.wrapper-477c {
        grid-column: span 3;
    }
}

.shade-pro-229f {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.accent_cool_6e05.wrapper-477c .shade-pro-229f {
    background: rgba(6, 182, 212, 0.1);
}

.hover_16c4 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.breadcrumb-new-d7ed {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.accent_cool_6e05.wrapper-477c .breadcrumb-new-d7ed {
    color: var(--info-color);
}

.texture-3217 {
    padding: 1.5rem;
    text-align: center;
}

.up-8a38 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.accent_cool_6e05.wrapper-477c .up-8a38 {
    color: var(--info-color);
}

.copper-b70d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.narrow_9a5b {
    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 */
.nav-lite-6d2f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-lite-6d2f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-46a1 {
    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);
}

.modal-46a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark_072f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_clean_da76 {
    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);
}

.component_dim_bd07 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-under-7245 {
    flex: 1;
}

.tooltip-cold-f53a {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dynamic-f84e {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_huge_043a {
    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);
}

.text_tall_ae47 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.chip_7c45 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.main_fdf3 {
    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);
}

.dropdown-hard-cd5b {
  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);
}

.dropdown-hard-cd5b .frame-f540 {
    text-align: center;
}

.dropdown-hard-cd5b .pink_9d57 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.dropdown-hard-cd5b .frame_a36f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.large-5965 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_fixed_ccbe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow_e36d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.silver_dea5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-683d {
    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);
}

.stone-461f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.glass-f8b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-short-00c7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion-short-00c7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion-short-00c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_outer_97bf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider_outer_97bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_62ce {
    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);
}

.accent-full-4e6b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.link_3c4f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.icon_over_df96 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon_over_df96.detail-b01d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.icon_over_df96.full-dee1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.icon_over_df96.header-lower-391d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.photo-blue-5f60 {
    padding: 1.5rem;
    text-align: center;
}

.section-0e2f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.search-fa13 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-fa13 .chip-center-22ed {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.slow_ac94 {
    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);
}

.slow_ac94:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.modal_1ce6 {
  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);
}

.backdrop_gas_76fe {
    text-align: center;
}

.backdrop_gas_76fe .pink_9d57 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.backdrop_gas_76fe .frame_a36f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.plasma-1a9b { text-align: center; }
.menu-f5f1 { text-align: left; }
.widget-under-f04f { text-align: right; }

.heading-dynamic-0c3f { margin-bottom: 0; }
.action-8a1f { margin-bottom: 0.5rem; }
.right_ed51 { margin-bottom: 1rem; }
.dynamic_be45 { margin-bottom: 1.5rem; }
.warm_aedb { margin-bottom: 2rem; }

.tertiary-7f68 { margin-top: 0; }
.item-a578 { margin-top: 0.5rem; }
.silver-767a { margin-top: 1rem; }
.description_db2a { margin-top: 1.5rem; }
.icon-top-9abb { margin-top: 2rem; }

.fn-hidden-c194 { display: none; }
.fn-visible-c194 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .yellow_d688 {
        padding: 6rem 0 3rem;
    }
    
    .active_first_e475 {
        text-align: center;
    }
    
    .title-dd8e {
        text-align: center;
    }
    
    .prev_2da6 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hover_upper_bb99,
    .text-f6a2,
    .west-0216,
    .column_glass_2fd9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .yellow_d688 {
        background: none;
    }
}

/* Providers Section */
.primary_afad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-e7fc {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-e7fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-e7fc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-2020 {
    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-2020:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup_94f4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.module_smooth_2e6f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-30c0 {
    list-style: none;
    padding: 0;
}

.section-30c0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.section-30c0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.picture-380d {
    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);
}

.picture-380d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.notification_short_725b {
    padding: var(--section-padding);
}

.logo_north_8fc3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_north_8fc3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail-8467 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail-8467:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.outline-wide-5f90 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.easy-9bac {
    display: flex;
    flex-direction: column;
}

.orange-b1c0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.advanced_5746 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.label_rough_4056 {
    color: var(--accent-color);
}

.thumbnail-south-953a {
    font-size: 1.25rem;
}

.main_92ea {
    margin-bottom: 1rem;
}

.main_92ea p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.gradient_advanced_f9b8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-2342 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.frame-f540 {
    text-align: center;
}

.pink_9d57 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_a36f {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hot-fcaa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-d8a0 {
    margin: 2rem 0;
}

.center_eb58 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.center_eb58 .overlay_067e {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress_steel_037f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.picture-full-b9a3 {
    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;
}

.picture-full-b9a3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar-edb4 {
    font-size: 2rem;
}

.tag-3127 {
    display: flex;
    flex-direction: column;
}

.hard-de92 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.in_c64d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.focus_28ee {
    padding: var(--section-padding);
}

.surface_complex_4a95 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .surface_complex_4a95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface_complex_4a95 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag-3565 {
    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);
}

.tag-3565:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tag-3565 .pink_9d57 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tag-3565 .frame_a36f {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tag-3565 .progress-cold-7ed1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.copper_a609 {
    margin-top: 4rem;
}

.module-gas-c871 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.hidden-warm-edec {
    overflow-x: auto;
}

.row-f1f7 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.row-f1f7 thead {
    background: var(--accent-color);
}

.row-f1f7 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.row-f1f7 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.row-f1f7 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.row-f1f7 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.south-f79f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-green-b5ec {
    max-width: 900px;
    margin: 0 auto;
}

.fresh-b3f2 {
    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);
}

.fresh-b3f2:hover {
    border-color: var(--accent-color);
}

.outer_5559 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.outer_5559 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.icon-28e3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.fresh-b3f2.fn-active-c194 .icon-28e3 {
    transform: rotate(45deg);
}

.pagination_east_e204 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.fresh-b3f2.fn-active-c194 .pagination_east_e204 {
    max-height: 1000px;
}

.pagination_east_e204 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.last-0f29 {
    padding: var(--section-padding);
}

.accordion_iron_b970 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.brown_c7cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.motion_f3e5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_f3e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_419e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_soft_0b1c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.overlay-526c {
    font-size: 2rem;
}

.aside-dirty-afd6 {
    color: var(--text-white);
    margin: 0;
}

.banner-0903 {
    list-style: none;
    padding: 0;
}

.banner-0903 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-0903 li:last-child {
    border-bottom: none;
}

.dark-ea92 {
    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);
}

.dark-ea92 p {
    color: var(--success-color);
    margin: 0;
}

.outline-bottom-fa45 {
    margin-top: 3rem;
}

.highlight_black_abdf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hover_tiny_2861 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hover_tiny_2861 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-83ee {
    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);
}

.gradient_c0ac {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active-83ee p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.stale-6a66 {
    padding: var(--section-padding);
}

.red_69e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_69e3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-left-452b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus-left-452b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.row_5850 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.active-focused-3025 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.photo_complex_fd9b {
    flex: 1;
}

.pattern_top_e8fa {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.inner_de55 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.section_15b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast-a93c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fast-a93c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.logo_0dbd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dropdown_b904 {
    padding: var(--section-padding);
}

.tooltip-c795 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.full_c5c7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_c5c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_old_3ddd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_d006, .mask-9fa1, .fixed-5864 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.fixed-5864 {
    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 */
.easy_5a3d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-1bdd {
    margin: 2rem 0;
}

.widget_fresh_604e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-fd5e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bronze-0717 {
    list-style: none;
    padding: 0;
}

.bronze-0717 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;
}

.bronze-0717 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.bronze-0717 li:last-child {
    border-bottom: none;
}

.avatar_in_c0c1 {
    text-align: center;
    margin-top: 2rem;
}

.panel-dim-f9d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.shade_a23f {
    padding: var(--section-padding);
}

.copper_b707 {
    margin: 2rem 0;
}

.slow_4cfe {
    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) {
    .slow_4cfe {
        flex-direction: column;
        align-items: flex-start;
    }
}

.slow_4cfe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.icon_east_f8a1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.input-east-3ba2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.tertiary-4ad5 {
    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;
}

.link_full_4335 {
    flex: 1;
}

.form_28e4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.caption_plasma_12fc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_6f8a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.footer_22f9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .footer_22f9 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.backdrop-10ca {
    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);
}

.backdrop-10ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.backdrop-10ca .pink_9d57 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop-10ca .frame_a36f {
    color: var(--text-gray);
    font-size: 1rem;
}

.overlay_a93d {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_75dc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.blue_75dc strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.filter-yellow-b237 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .filter-yellow-b237 {
        grid-template-columns: 1fr 1fr;
    }
}

.photo_dirty_20cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west_bd5e {
    margin-bottom: 1.5rem;
}

.west_bd5e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.west_bd5e input,
.west_bd5e 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;
}

.west_bd5e input:focus,
.west_bd5e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.surface_4751 {
    width: 100%;
    margin-top: 1rem;
}

.dropdown_left_60c4 {
    display: flex;
    align-items: center;
}

.pro-c200 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb-6e29 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.secondary-e9e1 {
    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;
}

.south_296e {
    color: var(--text-gray);
}

.huge-b40a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.link_6b57 {
    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);
}

.link_6b57 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.module_liquid_70a3 {
    margin-top: 3rem;
}

.search_active_655c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.nav-a0c2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-2880 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.dropdown_bottom_c714 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown_bottom_c714:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.full-5135 {
    padding: var(--section-padding);
}

.narrow_3957 {
    margin: 2rem 0;
}

.tooltip-3975 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.alert-wood-4f03 {
    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;
}

.alert-wood-4f03:hover, .alert-wood-4f03.fn-active-c194 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.surface-current-e5ff {
    display: none;
}

.surface-current-e5ff.fn-active-c194 {
    display: block;
}

.column-gas-9cc5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle-11b2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.action_70a3 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.action_70a3 ul {
    list-style: none;
    padding: 0;
}

.action_70a3 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.action_70a3 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.banner_smooth_3ebc {
    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 */
.wrapper_pro_da73 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-plasma-8804 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-hard-13fe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-d910 {
    color: var(--accent-color);
    margin: 0;
}

.button-over-155d {
    display: flex;
    gap: 1.5rem;
}

.hard_f3c7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shade-slow-0288 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.main-complex-0dc4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.main-complex-0dc4.search-pink-7abc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.main-complex-0dc4.component-cool-58f2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.main-complex-0dc4.blue-6422 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.header_7ab1 {
    margin-top: 2rem;
}

.icon_under_cb53 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accordion-6b9c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .accordion-6b9c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-liquid-f25f {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.disabled_0a84 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.black_4d2f {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.shadow-2f3f {
    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 */
.form-4175 {
    padding: var(--section-padding);
}

.silver_ee9b {
    margin: 2rem 0;
}

.alert_f56d {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.column_c9b7 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.dropdown_bd68 {
    list-style: none;
    padding: 0;
}

.dropdown_bd68 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;
}

.dropdown_bd68 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.dropdown_bd68 li:last-child {
    border-bottom: none;
}

.wide-92d4 {
    margin: 2rem 0;
}

.chip-8204 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.focused-37e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .focused-37e0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description_7a41 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_hot_190e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-bb3e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.menu_hovered_c70b {
    margin-top: 2rem;
}

.notification-pressed-89a9 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.search-liquid-8c18 {
    list-style: none;
    padding: 0;
}

.gas_ce6d {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.gas_ce6d a {
    color: var(--accent-color);
    text-decoration: none;
}

.gas_ce6d a:hover {
    text-decoration: underline;
}

.bottom-3138 {
    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 */
.primary_0f69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-da35 {
    margin: 2rem 0;
}

.badge-3e76 {
    margin-bottom: 3rem;
}

.badge-3e76 .dark-fd5e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message_middle_dc17 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.form_ca84 {
    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);
}

.form_ca84:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.slider_silver_7449 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .slider_silver_7449 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered_ff79 {
    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 */
.wrapper_c236 {
    padding: var(--section-padding);
}

.box_cb6c {
    margin: 2rem 0;
}

.thumbnail_purple_a8ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main_0c99 {
    overflow-x: auto;
    margin: 2rem 0;
}

.alert_3012 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.middle_5690 {
    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;
}

.stone_cc8c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.surface_over_feca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .surface_over_feca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-c3ef {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge-c3ef .overlay_067e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.huge-c3ef .detail-middle-d696 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice_stone_f9c6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.stale_13a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_5f6d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_5f6d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-copper-0053 {
    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;
}

.primary-copper-0053:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.silver-bb4b {
    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);
}

.overlay_c867 {
    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;
}

.upper-0665 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow_9114 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.link_fast_c719 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.wide-adc1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.west-482a {
    color: var(--text-white);
    font-weight: 600;
}

.right_25c7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter_middle_724b {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_middle_724b .outer-2591 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box-5839 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box-5839 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-cbe6 {
    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);
}

.notification-cbe6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification-cbe6 .pink_9d57 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-cbe6 .frame_a36f {
    color: var(--text-gray);
    font-size: 1rem;
}

.outer_101d {
    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);
}

.focus_old_d3ab {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focus_old_d3ab strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.tooltip_d6f8 {
    margin: 2rem 0;
}

.text_7bb1 {
    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);
}

.text_7bb1:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.glass_c09c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.large-9667 {
    flex: 1;
}

.layout_narrow_35f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip-6ee1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.tall_ca6e {
    margin: 2rem 0;
}

.list-light-f4bb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-light-f4bb .detail-middle-d696 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.list-light-f4bb .element-ca4f {
    color: var(--text-gray);
    margin: 0;
}

.breadcrumb-pressed-dd3a {
    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);
}

.breadcrumb-pressed-dd3a .title-fc1b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.notice_stone_f9c6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.alert_ab38 {
    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;
}

.hero-outer-4bf1 {
    flex: 1;
}

.picture_pro_371a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.pro_0a9b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.light_a8fc {
    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;
}

.gas-844c {
    flex: 1;
}

.soft-648d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.detail_bright_6391 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.tertiary-dim-c969 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.upper_3098 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.huge_ddcf {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.huge_ddcf .outer-2591 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.description_brown_bf98 {
    margin-top: 2rem;
}

.description_brown_bf98 .highlight_black_abdf {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.yellow-c599 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_inner_d3a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .aside_inner_d3a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_inner_d3a4 .frame-f540 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-mini-5f70 {
    margin: 2rem 0;
}

.label_827a {
    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 */
.tabs-advanced-f0b5 {
    padding: var(--section-padding);
}

.box-wood-04fe {
    margin-top: 1rem;
}

.cold-0e9f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.cold-0e9f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.cold-0e9f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.outer_1836 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_bright_c9c7 {
    margin: 2rem 0;
}

.plasma-1686 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.medium-b67b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.widget_2c15 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.pattern-first-63c0 {
    margin: 2rem 0;
}

.pattern_4580 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pattern_4580 .dark-fd5e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-298f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-298f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light-3dc7 {
    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);
}

.popup-0ceb {
    color: var(--text-white);
    font-weight: 600;
}

.accent_e1c6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.avatar_c2f7 {
    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);
}

.avatar_c2f7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tag-stone-7003 {
    padding: var(--section-padding);
}

.preview-05de {
    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;
}

.preview-05de:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.green_53a4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.green_53a4 .gradient_c0ac {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_53a4 .media_wood_a844 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.heading-912c {
    flex: 1;
}

.module_e0d5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.form_048b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form_048b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.form_048b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.footer_0fec {
    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);
}

.footer_0fec p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer_0fec strong {
    color: var(--warning-color);
}

/* Slots Section */
.focus_ba38 {
    padding: var(--section-padding);
}

.button_warm_e890 {
    margin: 2rem 0;
}

/* Table Games Section */
.info_731a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_3c43 {
    margin: 2rem 0;
}

.hero_3f91 {
    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);
}

.hero_3f91:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hero_3f91 .east-6038 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_3f91 .sort_advanced_44b0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.wood-b7c1 {
    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);
}

.wood-b7c1 .title-fc1b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.media-right-ae00 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over_c3e1 {
    margin: 2rem 0;
}

.wood-49ea {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-red-b84e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-b03a {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.huge_d2df {
    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);
}

.huge_d2df:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.huge_d2df.fn-active-c194 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface-dirty-feb6 {
    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);
}

.image_3f33 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_3f33 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.list_first_f104 {
    padding: var(--section-padding);
}

.left-4c71 {
    margin: 2rem 0;
}

.main_large_40f2 {
    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);
}

.main_large_40f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .main_large_40f2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.box_out_119d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.brown-56e8 {
    flex: 1;
}

.carousel_e385 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort_dd05 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.cold_a1d6 {
    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;
}

.smooth-53f6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.primary_north_2580 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.notice_8d97 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline-last-9950 {
    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;
}

.outline-last-9950:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.badge-over-f71e {
    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);
}

.thumbnail_solid_ac35 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_solid_ac35 strong {
    color: var(--accent-color);
}

/* New Games Section */
.feature_5cae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_3fb1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .bronze_3fb1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bronze_3fb1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_7feb {
    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;
}

.silver_7feb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container_da15 {
    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;
}

.last_a2a8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.narrow-e13a {
    font-size: 2rem;
}

.hidden_a499 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.black-ece0 {
    flex: 1;
}

.frame_3c65 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.hover_1a97 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hidden_8f53 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border-ff85 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hidden_dirty_d3ac {
    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;
}

.shadow-black-ed1f {
    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;
}

.shadow-black-ed1f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.glass_d94b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-silver-c2f7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast-0813 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .fast-0813 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo_west_f874 {
    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);
}

.thick_e929 {
    color: var(--text-white);
    font-weight: 600;
}

.lower_7b82 {
    color: var(--accent-color);
    font-weight: 600;
}

.button_0e06 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.button_0e06 strong {
    color: var(--accent-color);
}

/* Security Section */
.short-f875 {
    padding: var(--section-padding);
}

/* Benefits Section */
.hover_9ebe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.popup_4c2b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tag_c864 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-44f3 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.selected-6f5d {
    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) {
    .selected-6f5d {
        flex-direction: column;
        gap: 1rem;
    }
}

.selected-6f5d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.selected-6f5d .light_a8fc {
    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;
}

.selected-6f5d .gas-844c {
    flex: 1;
}

.selected-6f5d .soft-648d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.selected-6f5d .detail_bright_6391 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.article_paper_0d46 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_paper_0d46 .tooltip-cold-f53a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article_paper_0d46 .upper_865d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article_paper_0d46 .upper_865d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.article_paper_0d46 .upper_865d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.sidebar-hot-3174 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.secondary_narrow_ecfa {
    padding: var(--section-padding);
}

.banner-b4d1 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .banner-b4d1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption_96a1 {
    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);
}

.caption_96a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.caption_96a1 .form_758e {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption_96a1 .bright_f7aa {
    flex: 1;
}

.caption_96a1 .popup-copper-6a46 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption_96a1 .mask_5287 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.disabled_b87d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_b87d .texture-bronze-ba12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_b87d .input-white-23fa {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.disabled_b87d .input-white-23fa 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);
}

.disabled_b87d .input-white-23fa li:last-child {
    border-bottom: none;
}

.disabled_b87d .input-white-23fa 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;
}

.disabled_b87d .input-white-23fa li strong {
    color: var(--text-white);
}

.table_47b1 {
    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);
}

.table_47b1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.table_47b1 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.search-black-221c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper-1fb9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .upper-1fb9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion_up_d1f3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion_up_d1f3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider-1d11 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module-c6ac {
    font-size: 2rem;
}

.orange-ef06 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_fe74 {
    flex: 1;
}

.search-east-7ba4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-east-7ba4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.search-east-7ba4 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.accordion-gold-af99 {
    margin-top: 3rem;
}

.alert_f56d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.column_c9b7 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown_bd68 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_bd68 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dropdown_bd68 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dropdown_bd68 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.fixed-494e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_wood_a451 {
    margin: 2rem 0;
}

.old_1f4f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.old_1f4f .dark-fd5e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_thick_c8b0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .aside_thick_c8b0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled_832a {
    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);
}

.disabled_832a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tabs_over_e7a8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.breadcrumb_prev_e642 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.row-action-d0a2 {
    padding: var(--section-padding);
}

.small_e799 {
    margin: 2rem 0;
}

.new-8bfc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .new-8bfc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new-8bfc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_83cf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.middle_83cf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination-2507 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.box_9fcc {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.primary-complex-4253 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.primary-complex-4253.gas_23da {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary-current-045b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.background-2f61 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.sort-copper-f8ab {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stale_d6ee {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paragraph-04b7 {
    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);
}

.paragraph-04b7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-04b7 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.text_steel_cfb8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery-under-8d31 {
    margin: 2rem 0;
}

.easy-f23e {
    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) {
    .easy-f23e {
        flex-direction: column;
        gap: 1rem;
    }
}

.easy-f23e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.easy-f23e::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);
}

.bottom-14db {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.fresh_bd0f {
    flex: 1;
}

.warm_eacd {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sidebar-627d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-627d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_soft_de2c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy-441d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-1c3b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-1c3b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_c0e2 {
    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);
}

.description_liquid_0cf4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gallery_advanced_0565 {
    flex: 1;
}

.east_3b96 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.notification-a267 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight_east_c846 {
    margin-top: 2rem;
    text-align: center;
}

.status_f83e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status_f83e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.heading_0aa2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_0aa2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_0da7 {
    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);
}

.thumbnail_0da7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.thumbnail_0da7 .hover-35be {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_0da7 .blue_bf7c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.thumbnail_0da7 .button_dim_268c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.thumbnail_0da7 .menu_basic_21e0 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.dropdown-yellow-74eb {
    padding: var(--section-padding);
}

.image_purple_0066 .feature_short_ac26 {
    flex: 1;
}

/* Promo Calendar Section */
.link-5638 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-002e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-002e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-warm-01b0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_aba8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tabs_pro_3420 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.south_325d {
    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);
}

.hard_6fef {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.image_1308 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.notice_paper_8cd9 {
    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);
}

.notice_paper_8cd9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice_paper_8cd9 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.summary_fluid_139b {
    padding: var(--section-padding);
}

.block_under_3834 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .block_under_3834 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.picture-8583 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_cool_0c21 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-north-bc8d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-north-bc8d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wide_f24c {
    margin-top: 3rem;
}

.wide_f24c .alert_f56d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wide_f24c .column_c9b7 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide_f24c .dropdown_bd68 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wide_f24c .dropdown_bd68 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wide_f24c .dropdown_bd68 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wide_f24c .dropdown_bd68 li strong {
    color: var(--warning-color);
}

.box_b324 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_b324 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.silver-09f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-5be2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-5be2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-brown-6ef1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-brown-6ef1 .dark-fd5e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.paragraph-36eb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box-short-7bf3 {
    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);
}

.box-short-7bf3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.chip-fresh-a146 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_6d39 {
    flex: 1;
}

.search_east_afcc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.stale-2adf {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pattern_a853 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.copper_cda7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video_pressed_6a55 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .video_pressed_6a55 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-bc47 {
    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);
}

.hard-bc47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert-basic-e896 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.brown_03c7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.blue_75dc {
    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);
}

.image-7ef1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.image-7ef1 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.solid-5ea0 { 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; }
.old-7762, .slider-south-e2e7 { max-width:100%; height:auto; }

.wide-9a16, .link-large-f66d, .complex-0619 { white-space:normal; }

.active_first_e475,
.title-dd8e,
.nav-lite-6d2f,
.heading_0aa2,
.tall_ca6e,
.accordion-short-00c7 {
  flex-wrap:wrap;
}

[class*="grid"],
.video_pressed_6a55,
.new-8bfc,
.mask-prev-d0c1 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.yellow_d688 img,
.title-dd8e img,
.list_red_a434 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.notice-3177, .simple-a519,
.dim-66af, .accordion_hovered_c810 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.hidden-warm-edec { width:100%; overflow-x:auto; }
.hidden-warm-edec table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.column-e7fc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .column-e7fc {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.active-2020 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.surface_complex_4a95,
.search-5773,
.thumbnail-hovered-f1e1,
.hero-hovered-f82d,
.footer_22f9,
.video_pressed_6a55,
.new-8bfc,
.mask-prev-d0c1,
.modal_1ce6,
.left-4c71,
.column-e7fc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .surface_complex_4a95,
  .search-5773,
  .thumbnail-hovered-f1e1,
  .hero-hovered-f82d,
  .footer_22f9,
  .video_pressed_6a55,
  .new-8bfc,
  .mask-prev-d0c1,
  .modal_1ce6,
  .left-4c71,
  .column-e7fc {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tag-3565,
.backdrop-10ca,
.hard-bc47,
.action_ad52,
.middle_83cf,
.backdrop_gas_76fe,
.main_large_40f2,
.active-2020 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.thick_0ff4,
.shade_fdd2,
.disabled_next_9d7d {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.thick_0ff4 > *,
.shade_fdd2 > *,
.disabled_next_9d7d > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 03a8 */
.shadow-element-x9 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
