/* {$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;
}

.frame_3a42 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.green_6e6f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .green_6e6f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .green_6e6f {
        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 */
.badge-d529 {
    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);
}

.out-3e0c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .out-3e0c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .media-gas-5098 {
        grid-column: 1;
    }
    
    .light_fc7e {
        grid-column: 2;
    }
    
    .content-under-1420 {
        grid-column: 3;
    }
}

.media-gas-5098 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.media-gas-5098:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hidden-f738 {
    display: none;
}

@media (min-width: 1024px) {
    .hidden-f738 {
        display: block;
    }
}

/* Grouped Navigation */
.dropdown_glass_3b4b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.summary_a245 {
    position: relative;
}

.accordion-cddd {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.summary_a245 .pagination_huge_684e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.pagination_huge_684e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.paper-ed7b {
    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;
}

.paper-ed7b:hover,
.paper-ed7b.fn-active-d926 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.link-edfb {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .link-edfb {
        display: flex;
    }
}

/* Mobile Register Button */
.light_fc7e {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .light_fc7e {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.complex-ddf7 {
    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;
}

.complex-ddf7::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 */
.content-under-1420 {
    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) {
    .content-under-1420 {
        display: none;
    }
}

.content-under-1420 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.content-under-1420.fn-active-d926 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.content-under-1420.fn-active-d926 span:nth-child(2) {
    opacity: 0;
}

.content-under-1420.fn-active-d926 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.modal_rough_3242 {
    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;
}

.modal_rough_3242.fn-active-d926 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.over_c316 {
    overflow: hidden;
}

.search-ea2c {
    list-style: none;
    padding: 0.75rem 0;
}

.cold-96ea {
    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;
}

.cold-96ea:hover,
.cold-96ea.fn-active-d926 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.cold-96ea.item_basic_8f38 {
    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;
}

.cold-96ea.item_basic_8f38::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 */
.panel_west_0dd4 {
    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;
}

.header-gas-15ed {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.header-gas-15ed:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.pagination_9ae0 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.pagination_9ae0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.huge_f0c5 {
    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;
}

.huge_f0c5:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.widget-smooth-0218 {
    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;
}

.texture-old-aa71 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.texture-old-aa71:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.up-bc29 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.up-bc29:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.wrapper_f0af {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.wrapper_f0af: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);
}

.dropdown_short_3e3c {
    font-size: 1em;
    font-weight: 700;
}

.stone-52b2 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.column-7eab {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.column-7eab::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;
}

.progress-8a46 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .progress-8a46 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hidden-5f02 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.header_bae1 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.stone-5840 {
    margin-bottom: 2rem;
}

.feature-dynamic-7c23 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .feature-dynamic-7c23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-fd33 {
    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);
}

.frame_1d6a {
    font-size: 1.5rem;
}

.grid-light-84dd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.paragraph_lite_1713 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.description_0c3a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.description_0c3a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.frame_tiny_d099 {
    text-align: center;
    margin-bottom: 3rem;
}

.hidden-white-3d2d {
    margin-bottom: 1rem;
}

.gas-c494 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.header_9685 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .header_9685 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .header_9685.banner_dynamic_50ea {
        direction: rtl;
    }
    
    .header_9685.banner_dynamic_50ea > * {
        direction: ltr;
    }
}

.nav-58ca {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.nav-58ca:first-child {
    margin-top: 0;
}

.input-purple-7aed {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.logo_c5df {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.logo_c5df:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.hover-bright-d790 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-bright-d790 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_simple_eae6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table-80b8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.popup_1747 {
    list-style: none;
}

.popup_1747 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_1747 li:last-child {
    border-bottom: none;
}

/* Games Features */
.search_pro_d774 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.element_lower_1744 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.blue-f3cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-basic-5b59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.tiny-0d66 {
    margin: 2rem 0;
}

.dropdown_paper_5940 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.sidebar_397e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.west_8144 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tertiary_fluid_1328 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.row-medium-cc54 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-medium-cc54 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_a61c {
    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);
}

.tabs_a61c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component_lite_21ce {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.border_1077 {
    font-size: 1.5rem;
}

.secondary_c4c9 {
    color: var(--accent-color);
    margin: 0;
}

.prev_598a {
    list-style: none;
}

.prev_598a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.prev_598a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.under_bcb5 {
    margin: 2rem 0;
}

.smooth-5a8d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.lower_3af6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .lower_3af6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-large-72d2 {
    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);
}

.secondary-6f41 {
    font-size: 1.25rem;
}

.paragraph-bea5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.text-pressed-8a7f,
.tabs_bb9c {
    text-align: center;
    margin: 2rem 0;
}

.popup_fluid_ba6b,
.box_0c6b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.breadcrumb-fa50 {
    margin: 2rem 0;
    text-align: center;
}

.gold_2e7b {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gold_2e7b::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;
}

.section_mini_8830 {
    position: relative;
    z-index: 1;
}

.hovered_c6ce {
    margin-bottom: 1rem;
}

.form-b818 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gold-493b {
    margin-bottom: 3rem;
}

.article_basic_d137 {
    margin-top: 3rem;
}

.plasma-ba13 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .plasma-ba13 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma-ba13 .overlay-fd33 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_2d9b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main-stale-a453 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.smooth_7c9e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.thumbnail-3b25 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .thumbnail-3b25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail-3b25 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.pattern-76d4 {
    margin-bottom: 1rem;
}

.badge-large-9720 img {
    margin-bottom: 1rem;
}

.backdrop_static_e5aa {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas-72b5 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tall-4014 {
    list-style: none;
}

.tall-4014 li {
    margin-bottom: 0.5rem;
}

.tall-4014 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tall-4014 a:hover {
    color: var(--accent-color);
}

.bottom_5bfe {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel-focused-367e {
    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);
}

.panel-focused-367e:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.progress_fast_bd9b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.progress_fast_bd9b p {
    margin-bottom: 0.25rem;
}

.block-bronze-b2f2 {
    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) {
    .block-bronze-b2f2 {
        flex-direction: row;
    }
}

.up-88ab {
    text-align: center;
}

@media (min-width: 768px) {
    .up-88ab {
        text-align: left;
    }
}

.up-88ab p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stone-c79f {
    font-size: 0.75rem !important;
}

.picture-7afa {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.right-3b32 {
    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);
    }
}

.purple-5408 {
    animation: fadeInUp 0.6s ease-out;
}

.fresh_4cc1 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.link-cool-421a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-cool-421a {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.background_af96 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_af96 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_down_6882 {
    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);
}

.disabled_down_6882 .blue-f3cc {
    font-size: 1.25rem;
}

.disabled_down_6882 .selected-b1ad {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.modal_ee7f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_ee7f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-56a0 {
    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);
}

.preview-56a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_new_50cd {
    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);
}

.lower-df60 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort_d027 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_7e4e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_old_0978 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_old_0978 .status-basic-5b59 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_old_0978 .section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-24ba {
    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);
}

.row-large-5943 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.row-large-5943 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.row-large-5943 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.secondary_3964 {
    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);
}

