/* {$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;
}

.iron_3f33 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.smooth-0aa1 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .smooth-0aa1 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .smooth-0aa1 {
        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 */
.grid_8410 {
    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);
}

.video-cold-d67a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .video-cold-d67a {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .panel_hot_3758 {
        grid-column: 1;
    }
    
    .paragraph-e300 {
        grid-column: 2;
    }
    
    .detail-8a0d {
        grid-column: 3;
    }
}

.panel_hot_3758 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.panel_hot_3758:hover img {
    transform: scale(1.05);
}

/* Navigation */
.cool-2bbf {
    display: none;
}

@media (min-width: 1024px) {
    .cool-2bbf {
        display: block;
    }
}

/* Grouped Navigation */
.progress_9547 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sidebar_clean_20da {
    position: relative;
}

.blue_4108 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.sidebar_clean_20da .sidebar-45b9 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.sidebar-45b9 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.item-complex-43f3 {
    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;
}

.item-complex-43f3:hover,
.item-complex-43f3.fn-active-01c7 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.footer_plasma_1190 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer_plasma_1190 {
        display: flex;
    }
}

/* Mobile Register Button */
.paragraph-e300 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .paragraph-e300 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.message-tiny-d722 {
    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;
}

.message-tiny-d722::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 */
.detail-8a0d {
    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) {
    .detail-8a0d {
        display: none;
    }
}

.detail-8a0d span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.detail-8a0d.fn-active-01c7 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.detail-8a0d.fn-active-01c7 span:nth-child(2) {
    opacity: 0;
}

.detail-8a0d.fn-active-01c7 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.section-brown-6c2c {
    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;
}

.section-brown-6c2c.fn-active-01c7 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.gas_8e8b {
    overflow: hidden;
}

.main-bronze-248d {
    list-style: none;
    padding: 0.75rem 0;
}

.text_yellow_3415 {
    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;
}

.text_yellow_3415:hover,
.text_yellow_3415.fn-active-01c7 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.text_yellow_3415.column_6039 {
    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;
}

.text_yellow_3415.column_6039::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 */
.component-liquid-84bb {
    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;
}

.up_e5c3 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.up_e5c3:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.progress_stone_8180 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.progress_stone_8180:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.info_full_aea8 {
    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;
}

.info_full_aea8:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.description-basic-6daa {
    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;
}

.advanced-465a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.advanced-465a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.detail_first_da52 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.detail_first_da52:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.silver_4ca7 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.silver_4ca7: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);
}

.search-b019 {
    font-size: 1em;
    font-weight: 700;
}

.surface_dirty_9561 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.mini-292f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.mini-292f::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;
}

.in-df26 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .in-df26 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.fixed-9935 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.nav_3f1c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.media_ff49 {
    margin-bottom: 2rem;
}

.component-west-3699 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .component-west-3699 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-cold-6f32 {
    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);
}

.column-4371 {
    font-size: 1.5rem;
}

.paragraph_orange_2f07 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.popup-out-5efb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail_south_ae52 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.thumbnail_south_ae52:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hero-8c2a {
    text-align: center;
    margin-bottom: 3rem;
}

.paper-f22a {
    margin-bottom: 1rem;
}

.short-46ee {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.card-top-bc22 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .card-top-bc22 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .card-top-bc22.heading-paper-2490 {
        direction: rtl;
    }
    
    .card-top-bc22.heading-paper-2490 > * {
        direction: ltr;
    }
}

.aside_smooth_a4e7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.aside_smooth_a4e7:first-child {
    margin-top: 0;
}

