/* {$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;
}

.content-active-d820 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.smooth-0896 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .smooth-0896 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .smooth-0896 {
        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 */
.warm_5339 {
    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);
}

.middle-1fc8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .middle-1fc8 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .bright-ad25 {
        grid-column: 1;
    }
    
    .next-4abd {
        grid-column: 2;
    }
    
    .paragraph_outer_6dfa {
        grid-column: 3;
    }
}

.bright-ad25 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.bright-ad25:hover img {
    transform: scale(1.05);
}

/* Navigation */
.content-630c {
    display: none;
}

@media (min-width: 1024px) {
    .content-630c {
        display: block;
    }
}

/* Grouped Navigation */
.popup-50c0 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.item-b878 {
    position: relative;
}

.element_6be6 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.item-b878 .basic-e698 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.basic-e698 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.tertiary-bdfe {
    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;
}

.tertiary-bdfe:hover,
.tertiary-bdfe.fn-active-cc94 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.plasma_da26 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .plasma_da26 {
        display: flex;
    }
}

/* Mobile Register Button */
.next-4abd {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .next-4abd {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.layout_stale_6fe4 {
    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;
}

.layout_stale_6fe4::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.paragraph_outer_6dfa {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .paragraph_outer_6dfa {
        display: none;
    }
}

.paragraph_outer_6dfa span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.paragraph_outer_6dfa.fn-active-cc94 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.paragraph_outer_6dfa.fn-active-cc94 span:nth-child(2) {
    opacity: 0;
}

.paragraph_outer_6dfa.fn-active-cc94 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.stale_f0f0 {
    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;
}

.stale_f0f0.fn-active-cc94 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.light-98d8 {
    overflow: hidden;
}

.up_a79a {
    list-style: none;
    padding: 0.75rem 0;
}

.paper-430b {
    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;
}

.paper-430b:hover,
.paper-430b.fn-active-cc94 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.paper-430b.element_51f8 {
    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;
}

.paper-430b.element_51f8::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 */
.primary_2973 {
    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;
}

.modal-pro-2754 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.modal-pro-2754:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.input-lite-df0f {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.input-lite-df0f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gallery-hovered-9de2 {
    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;
}

.gallery-hovered-9de2:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.secondary-steel-d6eb {
    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;
}

.caption-outer-e7a0 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.caption-outer-e7a0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.green-9607 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.green-9607:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.advanced-b774 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.advanced-b774: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);
}

.green-6899 {
    font-size: 1em;
    font-weight: 700;
}

.outline_tiny_f91a {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.accordion_plasma_9129 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.accordion_plasma_9129::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;
}

.info_in_f69b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .info_in_f69b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.light_d729 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.image_02c8 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hard_e4a6 {
    margin-bottom: 2rem;
}

.element_plasma_f83d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .element_plasma_f83d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_prev_a50a {
    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);
}

.article-lite-2d66 {
    font-size: 1.5rem;
}

.dropdown_36d8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.link-059b {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shadow-down-96ce {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.shadow-down-96ce:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.thumbnail-9d2f {
    text-align: center;
    margin-bottom: 3rem;
}

.wrapper-tall-e7f7 {
    margin-bottom: 1rem;
}

.photo_short_3aae {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-6ca5 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-6ca5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .content-6ca5.top_4ccf {
        direction: rtl;
    }
    
    .content-6ca5.top_4ccf > * {
        direction: ltr;
    }
}

.upper_ed90 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.upper_ed90:first-child {
    margin-top: 0;
}

.brown_9a33 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.breadcrumb-copper-ae2d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.breadcrumb-copper-ae2d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.glass_8054 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_8054 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic_1a9e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_cf78 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.static_edd6 {
    list-style: none;
}

.static_edd6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.static_edd6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.inner_04e7 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.layout-4ba9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.grid_f1ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-static-4251 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.layout-9090 {
    margin: 2rem 0;
}

.chip_cold_1ae3 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.label_ab82 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.liquid_56be {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.header-1cec {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.badge-8235 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-8235 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-2de0 {
    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);
}

.summary-2de0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.footer_fluid_65c1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gallery-615c {
    font-size: 1.5rem;
}

.dim_80f3 {
    color: var(--accent-color);
    margin: 0;
}

.active_b686 {
    list-style: none;
}

.active_b686 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.active_b686 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.silver_6f6a {
    margin: 2rem 0;
}

.highlight_a802 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.article_d857 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .article_d857 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-soft-cf03 {
    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);
}

.frame_light_f1dd {
    font-size: 1.25rem;
}

.component_hard_5315 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.container_ab31,
.article_inner_63dd {
    text-align: center;
    margin: 2rem 0;
}

.lite_d5a4,
.overlay_lower_2a9c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.slider-ffaf {
    margin: 2rem 0;
    text-align: center;
}

.outline_c972 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outline_c972::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;
}

.border-c50f {
    position: relative;
    z-index: 1;
}

.over-3499 {
    margin-bottom: 1rem;
}

.item_complex_49cd {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alert-0be0 {
    margin-bottom: 3rem;
}

.pro_2748 {
    margin-top: 3rem;
}

.under-0c16 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .under-0c16 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.under-0c16 .form_prev_a50a {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip_0777 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slow-3fed {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.notification-c709 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.red_6014 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .red_6014 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .red_6014 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.blue_3940 {
    margin-bottom: 1rem;
}

.focus_89d7 img {
    margin-bottom: 1rem;
}

.highlight_3256 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-8f18 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.blue-b25c {
    list-style: none;
}

.blue-b25c li {
    margin-bottom: 0.5rem;
}

.blue-b25c a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blue-b25c a:hover {
    color: var(--accent-color);
}

.gold_be7b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.thumbnail-last-1487 {
    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);
}

.thumbnail-last-1487:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.steel_7009 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.steel_7009 p {
    margin-bottom: 0.25rem;
}

.grid_d41b {
    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) {
    .grid_d41b {
        flex-direction: row;
    }
}

.badge_6445 {
    text-align: center;
}

@media (min-width: 768px) {
    .badge_6445 {
        text-align: left;
    }
}

.badge_6445 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny-2bee {
    font-size: 0.75rem !important;
}

.component-7d7c {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.short-5b70 {
    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);
    }
}

.paper_953b {
    animation: fadeInUp 0.6s ease-out;
}

.border_static_8df0 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.gradient_8aaa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_8aaa {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.active-5d79 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-5d79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_6403 {
    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);
}

.pressed_6403 .grid_f1ca {
    font-size: 1.25rem;
}

.pressed_6403 .in-446b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.right-d5a1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right-d5a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-61f5 {
    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);
}

.avatar-61f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo-5bad {
    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);
}