.shadow-current-8470 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.simple_72cb {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.simple_72cb label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.simple_72cb 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);
}

.simple_72cb input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.simple_72cb input::placeholder {
    color: var(--text-muted);
}

.accordion_hovered_67f7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-6b76 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.detail-6b76 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.row_east_84c9 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.row_east_84c9:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.lower_3af6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_3af6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-large-72d2 {
    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);
}

.description-large-72d2 .secondary-6f41 {
    font-size: 1.25rem;
}

.description-large-72d2 .paragraph-bea5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.complex_a6c8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-ba47 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.top-ba47 .blue-f3cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.top-ba47 .status-basic-5b59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.top-ba47 .section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-wide-3a46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-99cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-99cb .paragraph-selected-69fa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary-99cb .item-copper-be46 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_fast_16de {
    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);
}

.message_stone_203e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message_stone_203e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-909b {
    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);
}

.pressed-909b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-04fe {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.row-yellow-ae9c {
    flex: 1;
}

.green-f384 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form_brown_37bb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.item-selected-f6a1 {
    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);
}

.item-selected-f6a1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.detail_9887 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_9887 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide_a6ae {
    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);
}

.wide_a6ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-470e {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-4c79 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.button-silver-31ac {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_active_6986 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask_hard_e4ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty_72e4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget-8e6c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.widget-8e6c .module_7b26 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget-8e6c .aside-old-a164 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_1047 {
    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);
}

.logo_new_4c4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-13fc {
    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);
}

.center-13fc .blue-f3cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.center-13fc .status-basic-5b59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.center-13fc .section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_ddb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_ddb1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-d48c {
    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);
}

.sidebar-d48c:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.menu_b553 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_b553 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_dfb1 {
    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);
}

.active_dfb1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west-c803 {
    font-size: 2rem;
    flex-shrink: 0;
}

.light-d089 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar_397e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hidden_caaa {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.notification_inner_2f97 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_9c88 {
    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);
}

.disabled_9c88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dirty-a22b {
    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);
}

.header_7002 {
    flex: 1;
}

.gradient-dcb6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.upper_a89e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.soft-2cb9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall_2fc0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-933c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small-933c .paragraph-selected-69fa {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.small-933c .item-copper-be46 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_bb9c {
    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);
}