.tall-ce8b {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.input_0393 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input_0393:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.detail_c1d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_c1d4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag-584a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary_6501 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thumbnail-black-42c0 {
    list-style: none;
}

.thumbnail-black-42c0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-black-42c0 li:last-child {
    border-bottom: none;
}

/* Games Features */
.aside_basic_866b {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.element-outer-43a1 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.silver_2c5a {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-bottom-a3ae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.dim-9ec0 {
    margin: 2rem 0;
}

.hover-under-023c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.image_hot_6731 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.dynamic-7eca {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tag_d1b7 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.caption-7295 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-7295 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth-8eee {
    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);
}

.smooth-8eee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.brown-0ee0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.iron_6e83 {
    font-size: 1.5rem;
}

.label-21b8 {
    color: var(--accent-color);
    margin: 0;
}

.highlight-11ef {
    list-style: none;
}

.highlight-11ef li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.highlight-11ef li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.tiny_ce78 {
    margin: 2rem 0;
}

.video-gas-0e5a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.message-top-ac02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .message-top-ac02 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_3ce5 {
    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);
}

.section_warm_e97d {
    font-size: 1.25rem;
}

.alert-2873 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.rough-b652,
.grid-9068 {
    text-align: center;
    margin: 2rem 0;
}

.lite-cbe2,
.backdrop-down-e194 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.orange-d6b1 {
    margin: 2rem 0;
    text-align: center;
}

.aside_22c8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aside_22c8::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;
}

.south-2497 {
    position: relative;
    z-index: 1;
}

.logo_86cd {
    margin-bottom: 1rem;
}

.form-under-d048 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-92fc {
    margin-bottom: 3rem;
}

.wrapper_pro_45a7 {
    margin-top: 3rem;
}

.dropdown-3248 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dropdown-3248 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-3248 .description-cold-6f32 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-f6be {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_stone_20ef {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.avatar-green-c3eb {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.thumbnail-d333 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .thumbnail-d333 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail-d333 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.heading_middle_d454 {
    margin-bottom: 1rem;
}

.video-c903 img {
    margin-bottom: 1rem;
}

.in-bfaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_pro_ddd4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.content_old_f2b2 {
    list-style: none;
}

.content_old_f2b2 li {
    margin-bottom: 0.5rem;
}

.content_old_f2b2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.content_old_f2b2 a:hover {
    color: var(--accent-color);
}

.disabled_b215 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status_west_e078 {
    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);
}

.status_west_e078:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.caption-green-1ae1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.caption-green-1ae1 p {
    margin-bottom: 0.25rem;
}

.status-easy-460b {
    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) {
    .status-easy-460b {
        flex-direction: row;
    }
}

.clean_e8a1 {
    text-align: center;
}

@media (min-width: 768px) {
    .clean_e8a1 {
        text-align: left;
    }
}

.clean_e8a1 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb_cool_ad18 {
    font-size: 0.75rem !important;
}

.focused_8258 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebar_orange_4a26 {
    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);
    }
}

.content-faf1 {
    animation: fadeInUp 0.6s ease-out;
}

.notification_orange_7fe6 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.wide-7a7d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide-7a7d {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.steel_2550 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel_2550 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_fluid_7787 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_fluid_7787 .silver_2c5a {
    font-size: 1.25rem;
}

.gallery_fluid_7787 .hover-a35c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.east-bb43 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .east-bb43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-bed7 {
    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);
}

.aside-bed7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-light-ca0b {
    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);
}

.fluid_5abd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.filter_3c95 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-3974 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-9b05 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-9b05 .list-bottom-a3ae {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-9b05 .hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-iron-0fb7 {
    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);
}

.panel_1568 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.panel_1568 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.panel_1568 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hover_3d57 {
    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);
}

.tabs-34ff {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.focus-hovered-559f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.focus-hovered-559f label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus-hovered-559f 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);
}

.focus-hovered-559f input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.focus-hovered-559f input::placeholder {
    color: var(--text-muted);
}

.static-3be2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tertiary-e1e1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.tertiary-e1e1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.bottom_e31b {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.bottom_e31b:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.message-top-ac02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-top-ac02 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_3ce5 {
    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);
}

.content_3ce5 .section_warm_e97d {
    font-size: 1.25rem;
}

.content_3ce5 .alert-2873 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.carousel-ba92 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_0ff6 {
    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);
}

.section_0ff6 .silver_2c5a {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_0ff6 .list-bottom-a3ae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section_0ff6 .hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-tiny-209c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-warm-f44c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled-warm-f44c .current-455b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled-warm-f44c .search-yellow-ae15 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-basic-cab0 {
    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);
}

.table_149f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table_149f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone_712a {
    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);
}

.stone_712a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark-354d {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.backdrop-7a63 {
    flex: 1;
}

.column-0d45 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chip-3bda {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info_in_6610 {
    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);
}

.info_in_6610:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.grid-dynamic-c37e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-dynamic-c37e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_cool_0820 {
    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);
}

.preview_cool_0820:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_60cb {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail_467c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stone-b729 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.info-19e1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.copper_ef91 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_c84d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark-9952 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark-9952 .dynamic_8339 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark-9952 .cool-12eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.right_4cbc {
    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);
}

.current_baf9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_warm_44fa {
    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);
}

.highlight_warm_44fa .silver_2c5a {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_warm_44fa .list-bottom-a3ae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.highlight_warm_44fa .hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-over-192d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-over-192d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_9649 {
    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);
}

.pagination_9649:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.mini-2c15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini-2c15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow-87c2 {
    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);
}

.slow-87c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old_4ead {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-5306 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.image_hot_6731 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.black_c8a9 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.content_0528 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail_current_58eb {
    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);
}

.detail_current_58eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-78e6 {
    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);
}

.button-061f {
    flex: 1;
}

.pagination-purple-3e3d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.row_0ee5 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.layout_aa60 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_b8e5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-57c8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-57c8 .current-455b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link-57c8 .search-yellow-ae15 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-9068 {
    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);
}

.bright_0e56 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright_0e56 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.caption_dark_6a6f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_dark_6a6f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-7438 {
    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);
}