.paper-91a4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table_lite_0ec1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_88a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_de9e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article_de9e .sidebar-static-4251 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_de9e .picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_2596 {
    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);
}

.frame-first-09f3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.frame-first-09f3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.frame-first-09f3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.outline_be1e {
    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);
}

.form-solid-8dcd {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.avatar_small_afa2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.avatar_small_afa2 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar_small_afa2 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);
}

.avatar_small_afa2 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.avatar_small_afa2 input::placeholder {
    color: var(--text-muted);
}

.video_selected_5e9b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.caption-01b8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.caption-01b8 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.hover-hot-689f {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.hover-hot-689f:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.article_d857 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_d857 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-soft-cf03 {
    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);
}

.breadcrumb-soft-cf03 .frame_light_f1dd {
    font-size: 1.25rem;
}

.breadcrumb-soft-cf03 .component_hard_5315 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.disabled-a1f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_fd8f {
    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);
}

.old_fd8f .grid_f1ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.old_fd8f .sidebar-static-4251 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_fd8f .picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-plasma-3136 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-a5ac {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-a5ac .progress-fixed-fa90 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-a5ac .iron_bf9c {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft_621f {
    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);
}

.banner-4703 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-4703 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left-895c {
    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);
}

.left-895c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fluid-c107 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.image_7123 {
    flex: 1;
}

.focus-new-5b8b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lite-f7e3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content_clean_f466 {
    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);
}

.content_clean_f466:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.focus-a2db {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-a2db {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron_0f6a {
    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);
}

.iron_0f6a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard-4385 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-basic-27ac {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.down-d6da {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar-0b75 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dim_a866 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold-1eab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out-d6ac {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.out-d6ac .info-lite-b2f4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out-d6ac .tall_9063 {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner-9764 {
    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_7aac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-narrow-5ba0 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort-narrow-5ba0 .grid_f1ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-narrow-5ba0 .sidebar-static-4251 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-narrow-5ba0 .picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze_401c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_401c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light-4f80 {
    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);
}

.light-4f80:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.background-6746 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-6746 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_white_e8fb {
    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);
}

.button_white_e8fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-lite-7990 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_bbe0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label_ab82 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.box_6827 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.huge_691e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-2eaa {
    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);
}

.gas-2eaa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex-b233 {
    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);
}

.detail-complex-046b {
    flex: 1;
}

.under_4d72 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.image-6b83 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.grid-8f51 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-0e36 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_47f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_47f7 .progress-fixed-fa90 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion_47f7 .iron_bf9c {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_inner_63dd {
    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);
}

.modal_ac7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_ac7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.media_hard_12b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_hard_12b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_pressed_260d {
    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);
}

.logo_pressed_260d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list_703c {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_4e8f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.backdrop-middle-5f87 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dark_c8b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.backdrop-orange-94e2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid-dc83 {
    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);
}

.under_d0d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-0b53 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paper_3200 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_7aac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-narrow-5ba0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sort-narrow-5ba0 .sidebar-static-4251 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort-narrow-5ba0 .picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_6b34 {
    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);
}