.notice-947a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-947a {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.logo_ffac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_ffac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-8637 {
    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-8637:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-copper-0b63 {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge-61a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.text_cf1e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focused_9222 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shadow_basic_d92f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_9816 {
    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);
}

.silver_453c {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_34b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower-0d72 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_new_4c4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-13fc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.center-13fc .status-basic-5b59 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center-13fc .section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-middle-32bd {
    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);
}

.middle-97d5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle-97d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle-97d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-775b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.frame-775b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_3873 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.silver_89cc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.primary-slow-9e2f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.panel-inner-521f {
    padding: 1.5rem;
}

.description_71ca {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert-b933 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-b933 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.alert-b933 li:last-child {
    border-bottom: none;
}

.alert-b933 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.media_bb4e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_bb4e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.middle_0ab4 {
    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);
}

.middle_0ab4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hovered_06ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-b887 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chip_f137 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block-10d9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paper_7eb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.clean-61ac {
    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);
}

.tabs_action_ab06 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-6e3c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo_lite_ecd8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-ef4b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.carousel-25b3 {
    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);
}

.main_8555 {
    text-align: center;
}

.overlay-5240 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-plasma-ef18 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pattern-6844 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone_e779 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_e779 .status-basic-5b59 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.stone_e779 .section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-6948 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .right-6948 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right-6948 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_copper_ec46 {
    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_copper_ec46:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-active-8b23 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.list_prev_a91a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status-basic-5b59 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.widget-57d8 {
    padding: 1.5rem;
}

.section_8738 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status_d44e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_d44e 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;
}

.status_d44e li:last-child {
    border-bottom: none;
}

.status_d44e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.surface-77bc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.silver-2c51 {
    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);
}

.silver-2c51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini_fcf9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-30e0 {
    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);
}

.section_new_50cd {
    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;
}

.lower-df60 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_d027 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-3c6e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_d3f2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.grid-plasma-c596 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.narrow_c32b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.layout-d3d7 {
    display: flex;
    gap: 1rem;
}

.layout-d3d7 .description_1199 {
    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;
}

.fresh_3036 {
    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);
}

.lite_8535 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accent-down-f232 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-down-f232 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;
}

.accent-down-f232 li:last-child {
    border-bottom: none;
}

.accent-down-f232 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.large-6485 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .large-6485 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .large-6485 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-b939 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.selected-b939:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-5542 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.surface-5ee4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.module_7b26 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.upper_1d85 {
    font-size: 1rem;
}

.icon_587e {
    padding: 1.5rem;
}

.aside-old-a164 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.heading-bd93 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.heading-bd93 .main_8555 {
    text-align: center;
}

.heading-bd93 .carousel-plasma-ef18 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.heading-bd93 .mask_glass_9a07 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.north_5122 {
    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);
}

.north_5122:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.narrow_fa99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_fa99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_dim_26ca {
    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);
}

.component_dim_26ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-26c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-3b41 {
    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);
}

.accordion-gas-b186 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_9bdb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.down_ba5d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered-ee1d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hard-9ce7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel_stone_1cee {
    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);
}

.dim-9ca7 {
    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;
}

.dim-9ca7.block_selected_d0c4 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.dim-9ca7.carousel-selected-1925 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.dim-9ca7.widget-3e20 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.dim-9ca7.hover-clean-edd4 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.dim-9ca7.article_right_5d61 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.backdrop-0ef4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.prev-9611 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_steel_6bc5 {
    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);
}

.north-d688 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hidden-wide-3a46 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden-wide-3a46 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;
}

.hidden-wide-3a46 li:last-child {
    border-bottom: none;
}

.hidden-wide-3a46 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.fluid-8c65 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fluid-8c65 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fluid-8c65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze-c1df {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bronze-c1df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze-c1df.chip_first_4203 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .bronze-c1df.chip_first_4203 {
        grid-column: span 3;
    }
}

.list-slow-3398 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.bronze-c1df.chip_first_4203 .list-slow-3398 {
    background: rgba(6, 182, 212, 0.1);
}

.highlight-e57c {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.green_9730 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.bronze-c1df.chip_first_4203 .green_9730 {
    color: var(--info-color);
}

.bronze_0719 {
    padding: 1.5rem;
    text-align: center;
}

.column_7292 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bronze-c1df.chip_first_4203 .column_7292 {
    color: var(--info-color);
}

.tertiary_active_5df9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.grid-e4c8 {
    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 */
.tall_d290 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_d290 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-405d {
    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);
}

.white-405d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink-8c72 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-ba47 {
    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);
}

.secondary-6f41 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_glass_838f {
    flex: 1;
}

.smooth-5a8d {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_a4a8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-0551 {
    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);
}