.hard-7438:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top_5c99 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_first_8f8e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description-19f2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.last-cbbb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.orange_02c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture-3218 {
    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);
}

.progress-complex-e4c7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.prev-7965 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-fc61 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_baf9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_warm_44fa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.highlight_warm_44fa .list-bottom-a3ae {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight_warm_44fa .hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_c727 {
    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);
}

.dropdown-f4a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dropdown-f4a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-f4a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_5819 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge_5819:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pressed_82d4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip-f13b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_a051 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.north-db21 {
    padding: 1.5rem;
}

.grid-95a9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-0485 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-0485 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;
}

.form-0485 li:last-child {
    border-bottom: none;
}

.form-0485 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.video_8778 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_8778 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-ae56 {
    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);
}

.video-ae56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_selected_78b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_old_2d05 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay-huge-5a11 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.paragraph-5c7c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.aside-17d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-new-92f3 {
    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);
}

.video_short_6837 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-hard-d587 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background_tall_495a {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_50ed {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.next_fa8d {
    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);
}

.title-7098 {
    text-align: center;
}

.new-777d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-a975 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-huge-8122 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface_cool_93a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_cool_93a5 .list-bottom-a3ae {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.surface_cool_93a5 .hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up-cc74 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .up-cc74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .up-cc74 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-out-580b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer-out-580b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-medium-79e0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.breadcrumb-motion-f827 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.list-bottom-a3ae {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.input_hovered_4c08 {
    padding: 1.5rem;
}

.hard-9b68 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.primary-1c1c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-1c1c 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;
}

.primary-1c1c li:last-child {
    border-bottom: none;
}

.primary-1c1c li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.info_outer_5908 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.image_0de1 {
    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);
}

.image_0de1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-lite-8288 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-upper-751f {
    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);
}

.sidebar-light-ca0b {
    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;
}

.fluid_5abd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter_3c95 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-ba0e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced_d862 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper_83a2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.red_782e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-5fad {
    display: flex;
    gap: 1rem;
}

.modal-5fad .progress-new-070e {
    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;
}

.new_61b9 {
    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);
}

.tertiary-pressed-19e6 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.alert-8455 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-8455 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;
}

.alert-8455 li:last-child {
    border-bottom: none;
}

.alert-8455 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.popup_fbc0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup_fbc0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup_fbc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_373b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge_373b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_small_c080 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focused_86f4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dynamic_8339 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.overlay-glass-75a5 {
    font-size: 1rem;
}

.pink_c3f3 {
    padding: 1.5rem;
}

.cool-12eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.text-simple-1d26 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.text-simple-1d26 .title-7098 {
    text-align: center;
}

.text-simple-1d26 .accordion-a975 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.text-simple-1d26 .avatar_c036 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.item_gas_97a0 {
    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);
}

.item_gas_97a0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.secondary-864b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-864b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_cd6f {
    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);
}

.advanced_cd6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_steel_483c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section-pink-6199 {
    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);
}

.grid_large_57b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_hot_6fce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel_4fae {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_b806 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.slow-55c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge_146f {
    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);
}

.widget-74fc {
    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;
}

.widget-74fc.wrapper_steel_4075 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.widget-74fc.shade-green-8f5a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.widget-74fc.lite_e3f4 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.widget-74fc.alert-upper-9aed {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.widget-74fc.hero_ddd8 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.plasma-9414 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark_139a {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-b028 {
    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);
}

.modal_18a1 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.form-tiny-209c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-tiny-209c 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;
}

.form-tiny-209c li:last-child {
    border-bottom: none;
}

.form-tiny-209c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.dim-7a9b {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dim-7a9b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dim-7a9b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_warm_1dcc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.link_warm_1dcc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_warm_1dcc.pro-b020 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .link_warm_1dcc.pro-b020 {
        grid-column: span 3;
    }
}

.link-3c2b {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.link_warm_1dcc.pro-b020 .link-3c2b {
    background: rgba(6, 182, 212, 0.1);
}

.chip_in_6637 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.panel-0592 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.link_warm_1dcc.pro-b020 .panel-0592 {
    color: var(--info-color);
}

.modal_basic_7050 {
    padding: 1.5rem;
    text-align: center;
}

.orange_3f17 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.link_warm_1dcc.pro-b020 .orange_3f17 {
    color: var(--info-color);
}

.paragraph_70ab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.summary-stone-1857 {
    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 */
.liquid-7cb9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid-7cb9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-7bdd {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.west-7bdd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight-pro-93f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_0ff6 {
    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);
}

.section_warm_e97d {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-2f8e {
    flex: 1;
}

.video-gas-0e5a {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider_db40 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-e504 {
    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);
}

.section_68d1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.first_166a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar_orange_4a26 {
    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);
}

.filter_basic_9819 {
  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);
}

.filter_basic_9819 .title-7098 {
    text-align: center;
}

.filter_basic_9819 .new-777d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.filter_basic_9819 .accordion-a975 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider-white-7e56 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft-4563 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-hard-4a08 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_613e {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_tiny_3ccb {
    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);
}

.tooltip_a4d1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-top-cf80 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_dynamic_150e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .main_dynamic_150e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main_dynamic_150e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_ad8d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.overlay_ad8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge-62b2 {
    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);
}