.hero-hard-fabf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-hard-fabf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-hard-fabf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-60a0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hidden-60a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label_92e3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.badge_68f2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fluid-90ca {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.feature-over-80cd {
    padding: 1.5rem;
}

.status-ed8b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slow_eb68 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slow_eb68 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;
}

.slow_eb68 li:last-child {
    border-bottom: none;
}

.slow_eb68 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.info_yellow_7a5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_yellow_7a5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_outer_9332 {
    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);
}

.tabs_outer_9332:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro_596e {
    font-size: 2rem;
    flex-shrink: 0;
}

.prev_019b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pattern_pro_7c8a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.highlight_bright_4124 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_blue_d6af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-static-f922 {
    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);
}

.label-2df2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west-3a1c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_dirty_aa3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-396b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.short_2e3f {
    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);
}

.outline_red_8027 {
    text-align: center;
}

.shadow_wood_2e76 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge-stone-4aaf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item-pro-99a4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-tiny-1fac {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-tiny-1fac .sidebar-static-4251 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner-tiny-1fac .picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-a044 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .black-a044 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black-a044 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_9d6a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tall_9d6a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-e56f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-paper-0986 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar-static-4251 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.frame-warm-0d5f {
    padding: 1.5rem;
}

.picture-b24e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.inner-e3be {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-e3be 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;
}

.inner-e3be li:last-child {
    border-bottom: none;
}

.inner-e3be li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.mini_2c09 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.under-3f54 {
    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);
}

.under-3f54:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under_d9a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.huge_9a83 {
    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);
}

.logo-5bad {
    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;
}

.paper-91a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table_lite_0ec1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_d8f7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-957b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar-dim-f0c4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.element_large_73c8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.over_b525 {
    display: flex;
    gap: 1rem;
}

.over_b525 .backdrop_8cad {
    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;
}

.tooltip_static_3ab5 {
    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);
}

.stale_1123 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dirty_d933 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty_d933 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;
}

.dirty_d933 li:last-child {
    border-bottom: none;
}

.dirty_d933 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.gold_d2a4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold_d2a4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold_d2a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_steel_2aea {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid_steel_2aea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-green-3d08 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.prev-033c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-lite-b2f4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.current_52cb {
    font-size: 1rem;
}

.fixed-de2c {
    padding: 1.5rem;
}

.tall_9063 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.element-8e12 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.element-8e12 .outline_red_8027 {
    text-align: center;
}

.element-8e12 .badge-stone-4aaf {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.element-8e12 .gallery-476b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component_glass_c8de {
    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);
}

.component_glass_c8de:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.disabled_68c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_68c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_0876 {
    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);
}

.tooltip_0876:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-8bfb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_inner_debb {
    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);
}

.chip-north-9fa4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood-c0a5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-cool-aa6f {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-wood-d137 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.prev-2bad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_hard_04a1 {
    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);
}

.dirty-b545 {
    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;
}

.dirty-b545.outline-b2a9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.dirty-b545.first-0970 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.dirty-b545.primary-96dd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.dirty-b545.header_orange_4195 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.dirty-b545.card-a99d {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.cool_de8e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel_hard_af0c {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast-0153 {
    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);
}

.component-first-8aed {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hover-plasma-3136 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover-plasma-3136 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;
}

.hover-plasma-3136 li:last-child {
    border-bottom: none;
}

.hover-plasma-3136 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.modal_south_2d94 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_south_2d94 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal_south_2d94 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_0c50 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.inner_0c50:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner_0c50.block_smooth_0946 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .inner_0c50.block_smooth_0946 {
        grid-column: span 3;
    }
}

.component_46af {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.inner_0c50.block_smooth_0946 .component_46af {
    background: rgba(6, 182, 212, 0.1);
}

.accordion_691f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.description_9134 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.inner_0c50.block_smooth_0946 .description_9134 {
    color: var(--info-color);
}

.column-1236 {
    padding: 1.5rem;
    text-align: center;
}

.paragraph_fef2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.inner_0c50.block_smooth_0946 .paragraph_fef2 {
    color: var(--info-color);
}

.shadow_1f8a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.surface_prev_237d {
    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 */
.block-prev-d349 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .block-prev-d349 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_active_7b71 {
    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);
}

.detail_active_7b71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-b6da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_fd8f {
    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);
}

.frame_light_f1dd {
    font-size: 2rem;
    flex-shrink: 0;
}

.black-e1b9 {
    flex: 1;
}

.highlight_a802 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.full-9835 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_0563 {
    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);
}

.pro_d1d9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.paragraph-light-065d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.short-5b70 {
    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);
}

.gas-8d60 {
  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);
}

.gas-8d60 .outline_red_8027 {
    text-align: center;
}