.aside-2ecf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.avatar-next-423b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.right-3b32 {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.block-center-8600 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-center-8600 .main_8555 {
    text-align: center;
}

.block-center-8600 .overlay-5240 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.block-center-8600 .carousel-plasma-ef18 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.out-c473 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_bottom_d59c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-be91 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.large-cc0c {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_old_065b {
    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);
}

.tabs_b2a8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern_366a {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_dirty_cb2c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel_dirty_cb2c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_dirty_cb2c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_33bd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.component_33bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-narrow-8c1e {
    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);
}

.easy-bd18 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shade-warm-62aa {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.center_a54a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.center_a54a.overlay-huge-8a3f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.center_a54a.brown-9397 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.center_a54a.block_basic_8796 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.advanced_dcdb {
    padding: 1.5rem;
    text-align: center;
}

.detail-smooth-bcca {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-basic-7486 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-basic-7486 .notification-black-c1ea {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.nav-726d {
    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);
}

.nav-726d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.orange-a897 {
  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);
}

.summary_plasma_5279 {
    text-align: center;
}

.summary_plasma_5279 .overlay-5240 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.summary_plasma_5279 .carousel-plasma-ef18 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.black-7fdd { text-align: center; }
.gradient_b989 { text-align: left; }
.brown-2b6f { text-align: right; }

.tertiary_bb66 { margin-bottom: 0; }
.inner-08fa { margin-bottom: 0.5rem; }
.panel_bronze_1084 { margin-bottom: 1rem; }
.alert_wide_aa9c { margin-bottom: 1.5rem; }
.prev_393a { margin-bottom: 2rem; }

.gas_0cfc { margin-top: 0; }
.dirty_b2b9 { margin-top: 0.5rem; }
.alert-purple-ab68 { margin-top: 1rem; }
.sidebar_6d56 { margin-top: 1.5rem; }
.column_0a42 { margin-top: 2rem; }

.fn-hidden-d926 { display: none; }
.fn-visible-d926 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .column-7eab {
        padding: 6rem 0 3rem;
    }
    
    .progress-8a46 {
        text-align: center;
    }
    
    .header_9685 {
        text-align: center;
    }
    
    .feature-dynamic-7c23 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .badge-d529,
    .modal_rough_3242,
    .gold_2e7b,
    .smooth_7c9e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .column-7eab {
        background: none;
    }
}

/* Providers Section */
.breadcrumb-8ee5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_7bac {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_7bac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_7bac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_simple_424b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled_simple_424b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input_49ea {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wrapper-9f81 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dynamic-79f2 {
    list-style: none;
    padding: 0;
}

.dynamic-79f2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.dynamic-79f2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.new_d7eb {
    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);
}

.new_d7eb p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.background_dbea {
    padding: var(--section-padding);
}

.list-b8b5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-b8b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-1746 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget-1746:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.accent_fe2c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.surface-paper-067a {
    display: flex;
    flex-direction: column;
}

.modal_3e41 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.nav_3a2c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blue_c603 {
    color: var(--accent-color);
}

.tabs-active-fde5 {
    font-size: 1.25rem;
}

.hidden_a1d3 {
    margin-bottom: 1rem;
}

.hidden_a1d3 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.column_out_c01e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.widget-1d6a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.main_8555 {
    text-align: center;
}

.overlay-5240 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-plasma-ef18 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hero-fbe7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_active_9f1c {
    margin: 2rem 0;
}

.next_b7ed {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.next_b7ed .blue-f3cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_simple_a46f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.progress-north-7bf3 {
    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;
}

.progress-north-7bf3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_cool_ca0f {
    font-size: 2rem;
}

.image_first_417a {
    display: flex;
    flex-direction: column;
}

.orange-ee07 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.preview_3298 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.upper-d2eb {
    padding: var(--section-padding);
}

.footer_fresh_6651 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_fresh_6651 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_fresh_6651 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-6450 {
    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);
}

.in-6450:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.in-6450 .overlay-5240 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.in-6450 .carousel-plasma-ef18 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.in-6450 .small_6e3a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.up-4d3d {
    margin-top: 4rem;
}

.surface-0161 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.advanced_0536 {
    overflow-x: auto;
}

.outline_2c39 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.outline_2c39 thead {
    background: var(--accent-color);
}

.outline_2c39 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.outline_2c39 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_2c39 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.outline_2c39 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.video_3950 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_eb9e {
    max-width: 900px;
    margin: 0 auto;
}

.new_fb61 {
    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);
}

.new_fb61:hover {
    border-color: var(--accent-color);
}

.modal_action_4165 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.modal_action_4165 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.container_7120 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.new_fb61.fn-active-d926 .container_7120 {
    transform: rotate(45deg);
}

.input_motion_2567 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.new_fb61.fn-active-d926 .input_motion_2567 {
    max-height: 1000px;
}

.input_motion_2567 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.picture_fe03 {
    padding: var(--section-padding);
}

.row-large-5943 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.clean_d01f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-gold-02d4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-gold-02d4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active_fast_5ee6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-07ae {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pattern-6f41 {
    font-size: 2rem;
}

.accent_08f0 {
    color: var(--text-white);
    margin: 0;
}

.sort-lower-1d62 {
    list-style: none;
    padding: 0;
}

.sort-lower-1d62 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-lower-1d62 li:last-child {
    border-bottom: none;
}

.footer_prev_0595 {
    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);
}

.footer_prev_0595 p {
    color: var(--success-color);
    margin: 0;
}

.frame_cool_0766 {
    margin-top: 3rem;
}

.lite_8535 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.alert-simple-b44b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .alert-simple-b44b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.medium-ee57 {
    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);
}