.panel-394c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hot-3968 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.panel_pink_849c {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel_pink_849c.main_70cf {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.panel_pink_849c.button_258e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.panel_pink_849c.next-f38f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.middle_f353 {
    padding: 1.5rem;
    text-align: center;
}

.description-in-4c68 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accent_3b97 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accent_3b97 .soft_35de {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.hidden-solid-a122 {
    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);
}

.hidden-solid-a122:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dropdown-gas-0c4d {
  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);
}

.notice-thick-7440 {
    text-align: center;
}

.notice-thick-7440 .new-777d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.notice-thick-7440 .accordion-a975 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.surface-adbc { text-align: center; }
.over_d4d4 { text-align: left; }
.left_5678 { text-align: right; }

.column-medium-d87e { margin-bottom: 0; }
.over-a126 { margin-bottom: 0.5rem; }
.focus_first_d8d0 { margin-bottom: 1rem; }
.gradient-84c2 { margin-bottom: 1.5rem; }
.pattern-ec68 { margin-bottom: 2rem; }

.popup-f9cd { margin-top: 0; }
.cold_ddda { margin-top: 0.5rem; }
.icon_192e { margin-top: 1rem; }
.focus-pink-2014 { margin-top: 1.5rem; }
.current-cff2 { margin-top: 2rem; }

.fn-hidden-01c7 { display: none; }
.fn-visible-01c7 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .mini-292f {
        padding: 6rem 0 3rem;
    }
    
    .in-df26 {
        text-align: center;
    }
    
    .card-top-bc22 {
        text-align: center;
    }
    
    .component-west-3699 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .grid_8410,
    .section-brown-6c2c,
    .aside_22c8,
    .avatar-green-c3eb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .mini-292f {
        background: none;
    }
}

/* Providers Section */
.pagination_72eb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-ce1e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-ce1e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-ce1e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_1369 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.full_1369:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-fast-964f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.left_b870 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.module_outer_5f45 {
    list-style: none;
    padding: 0;
}

.module_outer_5f45 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.module_outer_5f45 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.action_b3ff {
    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);
}

.action_b3ff p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.accent_f433 {
    padding: var(--section-padding);
}

.hidden_0337 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_0337 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_f4ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header_f4ee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.banner-brown-7a5a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.liquid-2fdd {
    display: flex;
    flex-direction: column;
}