.gas-8d60 .shadow_wood_2e76 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.gas-8d60 .badge-stone-4aaf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.purple-cd9d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_pink_1060 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_2bd9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-bfce {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_hard_fec7 {
    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);
}

.secondary-glass-b234 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern_3427 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-311c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lower-311c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lower-311c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_ae92 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gold_ae92:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_14e3 {
    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);
}

.banner_f523 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card-new-03f6 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.component_gold_3f07 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component_gold_3f07.aside-fresh-e03a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.component_gold_3f07.blue-4cae {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.component_gold_3f07.gradient_8cc5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.hero_2e02 {
    padding: 1.5rem;
    text-align: center;
}

.logo_green_f1e6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.orange_2f10 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.orange_2f10 .article-inner-7fe9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.filter-c9fe {
    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);
}

.filter-c9fe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.text-light-b0fc {
  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);
}

.hidden_wide_f151 {
    text-align: center;
}

.hidden_wide_f151 .shadow_wood_2e76 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hidden_wide_f151 .badge-stone-4aaf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.content_5117 { text-align: center; }
.new_63dd { text-align: left; }
.picture_d5ed { text-align: right; }

.element-down-1c98 { margin-bottom: 0; }
.sort-new-a3e0 { margin-bottom: 0.5rem; }
.background-7d61 { margin-bottom: 1rem; }
.image-fe79 { margin-bottom: 1.5rem; }
.link-8b16 { margin-bottom: 2rem; }

.main-59ac { margin-top: 0; }
.shadow-3f9b { margin-top: 0.5rem; }
.heading_e7b8 { margin-top: 1rem; }
.full-70d1 { margin-top: 1.5rem; }
.warm-7fd9 { margin-top: 2rem; }

.fn-hidden-cc94 { display: none; }
.fn-visible-cc94 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .accordion_plasma_9129 {
        padding: 6rem 0 3rem;
    }
    
    .info_in_f69b {
        text-align: center;
    }
    
    .content-6ca5 {
        text-align: center;
    }
    
    .element_plasma_f83d {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .warm_5339,
    .stale_f0f0,
    .outline_c972,
    .notification-c709 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .accordion_plasma_9129 {
        background: none;
    }
}

/* Providers Section */
.hovered-e992 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-25a5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-25a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list-25a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-4107 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.search-4107:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid_f22d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.chip-e61e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.message_outer_79ba {
    list-style: none;
    padding: 0;
}

.message_outer_79ba li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.message_outer_79ba li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.overlay-2c7e {
    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);
}

.overlay-2c7e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.over_d675 {
    padding: var(--section-padding);
}

.secondary_dynamic_abcd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_dynamic_abcd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-3a0b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row-3a0b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pressed-5c84 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.video_cbbc {
    display: flex;
    flex-direction: column;
}