.lite_1e58 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.medium-ee57 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.banner-upper-8d49 {
    padding: var(--section-padding);
}

.icon_red_641b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_red_641b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_0688 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notice_0688:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.avatar_6e02 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.caption-plasma-d2e0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.outline-3eca {
    flex: 1;
}

.feature_silver_1f3b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.detail-ae1e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.shadow_752b {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-2c06 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bright-2c06:last-child {
    border-bottom: none;
}

/* Comparison Section */
.sidebar-4a53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.section-64dc {
    padding: var(--section-padding);
}

.dim_e32a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.filter_orange_6b20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_orange_6b20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.silver_f5c4 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_prev_ac7f, .motion_9870, .stale-0dde {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.stale-0dde {
    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 */
.glass_c33c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside-fffc {
    margin: 2rem 0;
}

.photo_lite_252f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-beb0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.purple-fd53 {
    list-style: none;
    padding: 0;
}

.purple-fd53 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;
}

.purple-fd53 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.purple-fd53 li:last-child {
    border-bottom: none;
}

.stone-ee11 {
    text-align: center;
    margin-top: 2rem;
}

.top-aad9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.heading_in_af54 {
    padding: var(--section-padding);
}

.liquid-4865 {
    margin: 2rem 0;
}

.north_a3f0 {
    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) {
    .north_a3f0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.north_a3f0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.advanced_c631 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.liquid-5996 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.disabled_orange_bec9 {
    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;
}

.current_f73e {
    flex: 1;
}

.banner_9c2f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.current_e773 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tiny-afe5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.gold-778f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .gold-778f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.filter_b0e7 {
    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);
}

.filter_b0e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter_b0e7 .overlay-5240 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter_b0e7 .carousel-plasma-ef18 {
    color: var(--text-gray);
    font-size: 1rem;
}

.row_87ab {
    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);
}

.status-bright-68b9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.status-bright-68b9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.paragraph_ea43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .paragraph_ea43 {
        grid-template-columns: 1fr 1fr;
    }
}

.widget_8fa8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_97b5 {
    margin-bottom: 1.5rem;
}

.info_97b5 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info_97b5 input,
.info_97b5 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;
}

.info_97b5 input:focus,
.info_97b5 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.block-out-cd74 {
    width: 100%;
    margin-top: 1rem;
}

.old-0aaa {
    display: flex;
    align-items: center;
}

.dropdown-motion-16bd {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.sort-934d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.large_b484 {
    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;
}

.action_0f8c {
    color: var(--text-gray);
}

.element-static-0790 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.paragraph_b123 {
    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);
}

.paragraph_b123 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.icon_7086 {
    margin-top: 3rem;
}

.component-0a32 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.gallery_324e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini_13cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.logo-913c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-913c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.photo-6353 {
    padding: var(--section-padding);
}

.gold_ed90 {
    margin: 2rem 0;
}

.tag_clean_58d3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.in-f28b {
    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;
}

.in-f28b:hover, .in-f28b.fn-active-d926 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.outline-cool-56ff {
    display: none;
}

.outline-cool-56ff.fn-active-d926 {
    display: block;
}

.media-soft-a642 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-926e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tiny_06ac h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.tiny_06ac ul {
    list-style: none;
    padding: 0;
}