.surface-fixed-8d8b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.current_bede {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.focus_top_20fe {
    color: var(--accent-color);
}

.button_5025 {
    font-size: 1.25rem;
}

.hidden-black-1204 {
    margin-bottom: 1rem;
}

.hidden-black-1204 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.lite-4a3a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.avatar_down_76a0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.title-7098 {
    text-align: center;
}

.new-777d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-a975 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.brown-d50e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-76f8 {
    margin: 2rem 0;
}

.item-6502 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.item-6502 .silver_2c5a {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-4bf1 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.accent_steel_13c7 {
    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;
}

.accent_steel_13c7:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown_white_85f3 {
    font-size: 2rem;
}

.badge-ab17 {
    display: flex;
    flex-direction: column;
}

.backdrop-current-d585 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.blue_df62 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.glass-e39f {
    padding: var(--section-padding);
}

.dropdown-bronze-fa70 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown-bronze-fa70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-bronze-fa70 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_large_e8eb {
    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);
}

.aside_large_e8eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_large_e8eb .new-777d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.aside_large_e8eb .accordion-a975 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.aside_large_e8eb .text_fast_f861 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.glass-adb0 {
    margin-top: 4rem;
}

.huge_6cff {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.item_white_ed08 {
    overflow-x: auto;
}

.active_7e2b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.active_7e2b thead {
    background: var(--accent-color);
}

.active_7e2b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.active_7e2b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.active_7e2b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.active_7e2b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.east_7f4e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_da69 {
    max-width: 900px;
    margin: 0 auto;
}

.fresh_0a9e {
    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_0a9e:hover {
    border-color: var(--accent-color);
}

.label_759c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.label_759c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.title_423f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.fresh_0a9e.fn-active-01c7 .title_423f {
    transform: rotate(45deg);
}

.down-b7a4 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.fresh_0a9e.fn-active-01c7 .down-b7a4 {
    max-height: 1000px;
}

.down-b7a4 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.summary-dim-2dbe {
    padding: var(--section-padding);
}

.panel_1568 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.hot_533b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wood_69d5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wood_69d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay_pink_5ba8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_ff23 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.right_dd1c {
    font-size: 2rem;
}

.nav-basic-5938 {
    color: var(--text-white);
    margin: 0;
}

.outer_92ca {
    list-style: none;
    padding: 0;
}

.outer_92ca li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outer_92ca li:last-child {
    border-bottom: none;
}

.form_e842 {
    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);
}

.form_e842 p {
    color: var(--success-color);
    margin: 0;
}

.copper_405f {
    margin-top: 3rem;
}

.tertiary-pressed-19e6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.carousel_right_0154 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .carousel_right_0154 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-yellow-82d6 {
    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);
}

.card_out_a2a9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active-yellow-82d6 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.glass-1620 {
    padding: var(--section-padding);
}

.progress-action-96d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-action-96d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_bfed {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last_bfed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.column_dynamic_d3d9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.white_4021 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.frame-steel-f876 {
    flex: 1;
}

.detail_67ad {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.overlay-048c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.popup_0165 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-dafc {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-dafc:last-child {
    border-bottom: none;
}

/* Comparison Section */
.texture-inner-45ba {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.popup-5e34 {
    padding: var(--section-padding);
}

.mini-3f8a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.detail_glass_4400 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_glass_4400 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-complex-4520 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_tiny_188d, .complex_e2b6, .form-dynamic-ea61 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.form-dynamic-ea61 {
    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 */
.solid_ce14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_dynamic_f803 {
    margin: 2rem 0;
}

.input-e71a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-c683 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hard_0ae9 {
    list-style: none;
    padding: 0;
}

.hard_0ae9 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;
}

.hard_0ae9 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hard_0ae9 li:last-child {
    border-bottom: none;
}

.shade-5fdb {
    text-align: center;
    margin-top: 2rem;
}

.description-c713 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.dropdown-951b {
    padding: var(--section-padding);
}

.search-cool-92ce {
    margin: 2rem 0;
}

.tabs-hovered-3ee4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    gap: 1.5rem;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .tabs-hovered-3ee4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tabs-hovered-3ee4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dynamic-dc4d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.input-908d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.article-912b {
    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;
}

.short_2689 {
    flex: 1;
}

.border-f342 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.shadow-static-1938 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lite-79aa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.orange-e818 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .orange-e818 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.heading_cc0f {
    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);
}

.heading_cc0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading_cc0f .new-777d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.heading_cc0f .accordion-a975 {
    color: var(--text-gray);
    font-size: 1rem;
}

.large_3f78 {
    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);
}

.dropdown_2be6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dropdown_2be6 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.card-prev-f9e4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .card-prev-f9e4 {
        grid-template-columns: 1fr 1fr;
    }
}

.secondary_3573 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast-06d6 {
    margin-bottom: 1.5rem;
}

.fast-06d6 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fast-06d6 input,
.fast-06d6 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;
}

.fast-06d6 input:focus,
.fast-06d6 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.wide_6afc {
    width: 100%;
    margin-top: 1rem;
}

.silver_7cb0 {
    display: flex;
    align-items: center;
}

.dim_c7c6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.summary-db24 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.media-east-7678 {
    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;
}

.new-2bc1 {
    color: var(--text-gray);
}

.layout_clean_aa0a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gradient-9cea {
    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);
}

.gradient-9cea p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.texture-west-a9eb {
    margin-top: 3rem;
}

.smooth_d218 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.west_c5fb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold_b370 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.feature-bronze-362c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-bronze-362c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.thumbnail-inner-9064 {
    padding: var(--section-padding);
}

.smooth-6ec8 {
    margin: 2rem 0;
}

.highlight-selected-8831 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.center_3c8f {
    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;
}

.center_3c8f:hover, .center_3c8f.fn-active-01c7 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dim_c1ec {
    display: none;
}

.dim_c1ec.fn-active-01c7 {
    display: block;
}

.hot_5bcd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-d48f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.left-7f57 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.left-7f57 ul {
    list-style: none;
    padding: 0;
}