.pink-f0dc {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.easy_12fc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.motion_2322 {
    color: var(--accent-color);
}

.row-complex-54ca {
    font-size: 1.25rem;
}

.black-9390 {
    margin-bottom: 1rem;
}

.black-9390 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.thick_ebd1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.purple_acdc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.outline_red_8027 {
    text-align: center;
}

.shadow_wood_2e76 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge-stone-4aaf {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.notification-iron-b42e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-down-8e41 {
    margin: 2rem 0;
}

.box_full_ea5c {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.box_full_ea5c .grid_f1ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_gas_0e1e {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.east-4847 {
    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;
}

.east-4847:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button_down_6b94 {
    font-size: 2rem;
}

.black_62fc {
    display: flex;
    flex-direction: column;
}

.focus_4615 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.footer-7cbb {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.glass-c4e6 {
    padding: var(--section-padding);
}

.notice-b17d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notice-b17d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-b17d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-dd5c {
    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);
}

.image-dd5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image-dd5c .shadow_wood_2e76 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.image-dd5c .badge-stone-4aaf {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.image-dd5c .notification_9d0e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.right_73b1 {
    margin-top: 4rem;
}

.large-65b8 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.complex-1902 {
    overflow-x: auto;
}

.dirty_5a8d {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dirty_5a8d thead {
    background: var(--accent-color);
}

.dirty_5a8d th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.dirty_5a8d td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_5a8d tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.dirty_5a8d tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.accordion_ffef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_7189 {
    max-width: 900px;
    margin: 0 auto;
}

.clean-ecc3 {
    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);
}

.clean-ecc3:hover {
    border-color: var(--accent-color);
}

.up_60fb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.up_60fb h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hovered_9a29 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.clean-ecc3.fn-active-cc94 .hovered_9a29 {
    transform: rotate(45deg);
}

.footer-4011 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.clean-ecc3.fn-active-cc94 .footer-4011 {
    max-height: 1000px;
}

.footer-4011 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.focused-a799 {
    padding: var(--section-padding);
}

.frame-first-09f3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.component_6df4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-bottom-ac6e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-bottom-ac6e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.soft_a2fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-a1cb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message_fresh_fb19 {
    font-size: 2rem;
}

.action-9c43 {
    color: var(--text-white);
    margin: 0;
}

.tooltip_silver_02b9 {
    list-style: none;
    padding: 0;
}

.tooltip_silver_02b9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_silver_02b9 li:last-child {
    border-bottom: none;
}

.wrapper-outer-328c {
    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);
}

.wrapper-outer-328c p {
    color: var(--success-color);
    margin: 0;
}

.rough-e174 {
    margin-top: 3rem;
}

.stale_1123 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.steel_555e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .steel_555e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.west_f212 {
    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);
}

.secondary_0afa {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.west_f212 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.background_73d8 {
    padding: var(--section-padding);
}

.gradient-24c3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-24c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-15e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.out-15e6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.complex-bff9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hover_2879 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.title_basic_7e82 {
    flex: 1;
}

.table_white_9355 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.wrapper_prev_d899 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.status_53e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-soft-5e6b {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-soft-5e6b:last-child {
    border-bottom: none;
}

/* Comparison Section */
.thumbnail-first-43fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.small-b899 {
    padding: var(--section-padding);
}

.header-d838 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.avatar-84f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-84f0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-3c05 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-fluid-4d51, .component_complex_38f7, .gradient-lower-4c89 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.gradient-lower-4c89 {
    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 */
.background-f468 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_lite_962f {
    margin: 2rem 0;
}

.alert_top_4d0f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-wide-1b1e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight_0245 {
    list-style: none;
    padding: 0;
}

.highlight_0245 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;
}

.highlight_0245 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight_0245 li:last-child {
    border-bottom: none;
}

.hard_9668 {
    text-align: center;
    margin-top: 2rem;
}

.item-rough-b219 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hero_bd91 {
    padding: var(--section-padding);
}

.chip_hard_69f2 {
    margin: 2rem 0;
}

.text-4b23 {
    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) {
    .text-4b23 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.text-4b23:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-151e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.paper-3bba {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.in_1fa9 {
    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;
}

.accent_selected_0ed5 {
    flex: 1;
}

.element_81c4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.text-ab02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.link_23fe {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.filter-new-6ea5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .filter-new-6ea5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.panel_inner_3131 {
    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);
}

.panel_inner_3131:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.panel_inner_3131 .shadow_wood_2e76 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel_inner_3131 .badge-stone-4aaf {
    color: var(--text-gray);
    font-size: 1rem;
}

.next-45ce {
    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);
}

.narrow_303e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.narrow_303e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.badge_9ff4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .badge_9ff4 {
        grid-template-columns: 1fr 1fr;
    }
}

.hover_lite_1e09 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_bottom_a064 {
    margin-bottom: 1.5rem;
}

.summary_bottom_a064 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.summary_bottom_a064 input,
.summary_bottom_a064 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;
}

.summary_bottom_a064 input:focus,
.summary_bottom_a064 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.module-stone-6b2b {
    width: 100%;
    margin-top: 1rem;
}

.link_yellow_7d1b {
    display: flex;
    align-items: center;
}

.texture_6023 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.element_wood_1b4e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tooltip-06a0 {
    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;
}

.smooth_8ef4 {
    color: var(--text-gray);
}

.warm-b513 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.solid-4e3a {
    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);
}

.solid-4e3a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.outline_yellow_47ca {
    margin-top: 3rem;
}

.black_82a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.tall_65a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_copper_bd39 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.widget-81ba {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-81ba:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.light-14b3 {
    padding: var(--section-padding);
}

.caption_orange_c85b {
    margin: 2rem 0;
}

.selected_713f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.next-de31 {
    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;
}

.next-de31:hover, .next-de31.fn-active-cc94 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.notice-middle-c1ed {
    display: none;
}

.notice-middle-c1ed.fn-active-cc94 {
    display: block;
}

.smooth-9e76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-left-9b44 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.info-1b63 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.info-1b63 ul {
    list-style: none;
    padding: 0;
}

.info-1b63 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.info-1b63 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.media_rough_7f82 {
    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 */
.accordion-glass-96b2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-first-1765 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-smooth-a8aa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.narrow_aac7 {
    color: var(--accent-color);
    margin: 0;
}

.container-pressed-39c5 {
    display: flex;
    gap: 1.5rem;
}

.feature-4852 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.carousel-old-8d5e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.article_953f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.article_953f.item_e024 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.article_953f.component_wood_1df9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.article_953f.container-advanced-0910 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.smooth-5702 {
    margin-top: 2rem;
}

.component-5d1f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outer_9e66 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .outer_9e66 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-e6b2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.description_8eca {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.plasma_21b4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.large_e559 {
    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 */
.pattern-6f5e {
    padding: var(--section-padding);
}

.content_fast_2296 {
    margin: 2rem 0;
}

.header-copper-b429 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.texture_7b1a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.container-copper-5301 {
    list-style: none;
    padding: 0;
}

.container-copper-5301 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;
}

.container-copper-5301 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.container-copper-5301 li:last-child {
    border-bottom: none;
}

.motion-56bb {
    margin: 2rem 0;
}

.accordion_blue_80c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accent_5ab3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accent_5ab3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-dark-7eb9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_blue_aa41 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_fluid_8d22 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.white_df13 {
    margin-top: 2rem;
}

.focus-new-5b8b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.small-4e9a {
    list-style: none;
    padding: 0;
}

.dark_e5c1 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.dark_e5c1 a {
    color: var(--accent-color);
    text-decoration: none;
}

.dark_e5c1 a:hover {
    text-decoration: underline;
}

.up-cbde {
    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 */
.banner_narrow_8269 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-5f4f {
    margin: 2rem 0;
}

.red_2772 {
    margin-bottom: 3rem;
}

.red_2772 .nav-wide-1b1e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.frame-ca2f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.notice_ae38 {
    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);
}

.notice_ae38:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.red_8733 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .red_8733 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination_fluid_0247 {
    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 */
.pro_9e19 {
    padding: var(--section-padding);
}

.row_71a3 {
    margin: 2rem 0;
}

.hovered_d8f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.yellow-0c77 {
    overflow-x: auto;
    margin: 2rem 0;
}

.border-rough-54fc {
    background: rgba(6, 182, 212, 0.1) !important;
}

.hidden_fresh_70a0 {
    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;
}

.tertiary_lower_c149 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.grid-fdfa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .grid-fdfa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-north-3f4d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-north-3f4d .grid_f1ca {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.column-north-3f4d .sidebar-static-4251 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.progress_over_68a8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.button-hard-c95f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-baee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-baee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-65a7 {
    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;
}

.huge-65a7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.next-1fd7 {
    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);
}

.search-basic-e04b {
    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;
}

.primary-fresh-ba86 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background_d6e9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.right_3cd4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.input_c284 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header_ee94 {
    color: var(--text-white);
    font-weight: 600;
}

.fixed_888d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.grid-55ce {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-55ce .backdrop_8cad {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pattern_cold_3ebc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern_cold_3ebc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_4b85 {
    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);
}

.cold_4b85:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cold_4b85 .shadow_wood_2e76 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold_4b85 .badge-stone-4aaf {
    color: var(--text-gray);
    font-size: 1rem;
}

.detail_basic_adfb {
    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);
}

.mask-1648 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.mask-1648 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.backdrop-orange-94e2 {
    margin: 2rem 0;
}

.liquid-dc83 {
    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);
}

.liquid-dc83:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.under_d0d1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.picture_630e {
    flex: 1;
}

.title-0b53 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paper_3200 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.current_7aac {
    margin: 2rem 0;
}

.sort-narrow-5ba0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-narrow-5ba0 .sidebar-static-4251 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.sort-narrow-5ba0 .picture-b24e {
    color: var(--text-gray);
    margin: 0;
}

.primary_6b34 {
    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);
}

.primary_6b34 .lite_d5a4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.progress_over_68a8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.complex-b233 {
    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;
}

.detail-complex-046b {
    flex: 1;
}

.image-6b83 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.grid-8f51 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.logo-5bad {
    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;
}

.easy-0b25 {
    flex: 1;
}

.paper-91a4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.table_lite_0ec1 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.sidebar-dim-f0c4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.element_large_73c8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.over_b525 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.over_b525 .backdrop_8cad {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tooltip_static_3ab5 {
    margin-top: 2rem;
}

.tooltip_static_3ab5 .stale_1123 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.texture-f6be {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_2e3f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .short_2e3f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short_2e3f .outline_red_8027 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-pro-99a4 {
    margin: 2rem 0;
}

.banner-tiny-1fac {
    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 */
.sort-d69e {
    padding: var(--section-padding);
}

.frame-warm-0d5f {
    margin-top: 1rem;
}

.inner-e3be {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.inner-e3be li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.inner-e3be li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hovered_249a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm_7386 {
    margin: 2rem 0;
}

.advanced-c5d6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.simple-c297 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.active-wood-6479 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.border-silver-2f6b {
    margin: 2rem 0;
}

.block-tiny-8d22 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.block-tiny-8d22 .nav-wide-1b1e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold_4b71 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold_4b71 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper_8a7a {
    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);
}

.paragraph_wide_59a5 {
    color: var(--text-white);
    font-weight: 600;
}

.large-f070 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.smooth-24d7 {
    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);
}

.smooth-24d7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.chip-pressed-c6b8 {
    padding: var(--section-padding);
}

.out_a29e {
    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;
}

.out_a29e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.bottom_4309 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom_4309 .secondary_0afa {
    font-size: 2rem;
    flex-shrink: 0;
}

.bottom_4309 .background-5175 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.search-3ad6 {
    flex: 1;
}

.hero-gas-e63e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element_6449 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element_6449 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.element_6449 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.under-8d37 {
    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);
}

.under-8d37 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.under-8d37 strong {
    color: var(--warning-color);
}

/* Slots Section */
.module_94e4 {
    padding: var(--section-padding);
}

.dim_a866 {
    margin: 2rem 0;
}

/* Table Games Section */
.solid-59f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold-1eab {
    margin: 2rem 0;
}

.out-d6ac {
    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);
}

.out-d6ac:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.out-d6ac .info-lite-b2f4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out-d6ac .tall_9063 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.inner-9764 {
    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);
}

.inner-9764 .lite_d5a4 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.dim-9985 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.rough_99bd {
    margin: 2rem 0;
}

.large-cb6c {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-basic-809c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bronze_7c58 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge_easy_7a10 {
    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);
}

.badge_easy_7a10:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.badge_easy_7a10.fn-active-cc94 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_a85c {
    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);
}

.first-4b6c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.first-4b6c strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.white_6274 {
    padding: var(--section-padding);
}

.caption-first-0a40 {
    margin: 2rem 0;
}

.disabled-ab4d {
    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);
}

.disabled-ab4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .disabled-ab4d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.icon_out_fa73 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.input-gold-ed2e {
    flex: 1;
}

.static-ea1e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.old-0a23 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.red_25e9 {
    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;
}

.button_b31b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.middle_a0d2 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-hard-b891 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fresh-d1d7 {
    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;
}

.fresh-d1d7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.input-liquid-14c0 {
    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);
}

.backdrop-77ff {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop-77ff strong {
    color: var(--accent-color);
}

/* New Games Section */
.layout_a0d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-0dca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-0dca {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .widget-0dca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_97c2 {
    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;
}

.lower_97c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.stone-1b67 {
    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;
}

.modal_tiny_ac13 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.alert_273e {
    font-size: 2rem;
}

.yellow-a9bd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.simple-0667 {
    flex: 1;
}

.link-complex-9800 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.info_192b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.green-80a9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.solid_b5b3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cool_3baa {
    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;
}

.frame-white-488c {
    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;
}

.frame-white-488c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article_outer_2060 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-hot-46b9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_ee92 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .aside_ee92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-14de {
    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);
}

.border-f8b0 {
    color: var(--text-white);
    font-weight: 600;
}

.stone_2555 {
    color: var(--accent-color);
    font-weight: 600;
}

.text_53a5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.text_53a5 strong {
    color: var(--accent-color);
}

/* Security Section */
.lite-356d {
    padding: var(--section-padding);
}

/* Benefits Section */
.notification_422e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.sidebar_6b47 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.light-070f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-top-9e81 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.block_da28 {
    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) {
    .block_da28 {
        flex-direction: column;
        gap: 1rem;
    }
}

.block_da28:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.block_da28 .logo-5bad {
    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;
}

.block_da28 .easy-0b25 {
    flex: 1;
}

.block_da28 .paper-91a4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.block_da28 .table_lite_0ec1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.light_40eb {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_40eb .highlight_a802 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.light_40eb .disabled-a1f2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light_40eb .disabled-a1f2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.light_40eb .disabled-a1f2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.up-7323 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.inner_54ae {
    padding: var(--section-padding);
}

.active-narrow-590e {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .active-narrow-590e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-yellow-d8e0 {
    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);
}

.focus-yellow-d8e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.focus-yellow-d8e0 .article_8866 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-yellow-d8e0 .block-8431 {
    flex: 1;
}

.focus-yellow-d8e0 .progress-fixed-fa90 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-yellow-d8e0 .first-24a6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.detail_eac6 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_eac6 .paper-6cda {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail_eac6 .card-narrow-8b4e {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.detail_eac6 .card-narrow-8b4e 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);
}

.detail_eac6 .card-narrow-8b4e li:last-child {
    border-bottom: none;
}

.detail_eac6 .card-narrow-8b4e 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;
}

.detail_eac6 .card-narrow-8b4e li strong {
    color: var(--text-white);
}

.pattern_3c67 {
    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);
}

.pattern_3c67 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern_3c67 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.background_silver_8228 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_8e06 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hover_8e06 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.north_2bc3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.north_2bc3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element-cc38 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-779c {
    font-size: 2rem;
}

.outline_0b19 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary_8cce {
    flex: 1;
}

.selected-7221 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-7221 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.selected-7221 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pagination_80d7 {
    margin-top: 3rem;
}

.header-copper-b429 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.texture_7b1a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-copper-5301 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-copper-5301 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.container-copper-5301 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.container-copper-5301 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.brown-11c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.medium_0213 {
    margin: 2rem 0;
}

.photo_cold_7470 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.photo_cold_7470 .nav-wide-1b1e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first_8302 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .first_8302 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb_86fa {
    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);
}