.tiny_06ac ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tiny_06ac ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.input-tiny-6cf6 {
    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 */
.solid-2b2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-6a76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-first-a701 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.input_selected_9809 {
    color: var(--accent-color);
    margin: 0;
}

.image_96fc {
    display: flex;
    gap: 1.5rem;
}

.gas_cafb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.stale_4b0a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.easy-be35 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.easy-be35.form_2600 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.easy-be35.gold_a46c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.easy-be35.sidebar_south_ffdf {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.green_bffb {
    margin-top: 2rem;
}

.table-2f46 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.popup_complex_759c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .popup_complex_759c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_bcfe {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.summary-new-6a41 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gallery_focused_2692 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.status-9a14 {
    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 */
.middle_e432 {
    padding: var(--section-padding);
}

.inner-b5d2 {
    margin: 2rem 0;
}

.aside-iron-d006 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.nav_0b82 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.disabled_efa1 {
    list-style: none;
    padding: 0;
}

.disabled_efa1 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;
}

.disabled_efa1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.disabled_efa1 li:last-child {
    border-bottom: none;
}

.complex-8c0b {
    margin: 2rem 0;
}

.last_2693 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gallery_2e14 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_2e14 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame-ff55 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-0eb0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blue-51dd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture_west_35c1 {
    margin-top: 2rem;
}

.green-f384 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.wood_63c3 {
    list-style: none;
    padding: 0;
}

.hover-south-de41 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hover-south-de41 a {
    color: var(--accent-color);
    text-decoration: none;
}

.hover-south-de41 a:hover {
    text-decoration: underline;
}

.fresh_437a {
    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 */
.link_bottom_0c90 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_b0e3 {
    margin: 2rem 0;
}

.current-e51c {
    margin-bottom: 3rem;
}

.current-e51c .fluid-beb0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.chip_east_7c5a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article-mini-e64c {
    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);
}

.article-mini-e64c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.surface-993a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .surface-993a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-fed5 {
    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 */
.status_glass_8cc3 {
    padding: var(--section-padding);
}

.paper-a030 {
    margin: 2rem 0;
}

.pattern_north_6a8c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.logo-down-65a0 {
    overflow-x: auto;
    margin: 2rem 0;
}

.thumbnail-hard-d5e4 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.sidebar_8694 {
    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;
}

.carousel-active-bcf9 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.lite_9a15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .lite_9a15 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_d0e0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_d0e0 .blue-f3cc {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.focus_d0e0 .status-basic-5b59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link-current-ac0c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.nav_a041 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-thick-8720 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-thick-8720 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold-b78f {
    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;
}

.gold-b78f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.outline_2ec2 {
    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);
}

.highlight-10c7 {
    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;
}

.black-22cb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.steel-b7e0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.message-center-ef03 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pattern_3632 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel_9c9d {
    color: var(--text-white);
    font-weight: 600;
}

.orange_e9d9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.out_c528 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.out_c528 .description_1199 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.widget_plasma_b1b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget_plasma_b1b2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_178a {
    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);
}

.dirty_178a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dirty_178a .overlay-5240 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dirty_178a .carousel-plasma-ef18 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tag_simple_9497 {
    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);
}

.search-steel-4b9b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.search-steel-4b9b strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.shadow_basic_d92f {
    margin: 2rem 0;
}

.primary_9816 {
    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);
}

.primary_9816:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.silver_453c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification_9d4e {
    flex: 1;
}

.tiny_34b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower-0d72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.logo_new_4c4d {
    margin: 2rem 0;
}

.center-13fc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center-13fc .status-basic-5b59 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.center-13fc .section_8738 {
    color: var(--text-gray);
    margin: 0;
}

.picture-middle-32bd {
    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);
}

.picture-middle-32bd .popup_fluid_ba6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.link-current-ac0c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.dirty-a22b {
    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;
}

.header_7002 {
    flex: 1;
}

.upper_a89e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.soft-2cb9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.section_new_50cd {
    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;
}

.card-hot-dd4e {
    flex: 1;
}

.lower-df60 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sort_d027 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.grid-plasma-c596 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.narrow_c32b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.layout-d3d7 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.layout-d3d7 .description_1199 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fresh_3036 {
    margin-top: 2rem;
}

.fresh_3036 .lite_8535 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.highlight_orange_253c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel-25b3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .carousel-25b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-25b3 .main_8555 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-6844 {
    margin: 2rem 0;
}

.stone_e779 {
    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 */
.pagination-e5b9 {
    padding: var(--section-padding);
}

.widget-57d8 {
    margin-top: 1rem;
}

.status_d44e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.status_d44e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.status_d44e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.short-4663 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_2986 {
    margin: 2rem 0;
}

.complex-e31d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.title-52e7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.full_b5b7 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.white-c5f5 {
    margin: 2rem 0;
}

.shade-left-071b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shade-left-071b .fluid-beb0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer-4383 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outer-4383 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-9c52 {
    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);
}

.outer-a5da {
    color: var(--text-white);
    font-weight: 600;
}

.fixed_c193 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.gas_53e1 {
    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);
}

.gas_53e1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.filter-liquid-a171 {
    padding: var(--section-padding);
}

.purple-e3e5 {
    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;
}

.purple-e3e5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.background_inner_c8d7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background_inner_c8d7 .lite_1e58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_inner_c8d7 .filter_4c1b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.picture_pink_b675 {
    flex: 1;
}

.sort_solid_ff76 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nav-e433 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-e433 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.nav-e433 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.table_18c4 {
    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);
}