.left-7f57 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.left-7f57 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tertiary-acda {
    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 */
.easy_887b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-bba1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_over_1886 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.small-e1b8 {
    color: var(--accent-color);
    margin: 0;
}

.header_advanced_23f0 {
    display: flex;
    gap: 1.5rem;
}

.solid-6790 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.copper-d7a3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.bright_c048 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.bright_c048.gradient_17a2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.bright_c048.smooth_5974 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.bright_c048.progress_9243 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.accent_north_079a {
    margin-top: 2rem;
}

.top_56c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.last_e746 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .last_e746 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-b073 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.easy-5944 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.focus_advanced_1e2e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hidden-3d24 {
    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 */
.picture-motion-c3f3 {
    padding: var(--section-padding);
}

.column_b428 {
    margin: 2rem 0;
}

.primary-d045 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.thick-5211 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.pattern_thick_2da7 {
    list-style: none;
    padding: 0;
}

.pattern_thick_2da7 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;
}

.pattern_thick_2da7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.pattern_thick_2da7 li:last-child {
    border-bottom: none;
}

.mini-e275 {
    margin: 2rem 0;
}

.component_495c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stone_3b8d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stone_3b8d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.backdrop-fluid-dc95 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_55c3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb_pressed_6688 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.summary_left_1cc8 {
    margin-top: 2rem;
}

.column-0d45 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fixed-6d0f {
    list-style: none;
    padding: 0;
}

.sort-d797 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.sort-d797 a {
    color: var(--accent-color);
    text-decoration: none;
}

.sort-d797 a:hover {
    text-decoration: underline;
}

.banner-hot-de22 {
    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 */
.disabled-narrow-d513 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_outer_7561 {
    margin: 2rem 0;
}

.list_f6c2 {
    margin-bottom: 3rem;
}

.list_f6c2 .cold-c683 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.title-simple-94ea {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stone_44fe {
    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);
}

.stone_44fe:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.mask-f605 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mask-f605 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-4ca2 {
    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 */
.component-center-5ead {
    padding: var(--section-padding);
}

.menu-f01b {
    margin: 2rem 0;
}

.easy_a90d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thumbnail-9773 {
    overflow-x: auto;
    margin: 2rem 0;
}

.link_f79e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.fresh-a8fa {
    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;
}

.sort-9dfe {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.widget-e838 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .widget-e838 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-2a05 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-2a05 .silver_2c5a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-2a05 .list-bottom-a3ae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected_9843 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.pressed_46f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-0464 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-0464 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_a284 {
    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;
}

.wood_a284:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gallery-huge-a0df {
    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);
}

.frame_gas_7562 {
    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;
}

.tooltip_current_227f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.new-97fd {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.grid_c893 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.out-f211 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern_lite_93ea {
    color: var(--text-white);
    font-weight: 600;
}

.warm-34d6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sort-d9e3 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-d9e3 .progress-new-070e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tabs-middle-9add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs-middle-9add {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_58b2 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.preview_58b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview_58b2 .new-777d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview_58b2 .accordion-a975 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tag_d3df {
    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);
}

.secondary-new-7506 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.secondary-new-7506 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.orange_02c2 {
    margin: 2rem 0;
}

.picture-3218 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.picture-3218:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.progress-complex-e4c7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.component-brown-ab4c {
    flex: 1;
}

.prev-7965 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-fc61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.current_baf9 {
    margin: 2rem 0;
}

.highlight_warm_44fa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_warm_44fa .list-bottom-a3ae {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.highlight_warm_44fa .hard-9b68 {
    color: var(--text-gray);
    margin: 0;
}

.hard_c727 {
    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);
}

.hard_c727 .lite-cbe2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.selected_9843 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.menu-78e6 {
    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;
}

.button-061f {
    flex: 1;
}

.row_0ee5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.layout_aa60 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.sidebar-light-ca0b {
    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;
}

.component-595a {
    flex: 1;
}

.fluid_5abd {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.filter_3c95 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.wrapper_83a2 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.red_782e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.modal-5fad {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-5fad .progress-new-070e {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.new_61b9 {
    margin-top: 2rem;
}

.new_61b9 .tertiary-pressed-19e6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.action-f3d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_fa8d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .next_fa8d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next_fa8d .title-7098 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-huge-8122 {
    margin: 2rem 0;
}

.surface_cool_93a5 {
    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 */
.hidden-1ea8 {
    padding: var(--section-padding);
}

.input_hovered_4c08 {
    margin-top: 1rem;
}

.primary-1c1c {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.primary-1c1c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.primary-1c1c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.easy-2a02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-hovered-594b {
    margin: 2rem 0;
}

.accent-ef97 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.fast-c13c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.alert_new_5812 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.dropdown-west-3fac {
    margin: 2rem 0;
}

.hidden-9abb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.hidden-9abb .cold-c683 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white_850e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white_850e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stale_7698 {
    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);
}

.under_886c {
    color: var(--text-white);
    font-weight: 600;
}

.caption_c464 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.pro_6e21 {
    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);
}

.pro_6e21 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.gradient-609e {
    padding: var(--section-padding);
}

.preview_b51d {
    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_b51d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.section_36fb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section_36fb .card_out_a2a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_36fb .backdrop-3d59 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.bright-ec73 {
    flex: 1;
}

.gas_11c3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.narrow_969d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.narrow_969d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.narrow_969d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.detail_cold_be4d {
    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);
}

.detail_cold_be4d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_cold_be4d strong {
    color: var(--warning-color);
}

/* Slots Section */
.panel-under-cfa8 {
    padding: var(--section-padding);
}

.copper_ef91 {
    margin: 2rem 0;
}

/* Table Games Section */
.bright_d848 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_c84d {
    margin: 2rem 0;
}

.dark-9952 {
    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);
}

.dark-9952:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dark-9952 .dynamic_8339 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dark-9952 .cool-12eb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.right_4cbc {
    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);
}

.right_4cbc .lite-cbe2 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.white_9742 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-wide-bfc6 {
    margin: 2rem 0;
}

.bright_2885 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.basic_5944 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus-d857 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.clean-d7a2 {
    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);
}

.clean-d7a2:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.clean-d7a2.fn-active-01c7 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_bcd6 {
    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);
}

.warm_2d9a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm_2d9a strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.dynamic_914d {
    padding: var(--section-padding);
}

.button-pink-b4a8 {
    margin: 2rem 0;
}

.icon_tiny_a34e {
    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);
}

.icon_tiny_a34e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .icon_tiny_a34e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.top-ba56 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.panel_ffa4 {
    flex: 1;
}

.progress_short_61bf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.preview-copper-ea74 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.preview_center_5187 {
    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;
}

.video_8777 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.south_0fad {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dropdown_yellow_d8d5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.disabled-f3ee {
    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;
}

.disabled-f3ee:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.liquid_81f8 {
    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);
}

.text-left-90b7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.text-left-90b7 strong {
    color: var(--accent-color);
}

/* New Games Section */
.column-blue-6700 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_large_1c7b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown_large_1c7b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown_large_1c7b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_stone_4f2a {
    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;
}

.card_stone_4f2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tabs-rough-4028 {
    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;
}

.cool-d848 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.card-blue-0b8b {
    font-size: 2rem;
}

.sidebar_e201 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.shade_next_c5d1 {
    flex: 1;
}

.thick-8057 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.rough-fa51 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.menu-soft-e05e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus_new_f8c4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.list_b4e5 {
    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;
}

.filter-0303 {
    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;
}

.filter-0303:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hard_0217 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-392c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black-8395 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .black-8395 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_8688 {
    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);
}

.carousel-cfb8 {
    color: var(--text-white);
    font-weight: 600;
}

.avatar-61c6 {
    color: var(--accent-color);
    font-weight: 600;
}

.list_c977 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.list_c977 strong {
    color: var(--accent-color);
}

/* Security Section */
.outline_wide_b91a {
    padding: var(--section-padding);
}

/* Benefits Section */
.element_fresh_e93b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.active-2d1b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.easy_ee75 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-active-cc6a {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.selected-d35b {
    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-d35b {
        flex-direction: column;
        gap: 1rem;
    }
}

.selected-d35b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.selected-d35b .sidebar-light-ca0b {
    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-d35b .component-595a {
    flex: 1;
}

.selected-d35b .fluid_5abd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.selected-d35b .filter_3c95 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.in_ff58 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in_ff58 .video-gas-0e5a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in_ff58 .carousel-ba92 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in_ff58 .carousel-ba92 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.in_ff58 .carousel-ba92 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.filter-e84d {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.surface-right-1a0c {
    padding: var(--section-padding);
}

.progress_94f2 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .progress_94f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_tall_87be {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notification_tall_87be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.notification_tall_87be .small_ae62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_tall_87be .bright-938a {
    flex: 1;
}

.notification_tall_87be .current-455b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification_tall_87be .tertiary-1d9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.smooth-f1b8 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth-f1b8 .avatar-9237 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth-f1b8 .warm_7892 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.smooth-f1b8 .warm_7892 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);
}

.smooth-f1b8 .warm_7892 li:last-child {
    border-bottom: none;
}

.smooth-f1b8 .warm_7892 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;
}

.smooth-f1b8 .warm_7892 li strong {
    color: var(--text-white);
}

.hero_6c42 {
    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);
}

.hero_6c42 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hero_6c42 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.preview_yellow_de52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_d39c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .media_d39c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu_orange_8475 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_orange_8475:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider_6a9a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new_81c0 {
    font-size: 2rem;
}

.aside_88b6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.clean-02a9 {
    flex: 1;
}

.hot-7d80 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-7d80 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hot-7d80 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.highlight_pressed_e453 {
    margin-top: 3rem;
}

.primary-d045 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.thick-5211 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_thick_2da7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_thick_2da7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pattern_thick_2da7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pattern_thick_2da7 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.hover-plasma-8a9d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_6e99 {
    margin: 2rem 0;
}

.backdrop-40e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.backdrop-40e3 .cold-c683 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first-1eb4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .first-1eb4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.label-c648 {
    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);
}