.breadcrumb_86fa:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.stale_8d3c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.disabled-55c3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.iron-bc33 {
    padding: var(--section-padding);
}

.clean_907e {
    margin: 2rem 0;
}

.brown-7aed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .brown-7aed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown-7aed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-15b6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.filter-15b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shade-136c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pressed-6507 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.south-c277 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.south-c277.orange_354d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.carousel_580c {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.chip_action_dbd5 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.panel_fcda {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-9ad2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.article_under_b057 {
    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);
}

.article_under_b057 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article_under_b057 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.sort-0c49 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-dark-c5b0 {
    margin: 2rem 0;
}

.search_6a38 {
    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) {
    .search_6a38 {
        flex-direction: column;
        gap: 1rem;
    }
}

.search_6a38:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.search_6a38::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);
}

.panel_2c3e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.slider_complex_8da5 {
    flex: 1;
}

.card-d473 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.active-2b3d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-2b3d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-379a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-middle-972d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black_0c87 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black_0c87 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_94ea {
    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);
}

.copper_e3c6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.inner_2dbb {
    flex: 1;
}

.fluid_e450 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.progress-9cea {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.last_4d9f {
    margin-top: 2rem;
    text-align: center;
}

.green-82be {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.green-82be strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.disabled_68c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_68c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_0876 {
    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);
}

.tooltip_0876:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip_0876 .pro_596e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_0876 .prev_019b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tooltip_0876 .pattern_pro_7c8a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tooltip_0876 .highlight_bright_4124 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hover_huge_8df8 {
    padding: var(--section-padding);
}

.media_inner_debb .large_69c6 {
    flex: 1;
}

/* Promo Calendar Section */
.notice-prev-1c0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_be51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .in_be51 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-6114 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_a4d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.paragraph_hot_9983 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action_1247 {
    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);
}