.table_18c4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.table_18c4 strong {
    color: var(--warning-color);
}

/* Slots Section */
.grid-plasma-29f1 {
    padding: var(--section-padding);
}

.mask_hard_e4ee {
    margin: 2rem 0;
}

/* Table Games Section */
.paragraph_east_4daf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty_72e4 {
    margin: 2rem 0;
}

.widget-8e6c {
    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);
}

.widget-8e6c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.widget-8e6c .module_7b26 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget-8e6c .aside-old-a164 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tabs_1047 {
    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);
}

.tabs_1047 .popup_fluid_ba6b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.tall_b9e8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-3667 {
    margin: 2rem 0;
}

.hovered_0bdb {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-smooth-0643 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_easy_e7b0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.orange_0cc4 {
    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);
}

.orange_0cc4:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.orange_0cc4.fn-active-d926 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture_128b {
    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);
}

.hidden_b64b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hidden_b64b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.footer_0420 {
    padding: var(--section-padding);
}

.black-6ee8 {
    margin: 2rem 0;
}

.old_af20 {
    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);
}

.old_af20:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .old_af20 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tertiary_6059 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.fast-b13d {
    flex: 1;
}

.background-f702 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search_2865 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.easy-68ca {
    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;
}

.down-f678 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-active-c996 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.active_dynamic_f1a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bright-d174 {
    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;
}

.bright-d174:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.accent_hard_8409 {
    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);
}

.disabled_motion_5de0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.disabled_motion_5de0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.tiny_69d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass_cb83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .glass_cb83 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .glass_cb83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_paper_5227 {
    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;
}

.element_paper_5227:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info_hard_c084 {
    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;
}

.module-south-1d7c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.brown-4d53 {
    font-size: 2rem;
}

.card_3486 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.narrow_27f1 {
    flex: 1;
}

.shade_074b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.brown-d7c1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wood-0bcb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.inner-1e48 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.nav-61cf {
    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;
}

.paper-71b0 {
    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;
}

.paper-71b0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.shade_8c52 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_6279 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current-f453 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .current-f453 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty_e2cd {
    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);
}

.element_wide_a693 {
    color: var(--text-white);
    font-weight: 600;
}

.texture-d697 {
    color: var(--accent-color);
    font-weight: 600;
}

.tabs-over-1f3b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tabs-over-1f3b strong {
    color: var(--accent-color);
}

/* Security Section */
.iron_7052 {
    padding: var(--section-padding);
}

/* Benefits Section */
.box_bottom_8a19 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.panel_7ec7 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.card-bronze-9572 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south-642b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.preview_a594 {
    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) {
    .preview_a594 {
        flex-direction: column;
        gap: 1rem;
    }
}

.preview_a594:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.preview_a594 .section_new_50cd {
    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;
}

.preview_a594 .card-hot-dd4e {
    flex: 1;
}

.preview_a594 .lower-df60 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.preview_a594 .sort_d027 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.short-adcf {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-adcf .smooth-5a8d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.short-adcf .complex_a6c8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short-adcf .complex_a6c8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.short-adcf .complex_a6c8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.surface-narrow-1b56 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.static_4c4a {
    padding: var(--section-padding);
}

.center-16d5 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .center-16d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article_37f4 {
    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);
}

.article_37f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.article_37f4 .black-87b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article_37f4 .modal-small-24b2 {
    flex: 1;
}

.article_37f4 .paragraph-selected-69fa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.article_37f4 .button-red-8edc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.message-d29a {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-d29a .mask_ff26 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message-d29a .red-2630 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.message-d29a .red-2630 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);
}

.message-d29a .red-2630 li:last-child {
    border-bottom: none;
}

.message-d29a .red-2630 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;
}

.message-d29a .red-2630 li strong {
    color: var(--text-white);
}