.label-c648:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.out-c1b2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-wide-d81b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.container-540b {
    padding: var(--section-padding);
}

.warm_1cf4 {
    margin: 2rem 0;
}

.gradient_hard_b5d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .gradient_hard_b5d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_hard_b5d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_e931 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.secondary_e931:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.banner_tall_a957 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item_brown_f564 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.footer-wide-5661 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-wide-5661.surface-89f9 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.icon-dce0 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.grid-full-7d1a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.middle-5ee5 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_7e77 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary-medium-efc0 {
    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);
}

.primary-medium-efc0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary-medium-efc0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.surface-29db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-dfe4 {
    margin: 2rem 0;
}

.gold_37f2 {
    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) {
    .gold_37f2 {
        flex-direction: column;
        gap: 1rem;
    }
}

.gold_37f2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gold_37f2::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);
}

.orange_5214 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.slow_ace8 {
    flex: 1;
}

.progress_c358 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card_pink_d1a7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card_pink_d1a7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-orange-7473 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-medium-0581 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-387a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .primary-387a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-f3a7 {
    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);
}

.lower_7ed8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.border_d8ae {
    flex: 1;
}

.tertiary-43bb {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tabs_dim_1f87 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay-plasma-3fb1 {
    margin-top: 2rem;
    text-align: center;
}

.input_1e51 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input_1e51 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.secondary-864b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-864b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_cd6f {
    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);
}