.breadcrumb-f321 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.current-a940 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.shade-3997 {
    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);
}

.shade-3997 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade-3997 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.grid_next_c1d9 {
    padding: var(--section-padding);
}

.in_3fdd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in_3fdd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gas_4ea0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-9504 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.widget-rough-6cdf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-rough-6cdf li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-abb2 {
    margin-top: 3rem;
}

.picture-abb2 .header-copper-b429 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.picture-abb2 .texture_7b1a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-abb2 .container-copper-5301 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.picture-abb2 .container-copper-5301 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.picture-abb2 .container-copper-5301 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.picture-abb2 .container-copper-5301 li strong {
    color: var(--warning-color);
}

.primary_cecd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary_cecd strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.paragraph-rough-ea9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south_9de1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_9de1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-rough-4d8d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-rough-4d8d .nav-wide-1b1e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.carousel_plasma_68cf {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.west-55be {
    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);
}

.west-55be:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.white-f62b {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_a17d {
    flex: 1;
}

.black_85a7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.notification_4f7e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.badge-gold-5c1b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.label-37d2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-f29d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .component-f29d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-34c8 {
    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);
}

.upper-34c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thick-ad46 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status_white_1556 {
    color: var(--text-gray);
    font-size: 1rem;
}

.narrow_303e {
    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);
}