.primary-9a2e {
    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-9a2e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary-9a2e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.focused_8fa0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver_7553 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .silver_7553 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fresh-e24c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fresh-e24c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.center-1518 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.title-fixed-4dc4 {
    font-size: 2rem;
}

.badge_center_043f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.summary_aaef {
    flex: 1;
}

.disabled_warm_3b63 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_warm_3b63 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.disabled_warm_3b63 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.stone_8a34 {
    margin-top: 3rem;
}

.aside-iron-d006 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.nav_0b82 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_efa1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_efa1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.disabled_efa1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.disabled_efa1 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.purple_5389 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_9a5b {
    margin: 2rem 0;
}

.primary-4c40 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.primary-4c40 .fluid-beb0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.huge_abda {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .huge_abda {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-advanced-1487 {
    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);
}

.tooltip-advanced-1487:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tooltip-91bd {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.picture_hard_6c7c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.header_dynamic_18cb {
    padding: var(--section-padding);
}

.header_8572 {
    margin: 2rem 0;
}

.frame_9362 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .frame_9362 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame_9362 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_large_a3dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.nav_large_a3dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focused_beb7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.lite-cd8f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.table-out-7d8d {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.table-out-7d8d.form_bbc7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.thick-5fcc {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.notification_up_f6d8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.mini_7639 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button-right-9338 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mini-4e2d {
    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);
}

.mini-4e2d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mini-4e2d strong {
    color: var(--accent-color);
}

/* Update Log Section */
.container_45f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_focused_db04 {
    margin: 2rem 0;
}

.simple-9428 {
    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) {
    .simple-9428 {
        flex-direction: column;
        gap: 1rem;
    }
}

.simple-9428:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.simple-9428::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);
}

.east-d2d7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.motion_d5c4 {
    flex: 1;
}

.notification_pro_1985 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.new_a7b9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new_a7b9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_78e2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-5ea6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.narrow_8444 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .narrow_8444 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-tiny-dd6c {
    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);
}

.element-e08e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.upper-e666 {
    flex: 1;
}

.chip_wide_a3ff {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.focus-bfac {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo-5df8 {
    margin-top: 2rem;
    text-align: center;
}

.outline_4dfc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline_4dfc strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.narrow_fa99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_fa99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_dim_26ca {
    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);
}

.component_dim_26ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component_dim_26ca .hovered_06ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_dim_26ca .slider-b887 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.component_dim_26ca .chip_f137 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.component_dim_26ca .block-10d9 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.easy_0c2e {
    padding: var(--section-padding);
}

.wood-3b41 .soft_9f87 {
    flex: 1;
}

/* Promo Calendar Section */
.top-1d62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_053d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_053d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-old-d9ac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-a450 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.secondary-1486 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selected-b7eb {
    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);
}

.main-4c7e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tabs-wood-105b {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.surface_under_25d9 {
    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);
}

.surface_under_25d9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface_under_25d9 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.notification-0193 {
    padding: var(--section-padding);
}

.title-bronze-90ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .title-bronze-90ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.over-096b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_188d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard_f058 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard_f058 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.over_42b7 {
    margin-top: 3rem;
}

.over_42b7 .aside-iron-d006 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.over_42b7 .nav_0b82 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.over_42b7 .disabled_efa1 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.over_42b7 .disabled_efa1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.over_42b7 .disabled_efa1 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.over_42b7 .disabled_efa1 li strong {
    color: var(--warning-color);
}

.row-south-5a79 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row-south-5a79 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.active-46ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-pressed-6b0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-pressed-6b0d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_1dbc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last_1dbc .fluid-beb0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dynamic-258d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.liquid_61b4 {
    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);
}

.liquid_61b4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-top-76d0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-1541 {
    flex: 1;
}

.section-fixed-0743 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.info-slow-a4cb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.paragraph_e9ad {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.out_82b4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.black-b19d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .black-b19d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline_glass_42f0 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outline_glass_42f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label-34b9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-dirty-82d8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.status-bright-68b9 {
    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);
}

.article-a94e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.article-a94e strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.green_6e6f { 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; }
.description_0c3a, .logo_c5df { max-width:100%; height:auto; }

.panel_west_0dd4, .huge_f0c5, .widget-smooth-0218 { white-space:normal; }

.progress-8a46,
.header_9685,
.tall_d290,
.narrow_fa99,
.logo_new_4c4d,
.carousel_dirty_cb2c {
  flex-wrap:wrap;
}

[class*="grid"],
.black-b19d,
.frame_9362,
.plasma-ba13 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.column-7eab img,
.header_9685 img,
.paragraph_lite_1713 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hidden-5f02, .header_bae1,
.hidden-white-3d2d, .gas-c494 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.advanced_0536 { width:100%; overflow-x:auto; }
.advanced_0536 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hard_7bac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hard_7bac {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.disabled_simple_424b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.footer_fresh_6651,
.gradient_285f,
.detail_337c,
.button-left-134a,
.gold-778f,
.black-b19d,
.frame_9362,
.plasma-ba13,
.orange-a897,
.black-6ee8,
.hard_7bac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .footer_fresh_6651,
  .gradient_285f,
  .detail_337c,
  .button-left-134a,
  .gold-778f,
  .black-b19d,
  .frame_9362,
  .plasma-ba13,
  .orange-a897,
  .black-6ee8,
  .hard_7bac {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.in-6450,
.filter_b0e7,
.outline_glass_42f0,
.overlay-fd33,
.nav_large_a3dc,
.summary_plasma_5279,
.old_af20,
.disabled_simple_424b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.label-down-7f51,
.background-f69e,
.nav-upper-2019 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.label-down-7f51 > *,
.background-f69e > *,
.nav-upper-2019 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 35ae */
.phantom-card-s3 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