.advanced_cd6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.advanced_cd6f .shadow_selected_78b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced_cd6f .thumbnail_old_2d05 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.advanced_cd6f .overlay-huge-5a11 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.advanced_cd6f .paragraph-5c7c {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.column-up-dc17 {
    padding: var(--section-padding);
}

.section-pink-6199 .icon-5d70 {
    flex: 1;
}

/* Promo Calendar Section */
.disabled-lite-23dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-8828 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-8828 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_9262 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-complex-873c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.center-c903 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focus_3bfb {
    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);
}

.modal-gas-a8d6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.aside_basic_9f73 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.active_west_ae0d {
    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);
}

.active_west_ae0d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_west_ae0d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.content_bronze_3692 {
    padding: var(--section-padding);
}

.widget_inner_9081 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget_inner_9081 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter-narrow-e2eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-48f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dim_2cd8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dim_2cd8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.main_steel_70b4 {
    margin-top: 3rem;
}

.main_steel_70b4 .primary-d045 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.main_steel_70b4 .thick-5211 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main_steel_70b4 .pattern_thick_2da7 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.main_steel_70b4 .pattern_thick_2da7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.main_steel_70b4 .pattern_thick_2da7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.main_steel_70b4 .pattern_thick_2da7 li strong {
    color: var(--warning-color);
}

.description-2ac2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description-2ac2 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.mask-thick-a3c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_medium_8bd9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_medium_8bd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_4462 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_4462 .cold-c683 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hard_3e6c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.backdrop_stale_0399 {
    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);
}

.backdrop_stale_0399:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.medium_d702 {
    font-size: 2rem;
    flex-shrink: 0;
}

.east_c06f {
    flex: 1;
}

.grid_4fe0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.content-silver-56b1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.narrow_53bc {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.outline_thick_ff7b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.backdrop-0dbe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .backdrop-0dbe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-wood-c90e {
    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);
}

.search-wood-c90e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input_dim_68bb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.banner_7768 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dropdown_2be6 {
    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);
}

.content_ed55 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.content_ed55 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.smooth-0aa1 { 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; }
.thumbnail_south_ae52, .input_0393 { max-width:100%; height:auto; }

.component-liquid-84bb, .info_full_aea8, .description-basic-6daa { white-space:normal; }

.in-df26,
.card-top-bc22,
.liquid-7cb9,
.secondary-864b,
.current_baf9,
.main_dynamic_150e {
  flex-wrap:wrap;
}

[class*="grid"],
.backdrop-0dbe,
.gradient_hard_b5d3,
.dropdown-3248 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.mini-292f img,
.card-top-bc22 img,
.popup-out-5efb img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.fixed-9935, .nav_3f1c,
.paper-f22a, .short-46ee {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.item_white_ed08 { width:100%; overflow-x:auto; }
.item_white_ed08 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.image-ce1e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .image-ce1e {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.full_1369 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.dropdown-bronze-fa70,
.layout_cb11,
.widget_right_924f,
.shadow_tiny_36dc,
.orange-e818,
.backdrop-0dbe,
.gradient_hard_b5d3,
.dropdown-3248,
.dropdown-gas-0c4d,
.button-pink-b4a8,
.image-ce1e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .dropdown-bronze-fa70,
  .layout_cb11,
  .widget_right_924f,
  .shadow_tiny_36dc,
  .orange-e818,
  .backdrop-0dbe,
  .gradient_hard_b5d3,
  .dropdown-3248,
  .dropdown-gas-0c4d,
  .button-pink-b4a8,
  .image-ce1e {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.aside_large_e8eb,
.heading_cc0f,
.search-wood-c90e,
.description-cold-6f32,
.secondary_e931,
.notice-thick-7440,
.icon_tiny_a34e,
.full_1369 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.article_tall_5ac8,
.badge-cold-571d,
.heading-fixed-cf83 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.article_tall_5ac8 > *,
.badge-cold-571d > *,
.heading-fixed-cf83 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 88a4 */
.phantom-card-c4 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