.gallery-b517 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gallery-b517 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.smooth-0896 { 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; }
.shadow-down-96ce, .breadcrumb-copper-ae2d { max-width:100%; height:auto; }

.primary_2973, .gallery-hovered-9de2, .secondary-steel-d6eb { white-space:normal; }

.info_in_f69b,
.content-6ca5,
.block-prev-d349,
.disabled_68c9,
.current_7aac,
.lower-311c {
  flex-wrap:wrap;
}

[class*="grid"],
.component-f29d,
.brown-7aed,
.under-0c16 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.accordion_plasma_9129 img,
.content-6ca5 img,
.link-059b img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.light_d729, .image_02c8,
.wrapper-tall-e7f7, .photo_short_3aae {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.complex-1902 { width:100%; overflow-x:auto; }
.complex-1902 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.list-25a5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .list-25a5 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.search-4107 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.notice-b17d,
.heading-7098,
.feature-soft-6f48,
.dirty-aceb,
.filter-new-6ea5,
.component-f29d,
.brown-7aed,
.under-0c16,
.text-light-b0fc,
.caption-first-0a40,
.list-25a5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .notice-b17d,
  .heading-7098,
  .feature-soft-6f48,
  .dirty-aceb,
  .filter-new-6ea5,
  .component-f29d,
  .brown-7aed,
  .under-0c16,
  .text-light-b0fc,
  .caption-first-0a40,
  .list-25a5 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.image-dd5c,
.panel_inner_3131,
.upper-34c8,
.form_prev_a50a,
.filter-15b6,
.hidden_wide_f151,
.disabled-ab4d,
.search-4107 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.tiny_5986,
.hover-lower-b858,
.banner-ce32 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tiny_5986 > *,
.hover-lower-b858 > *,
.banner-ce32 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: cefa */
.promo-block-x0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
