/* {$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;
}

.popup_e87a {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.accordion-stale-a761 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .accordion-stale-a761 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .accordion-stale-a761 {
        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 */
.main_prev_2be8 {
    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);
}

.layout-gold-a216 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .layout-gold-a216 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .backdrop_aa09 {
        grid-column: 1;
    }
    
    .mask_bc7c {
        grid-column: 2;
    }
    
    .footer_orange_6091 {
        grid-column: 3;
    }
}

.backdrop_aa09 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.backdrop_aa09:hover img {
    transform: scale(1.05);
}

/* Navigation */
.disabled_over_d2a8 {
    display: none;
}

@media (min-width: 1024px) {
    .disabled_over_d2a8 {
        display: block;
    }
}

/* Grouped Navigation */
.paragraph-2dce {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tag-184a {
    position: relative;
}

.light-ed01 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.tag-184a .dim-2e45 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.dim-2e45 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.accordion-56da {
    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;
}

.accordion-56da:hover,
.accordion-56da.fn-active-1d32 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.status_upper_f47a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .status_upper_f47a {
        display: flex;
    }
}

/* Mobile Register Button */
.mask_bc7c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .mask_bc7c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.status-upper-893d {
    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;
}

.status-upper-893d::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 */
.footer_orange_6091 {
    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) {
    .footer_orange_6091 {
        display: none;
    }
}

.footer_orange_6091 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.footer_orange_6091.fn-active-1d32 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.footer_orange_6091.fn-active-1d32 span:nth-child(2) {
    opacity: 0;
}

.footer_orange_6091.fn-active-1d32 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.message_center_62d2 {
    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;
}

.message_center_62d2.fn-active-1d32 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.aside_south_3268 {
    overflow: hidden;
}

.surface-af01 {
    list-style: none;
    padding: 0.75rem 0;
}

.list_29ca {
    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;
}

.list_29ca:hover,
.list_29ca.fn-active-1d32 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.list_29ca.cool-c909 {
    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;
}

.list_29ca.cool-c909::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 */
.in-ec13 {
    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;
}

.paper-f0e4 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.paper-f0e4:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.highlight_e9a5 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.highlight_e9a5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.cold-b56b {
    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;
}

.cold-b56b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.complex-6dff {
    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;
}

.focus_0d95 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.focus_0d95:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.white-688e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.white-688e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.media_6683 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.media_6683: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);
}

.gradient-white-4da6 {
    font-size: 1em;
    font-weight: 700;
}

.progress-b0a8 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.shade-471d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.shade-471d::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;
}

.dynamic_a49d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .dynamic_a49d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.white_5ef5 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.modal-copper-57f7 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.article_static_895d {
    margin-bottom: 2rem;
}

.container_d1cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .container_d1cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-ba43 {
    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);
}

.gradient_ba7a {
    font-size: 1.5rem;
}

.frame-west-4547 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.up_fd73 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-warm-4f7c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.logo-warm-4f7c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gold_d57a {
    text-align: center;
    margin-bottom: 3rem;
}

.column-red-9043 {
    margin-bottom: 1rem;
}

.paper-0176 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.dropdown_over_c19f {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dropdown_over_c19f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .dropdown_over_c19f.paragraph_upper_7130 {
        direction: rtl;
    }
    
    .dropdown_over_c19f.paragraph_upper_7130 > * {
        direction: ltr;
    }
}

.frame_paper_1fc2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.frame_paper_1fc2:first-child {
    margin-top: 0;
}

.black-047b {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.image-glass-56a8 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.image-glass-56a8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.section_wide_5402 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_wide_5402 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_slow_b251 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.left_a987 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.menu_yellow_561e {
    list-style: none;
}

.menu_yellow_561e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu_yellow_561e li:last-child {
    border-bottom: none;
}

/* Games Features */
.block-eb72 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.label-a7e9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.solid-9fe5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-top-f8d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.button_action_f37f {
    margin: 2rem 0;
}

.gallery-c702 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.notification-tiny-31b5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.fresh_3553 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tertiary_narrow_e719 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.grid_huge_c5f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_huge_c5f1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_dirty_67c9 {
    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);
}

.header_dirty_67c9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.red_ad16 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.notification_hot_b14e {
    font-size: 1.5rem;
}

.element_clean_ffbc {
    color: var(--accent-color);
    margin: 0;
}

.summary_bottom_d5a1 {
    list-style: none;
}

.summary_bottom_d5a1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.summary_bottom_d5a1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.hidden_black_7990 {
    margin: 2rem 0;
}

.middle-2d98 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hover-46bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hover-46bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-1df6 {
    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);
}

.notice_complex_556d {
    font-size: 1.25rem;
}

.orange_0bfe {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.modal_4abe,
.down_9526 {
    text-align: center;
    margin: 2rem 0;
}

.fresh_e0d7,
.slider_pink_6b03 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.grid_advanced_b83b {
    margin: 2rem 0;
    text-align: center;
}

.mask-57f8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mask-57f8::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;
}

.inner_4c66 {
    position: relative;
    z-index: 1;
}

.border_bd59 {
    margin-bottom: 1rem;
}

.widget_first_7f9b {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.overlay-hard-77cf {
    margin-bottom: 3rem;
}

.article-paper-9392 {
    margin-top: 3rem;
}

.hover_013b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hover_013b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_013b .active-ba43 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_dd9e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean-acf9 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.picture-6ad2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.secondary-313d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .secondary-313d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary-313d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.card-cf3e {
    margin-bottom: 1rem;
}

.notice_da3e img {
    margin-bottom: 1rem;
}

.purple-d4f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-84bc {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.paragraph-light-9f9d {
    list-style: none;
}

.paragraph-light-9f9d li {
    margin-bottom: 0.5rem;
}

.paragraph-light-9f9d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.paragraph-light-9f9d a:hover {
    color: var(--accent-color);
}

.backdrop_dim_e765 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hover_c3ed {
    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);
}

.hover_c3ed:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.title_middle_3d8a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.title_middle_3d8a p {
    margin-bottom: 0.25rem;
}

.accordion-wide-2fdd {
    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) {
    .accordion-wide-2fdd {
        flex-direction: row;
    }
}

.module-old-a756 {
    text-align: center;
}

@media (min-width: 768px) {
    .module-old-a756 {
        text-align: left;
    }
}

.module-old-a756 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.north-5498 {
    font-size: 0.75rem !important;
}

.badge_basic_1ec2 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.widget_99bd {
    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);
    }
}

.heading-0b4d {
    animation: fadeInUp 0.6s ease-out;
}

.silver_3eec {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.inner-8e03 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .inner-8e03 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.complex_7ad4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex_7ad4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-10f7 {
    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);
}

.row-10f7 .solid-9fe5 {
    font-size: 1.25rem;
}

.row-10f7 .chip_f53a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary-focused-f5a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary-focused-f5a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro_1c32 {
    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);
}

.pro_1c32:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_stone_27b0 {
    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);
}

.focus_0de7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.border-soft-70ca {
    color: var(--text-gray);
    line-height: 1.6;
}

.short_4541 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static_b6b6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.static_b6b6 .widget-top-f8d7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.static_b6b6 .description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-c6df {
    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);
}

.alert_prev_7037 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.alert_prev_7037 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.alert_prev_7037 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.filter-green-bafb {
    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);
}

.advanced-99dd {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notification-cf58 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification-cf58 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.notification-cf58 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);
}

.notification-cf58 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.notification-cf58 input::placeholder {
    color: var(--text-muted);
}

.gallery-5271 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery_rough_3b7f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.gallery_rough_3b7f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.stale-0168 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.stale-0168:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hover-46bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-46bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-1df6 {
    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);
}

.dynamic-1df6 .notice_complex_556d {
    font-size: 1.25rem;
}

.dynamic-1df6 .orange_0bfe {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.breadcrumb-e5c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-hovered-58b7 {
    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);
}

.popup-hovered-58b7 .solid-9fe5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-hovered-58b7 .widget-top-f8d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-hovered-58b7 .description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-d167 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic_9036 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic_9036 .south-cb98 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic_9036 .alert_33a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_medium_7400 {
    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);
}

.tag-0377 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag-0377 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-clean-3670 {
    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);
}

.link-clean-3670:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_7bb2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.east-44e3 {
    flex: 1;
}

.top-7cb8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status_action_4f5b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lite_e938 {
    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);
}

.lite_e938:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.accordion_easy_72fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_easy_72fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected_f6c7 {
    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);
}

.selected_f6c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_ceaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-thick-822a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tag-gas-bd58 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.feature_inner_6935 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.narrow_8f6f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-07a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-afd8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pro-afd8 .narrow-0eb0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro-afd8 .large-dbb3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_a037 {
    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);
}

.form_prev_82c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-d2b9 {
    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);
}

.complex-d2b9 .solid-9fe5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex-d2b9 .widget-top-f8d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex-d2b9 .description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion_4473 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_4473 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_90ce {
    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);
}

.texture_90ce:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.north-1d46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north-1d46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_pink_a3a0 {
    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);
}

.sort_pink_a3a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small-0007 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-hard-547d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-tiny-31b5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.active-0b38 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.yellow_70b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough-28d5 {
    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);
}

.rough-28d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-current-fc60 {
    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);
}

.fresh-5e7b {
    flex: 1;
}

.carousel_inner_ab52 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.picture_medium_e47b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.dark-619a {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_clean_42f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_940e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_940e .south-cb98 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop_940e .alert_33a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down_9526 {
    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);
}

.overlay_549a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_549a {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.bottom-0a05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom-0a05 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_large_378f {
    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);
}

.breadcrumb_large_378f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over-f55c {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-thick-9148 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header_3678 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.short_4174 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.overlay_brown_ba75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-east-e5ed {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight-0ae5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_warm_4f6a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.over_e1f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_prev_82c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-d2b9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.complex-d2b9 .widget-top-f8d7 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.complex-d2b9 .description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-a692 {
    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);
}

.picture-over-ed95 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-over-ed95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-over-ed95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-92f7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.chip-92f7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_b81b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.full_bf73 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.avatar_defd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.breadcrumb-brown-3300 {
    padding: 1.5rem;
}

.active_819e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-1875 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-1875 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;
}

.card-1875 li:last-child {
    border-bottom: none;
}

.card-1875 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.gradient_upper_677c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_upper_677c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_pro_ee9c {
    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);
}

.tag_pro_ee9c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.brown_431e {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_action_8871 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sort_top_a857 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.table_hard_ee06 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fixed_8bf6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown-0e4c {
    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);
}

.form_plasma_2447 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-smooth-21e6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood_6ca8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-70b7 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.widget-de7e {
    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);
}

.component_brown_4240 {
    text-align: center;
}

.title-cf28 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.small-6102 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider-1a36 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected_a1d6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected_a1d6 .widget-top-f8d7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.selected_a1d6 .description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.brown-aa7a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .brown-aa7a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown-aa7a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-4fee {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel-4fee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-fresh-d6d1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_f08e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget-top-f8d7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.lower-5533 {
    padding: 1.5rem;
}

.description-north-1df9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sort-south-f818 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-south-f818 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;
}

.sort-south-f818 li:last-child {
    border-bottom: none;
}

.sort-south-f818 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.widget-72e9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.photo_2a43 {
    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);
}

.photo_2a43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-5bfd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_dirty_b2ab {
    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);
}

.block_stone_27b0 {
    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;
}

.focus_0de7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border-soft-70ca {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-prev-c7b7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-a88b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-warm-5a17 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer_70e0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.list_pressed_cf50 {
    display: flex;
    gap: 1rem;
}

.list_pressed_cf50 .accordion_cfd0 {
    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;
}

.out_3615 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.red_ed0b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.simple_9b54 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple_9b54 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;
}

.simple_9b54 li:last-child {
    border-bottom: none;
}

.simple_9b54 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.logo_1991 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo_1991 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo_1991 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_purple_1a6c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.progress_purple_1a6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel_1b2b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.logo_83a1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.narrow-0eb0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.hidden_purple_a003 {
    font-size: 1rem;
}

.slow-85d3 {
    padding: 1.5rem;
}

.large-dbb3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.row-5bcb {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.row-5bcb .component_brown_4240 {
    text-align: center;
}

.row-5bcb .small-6102 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.row-5bcb .frame_out_fe55 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dropdown-a4c0 {
    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);
}

.dropdown-a4c0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.element-bc61 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-bc61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-huge-a87b {
    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);
}

.pattern-huge-a87b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_prev_e8de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough-c4ce {
    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);
}

.paper-8b0e {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel-cool-2bf5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_center_5397 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-a41f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gas-1770 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-77ed {
    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);
}

.component-black-22ee {
    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;
}

.component-black-22ee.blue_fe7a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.component-black-22ee.south-8fff {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.component-black-22ee.notice_warm_6944 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.component-black-22ee.paragraph-c438 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.component-black-22ee.table_tiny_34b5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.secondary-8552 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.over-4767 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_outer_666e {
    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);
}

.list-medium-5569 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.over-d167 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.over-d167 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;
}

.over-d167 li:last-child {
    border-bottom: none;
}

.over-d167 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.east_2a80 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .east_2a80 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east_2a80 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite_53df {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite_53df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite_53df.border_stale_f229 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .lite_53df.border_stale_f229 {
        grid-column: span 3;
    }
}

.shade-bright-80b5 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.lite_53df.border_stale_f229 .shade-bright-80b5 {
    background: rgba(6, 182, 212, 0.1);
}

.aside-complex-fdff {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mini-8fab {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.lite_53df.border_stale_f229 .mini-8fab {
    color: var(--info-color);
}

.footer-73c9 {
    padding: 1.5rem;
    text-align: center;
}

.top-5891 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.lite_53df.border_stale_f229 .top-5891 {
    color: var(--info-color);
}

.sort-d625 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.first_d071 {
    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 */
.accent-03ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-03ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-upper-fc72 {
    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);
}

.sort-upper-fc72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.silver_dd53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-hovered-58b7 {
    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);
}

.notice_complex_556d {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_27e5 {
    flex: 1;
}

.middle-2d98 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thumbnail_abc1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_8f7f {
    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);
}

.yellow_5f03 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.rough-5dc2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.widget_99bd {
    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);
}

.pagination_6c90 {
  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);
}

.pagination_6c90 .component_brown_4240 {
    text-align: center;
}

.pagination_6c90 .title-cf28 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.pagination_6c90 .small-6102 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gradient_fe44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_prev_8201 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-f760 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-prev-d627 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description-0248 {
    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);
}

.gradient-blue-a967 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.new-b145 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_2d71 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed_2d71 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_2d71 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_df9d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.down_df9d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section-mini-9f7a {
    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);
}

.out-24f2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pressed-832c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shade-bd05 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shade-bd05.slow-f3a0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.shade-bd05.fixed-f93f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.shade-bd05.notification_169f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.easy-847a {
    padding: 1.5rem;
    text-align: center;
}

.tertiary_dc74 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dirty-785e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dirty-785e .medium-24b7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.table_yellow_5d6a {
    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);
}

.table_yellow_5d6a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slow-3f96 {
  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);
}

.avatar_light_cd36 {
    text-align: center;
}

.avatar_light_cd36 .title-cf28 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.avatar_light_cd36 .small-6102 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.container-old-8307 { text-align: center; }
.primary_stale_3ccf { text-align: left; }
.item_fd5b { text-align: right; }

.nav-in-c21b { margin-bottom: 0; }
.summary-stale-9ced { margin-bottom: 0.5rem; }
.icon-7ad8 { margin-bottom: 1rem; }
.dropdown_next_dfea { margin-bottom: 1.5rem; }
.label_next_3ea4 { margin-bottom: 2rem; }

.article-50aa { margin-top: 0; }
.title-80e0 { margin-top: 0.5rem; }
.secondary_9c91 { margin-top: 1rem; }
.surface-old-04b2 { margin-top: 1.5rem; }
.lite-bee7 { margin-top: 2rem; }

.fn-hidden-1d32 { display: none; }
.fn-visible-1d32 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .shade-471d {
        padding: 6rem 0 3rem;
    }
    
    .dynamic_a49d {
        text-align: center;
    }
    
    .dropdown_over_c19f {
        text-align: center;
    }
    
    .container_d1cd {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .main_prev_2be8,
    .message_center_62d2,
    .mask-57f8,
    .picture-6ad2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .shade-471d {
        background: none;
    }
}

/* Providers Section */
.middle_2331 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_right_fc64 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_right_fc64 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame_right_fc64 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-8a16 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.description-8a16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard-523b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.list_inner_1d95 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hot-5505 {
    list-style: none;
    padding: 0;
}

.hot-5505 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hot-5505 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wide_52b3 {
    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);
}

.wide_52b3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.texture_top_e9bc {
    padding: var(--section-padding);
}

.texture_fixed_1b48 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_fixed_1b48 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-a6c4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outline-a6c4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bronze-6b37 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-fixed-30ba {
    display: flex;
    flex-direction: column;
}

.sidebar_767e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.badge_63d4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-42c4 {
    color: var(--accent-color);
}

.action_d636 {
    font-size: 1.25rem;
}

.active_6334 {
    margin-bottom: 1rem;
}

.active_6334 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.small_0437 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.widget-138f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.component_brown_4240 {
    text-align: center;
}

.title-cf28 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.small-6102 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.new-6150 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm-e85d {
    margin: 2rem 0;
}

.hover_focused_bd45 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.hover_focused_bd45 .solid-9fe5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_64b1 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.card_d78e {
    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;
}

.card_d78e:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_hovered_0bba {
    font-size: 2rem;
}

.primary_top_8d1d {
    display: flex;
    flex-direction: column;
}

.title-left-0304 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.box-current-93ad {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.rough-0a1e {
    padding: var(--section-padding);
}

.hero-44a4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero-44a4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-44a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-1fea {
    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);
}

.label-1fea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label-1fea .title-cf28 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.label-1fea .small-6102 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.label-1fea .silver_07e2 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.breadcrumb-focused-61b5 {
    margin-top: 4rem;
}

.progress-4ed1 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.accent_soft_8bb0 {
    overflow-x: auto;
}

.widget_5f02 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.widget_5f02 thead {
    background: var(--accent-color);
}

.widget_5f02 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.widget_5f02 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_5f02 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.widget_5f02 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.stone-7734 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-motion-acac {
    max-width: 900px;
    margin: 0 auto;
}

.title-lite-dd74 {
    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);
}

.title-lite-dd74:hover {
    border-color: var(--accent-color);
}

.layout_dirty_3305 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.layout_dirty_3305 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.thumbnail_blue_329c {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.title-lite-dd74.fn-active-1d32 .thumbnail_blue_329c {
    transform: rotate(45deg);
}

.pink_0679 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.title-lite-dd74.fn-active-1d32 .pink_0679 {
    max-height: 1000px;
}

.pink_0679 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.logo_clean_66ad {
    padding: var(--section-padding);
}

.alert_prev_7037 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.surface_70b6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_7ed5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_7ed5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-f708 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas_eb03 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.menu_wide_26c5 {
    font-size: 2rem;
}

.row-under-c64f {
    color: var(--text-white);
    margin: 0;
}

.panel_36b6 {
    list-style: none;
    padding: 0;
}

.panel_36b6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel_36b6 li:last-child {
    border-bottom: none;
}

.hidden_59c5 {
    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);
}

.hidden_59c5 p {
    color: var(--success-color);
    margin: 0;
}

.popup_fixed_609d {
    margin-top: 3rem;
}

.red_ed0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-95f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .card-95f9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero_pro_7299 {
    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);
}

.bottom-2249 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero_pro_7299 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.disabled_227b {
    padding: var(--section-padding);
}

.accent_wide_aab9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_wide_aab9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_e097 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo_e097:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fresh-0a83 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hover-pink-4757 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.photo_white_8a7f {
    flex: 1;
}

.container-06ae {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.dropdown-2cd4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.header_d5c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.copper-64a0 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copper-64a0:last-child {
    border-bottom: none;
}

/* Comparison Section */
.cold-8376 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dim_0b94 {
    padding: var(--section-padding);
}

.filter_black_0008 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.title_thick_7c98 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_thick_7c98 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-adb9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-large-6ef1, .avatar-65d8, .basic-af47 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.basic-af47 {
    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 */
.tabs-651f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_hovered_6c14 {
    margin: 2rem 0;
}

.message-102e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-gas-9e59 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.short-f6b5 {
    list-style: none;
    padding: 0;
}

.short-f6b5 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;
}

.short-f6b5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.short-f6b5 li:last-child {
    border-bottom: none;
}

.focus_simple_611d {
    text-align: center;
    margin-top: 2rem;
}

.small-e69f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.notification-paper-726a {
    padding: var(--section-padding);
}

.shade-bottom-e292 {
    margin: 2rem 0;
}

.rough_25a3 {
    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) {
    .rough_25a3 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rough_25a3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_basic_9a21 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.text-selected-c8cf {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.feature_stone_2056 {
    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;
}

.outline_fluid_ab46 {
    flex: 1;
}

.title_19f4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.aside-77af {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.east-775a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.content_17dd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .content_17dd {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.hidden_lower_c6b2 {
    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);
}

.hidden_lower_c6b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden_lower_c6b2 .title-cf28 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden_lower_c6b2 .small-6102 {
    color: var(--text-gray);
    font-size: 1rem;
}

.outline-iron-904e {
    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);
}

.slow_54f8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.slow_54f8 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.accent_0ad2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .accent_0ad2 {
        grid-template-columns: 1fr 1fr;
    }
}

.chip_action_0832 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_3efa {
    margin-bottom: 1.5rem;
}

.component_3efa label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.component_3efa input,
.component_3efa 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;
}

.component_3efa input:focus,
.component_3efa select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.status-warm-e12e {
    width: 100%;
    margin-top: 1rem;
}

.wood-e163 {
    display: flex;
    align-items: center;
}

.texture_11b9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.status_yellow_db48 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.alert-e373 {
    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;
}

.accordion-304a {
    color: var(--text-gray);
}

.shadow_2d65 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.mini-065f {
    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);
}

.mini-065f p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.north-73e4 {
    margin-top: 3rem;
}

.advanced_cab2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.gradient-44da {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-b881 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.hard_e47a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard_e47a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.notification_81c0 {
    padding: var(--section-padding);
}

.notice-b7b4 {
    margin: 2rem 0;
}

.grid_top_b9f8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.container_346d {
    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;
}

.container_346d:hover, .container_346d.fn-active-1d32 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.border_761c {
    display: none;
}

.border_761c.fn-active-1d32 {
    display: block;
}

.silver-9609 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner-8b96 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-5be1 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hero-5be1 ul {
    list-style: none;
    padding: 0;
}

.hero-5be1 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hero-5be1 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.right_6e49 {
    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 */
.status-dim-e8c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_under_131b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-paper-4361 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-675b {
    color: var(--accent-color);
    margin: 0;
}

.input_760e {
    display: flex;
    gap: 1.5rem;
}

.modal-3c93 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.glass-ba1a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.notice_7912 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.notice_7912.pro-a6d8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.notice_7912.cool_cbc3 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.notice_7912.description-huge-627e {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.motion_c178 {
    margin-top: 2rem;
}

.up_0891 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.solid_8119 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .solid_8119 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-selected-1436 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.down-f5d1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.north_f395 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.tooltip-bec2 {
    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 */
.widget_47fb {
    padding: var(--section-padding);
}

.active-e5ee {
    margin: 2rem 0;
}

.frame-basic-38e7 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.gradient-glass-2af9 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.feature_1a2e {
    list-style: none;
    padding: 0;
}

.feature_1a2e 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;
}

.feature_1a2e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.feature_1a2e li:last-child {
    border-bottom: none;
}

.form_d15a {
    margin: 2rem 0;
}

.media_current_9f95 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dropdown-clean-c05d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dropdown-clean-c05d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tabs_e803 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink_a8c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header-ff7e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.label-087d {
    margin-top: 2rem;
}

.top-7cb8 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.overlay_601f {
    list-style: none;
    padding: 0;
}

.disabled_smooth_750d {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.disabled_smooth_750d a {
    color: var(--accent-color);
    text-decoration: none;
}

.disabled_smooth_750d a:hover {
    text-decoration: underline;
}

.label_e1fc {
    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 */
.prev_3f96 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_simple_a184 {
    margin: 2rem 0;
}

.frame-cc18 {
    margin-bottom: 3rem;
}

.frame-cc18 .notice-gas-9e59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.component-60e7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.block-first-9d56 {
    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);
}

.block-first-9d56:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.pattern-81f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pattern-81f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-61e0 {
    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 */
.row-680c {
    padding: var(--section-padding);
}

.first-4137 {
    margin: 2rem 0;
}

.pattern_copper_3cbb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tooltip_0086 {
    overflow-x: auto;
    margin: 2rem 0;
}

.slider_c361 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.pagination_south_eaf9 {
    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;
}

.primary-8405 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.secondary_bronze_57a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .secondary_bronze_57a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-45e7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-45e7 .solid-9fe5 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.out-45e7 .widget-top-f8d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pressed-f26f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.popup_4481 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wood-5217 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wood-5217 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_49f2 {
    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;
}

.shade_49f2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.label_f79d {
    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);
}

.media-f713 {
    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;
}

.dim-9d8f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fluid-f7fa {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.rough_c58f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.carousel_41b9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accent_e24a {
    color: var(--text-white);
    font-weight: 600;
}

.backdrop-b719 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.small_fece {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.small_fece .accordion_cfd0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gas_3b22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gas_3b22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_steel_adc8 {
    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);
}

.menu_steel_adc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.menu_steel_adc8 .title-cf28 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu_steel_adc8 .small-6102 {
    color: var(--text-gray);
    font-size: 1rem;
}

.slow_6a14 {
    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);
}

.main_hard_df31 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.main_hard_df31 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.overlay_brown_ba75 {
    margin: 2rem 0;
}

.block-east-e5ed {
    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);
}

.block-east-e5ed:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.highlight-0ae5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.border-pro-7eb8 {
    flex: 1;
}

.chip_warm_4f6a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.over_e1f0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.form_prev_82c3 {
    margin: 2rem 0;
}

.complex-d2b9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex-d2b9 .widget-top-f8d7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.complex-d2b9 .description-north-1df9 {
    color: var(--text-gray);
    margin: 0;
}

.selected-a692 {
    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);
}

.selected-a692 .fresh_e0d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.pressed-f26f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.footer-current-fc60 {
    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;
}

.fresh-5e7b {
    flex: 1;
}

.picture_medium_e47b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.dark-619a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.block_stone_27b0 {
    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;
}

.down-06a3 {
    flex: 1;
}

.focus_0de7 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.border-soft-70ca {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.form-warm-5a17 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.outer_70e0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.list_pressed_cf50 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.list_pressed_cf50 .accordion_cfd0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.out_3615 {
    margin-top: 2rem;
}

.out_3615 .red_ed0b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.cold_62e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-de7e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-de7e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-de7e .component_brown_4240 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-1a36 {
    margin: 2rem 0;
}

.selected_a1d6 {
    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 */
.complex_ab48 {
    padding: var(--section-padding);
}

.lower-5533 {
    margin-top: 1rem;
}

.sort-south-f818 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.sort-south-f818 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.sort-south-f818 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.menu-rough-e6a8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_medium_b247 {
    margin: 2rem 0;
}

.center-2c90 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.main_1efc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.breadcrumb-active-c26b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.banner-bronze-0964 {
    margin: 2rem 0;
}

.shade_6adf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shade_6adf .notice-gas-9e59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink_57ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pink_57ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.large-05df {
    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);
}

.hero-aaa0 {
    color: var(--text-white);
    font-weight: 600;
}

.out-ff0f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.status_067e {
    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);
}

.status_067e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.fast-368e {
    padding: var(--section-padding);
}

.red_3f66 {
    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;
}

.red_3f66:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.fluid_d96c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fluid_d96c .bottom-2249 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_d96c .heading_purple_bfda {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mask-1901 {
    flex: 1;
}

.nav_5447 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade_92de {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade_92de li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.shade_92de li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.current-4a33 {
    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);
}

.current-4a33 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.current-4a33 strong {
    color: var(--warning-color);
}

/* Slots Section */
.link-easy-b8ed {
    padding: var(--section-padding);
}

.narrow_8f6f {
    margin: 2rem 0;
}

/* Table Games Section */
.silver_6417 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-07a3 {
    margin: 2rem 0;
}

.pro-afd8 {
    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);
}

.pro-afd8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pro-afd8 .narrow-0eb0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro-afd8 .large-dbb3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus_a037 {
    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);
}

.focus_a037 .fresh_e0d7 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.first-bb6b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-f24c {
    margin: 2rem 0;
}

.iron-f4ea {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_be92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.element-5a91 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero_lower_2e53 {
    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);
}

.hero_lower_2e53:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero_lower_2e53.fn-active-1d32 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action-5a5b {
    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);
}

.prev-e64d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.prev-e64d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.texture_4d4a {
    padding: var(--section-padding);
}

.focused-c3ed {
    margin: 2rem 0;
}

.message_bright_465d {
    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);
}

.message_bright_465d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .message_bright_465d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.logo_next_bd6e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.lower-7eaf {
    flex: 1;
}

.secondary-pressed-ed15 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.layout-warm-521c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hero-e305 {
    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;
}

.large-ce81 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.current_0973 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-pro-141b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wide-22d6 {
    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;
}

.wide-22d6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.warm_89bb {
    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);
}

.input-ae2b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input-ae2b strong {
    color: var(--accent-color);
}

/* New Games Section */
.right_9da1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale_91be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .stale_91be {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stale_91be {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-f19d {
    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;
}

.banner-f19d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.primary-soft-7c5d {
    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;
}

.slider-c062 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.text-east-d31f {
    font-size: 2rem;
}

.new-92f6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.label-bf0a {
    flex: 1;
}

.texture_c0e6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.input_9d3a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.liquid-f874 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form_e01f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar_selected_20ca {
    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;
}

.glass-869b {
    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;
}

.glass-869b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.link-f5d4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper-ca2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-top-808e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .item-top-808e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic_6f9b {
    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);
}

.selected_964e {
    color: var(--text-white);
    font-weight: 600;
}

.text_pink_3186 {
    color: var(--accent-color);
    font-weight: 600;
}

.logo_660e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.logo_660e strong {
    color: var(--accent-color);
}

/* Security Section */
.tertiary_easy_0837 {
    padding: var(--section-padding);
}

/* Benefits Section */
.content_old_e3f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.breadcrumb-top-8cc9 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.preview_61de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_1c0c {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.progress_249f {
    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) {
    .progress_249f {
        flex-direction: column;
        gap: 1rem;
    }
}

.progress_249f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.progress_249f .block_stone_27b0 {
    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;
}

.progress_249f .down-06a3 {
    flex: 1;
}

.progress_249f .focus_0de7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.progress_249f .border-soft-70ca {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.video_ccbe {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_ccbe .middle-2d98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_ccbe .breadcrumb-e5c0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_ccbe .breadcrumb-e5c0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video_ccbe .breadcrumb-e5c0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.active-b5ee {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.paragraph-left-0263 {
    padding: var(--section-padding);
}

.wide-6097 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .wide-6097 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected-6d79 {
    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);
}

.selected-6d79:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.selected-6d79 .list_b98f {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected-6d79 .paragraph-f8dd {
    flex: 1;
}

.selected-6d79 .south-cb98 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.selected-6d79 .button-wide-51df {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.last-e1dc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-e1dc .header-smooth-7636 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.last-e1dc .article-rough-0389 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.last-e1dc .article-rough-0389 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);
}

.last-e1dc .article-rough-0389 li:last-child {
    border-bottom: none;
}

.last-e1dc .article-rough-0389 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;
}

.last-e1dc .article-rough-0389 li strong {
    color: var(--text-white);
}

.next_d261 {
    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);
}

.next_d261 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.next_d261 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.tooltip_new_4c5a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-6e59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .small-6e59 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.yellow-76ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.yellow-76ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.prev-1eeb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery_2cc2 {
    font-size: 2rem;
}

.cold-4466 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hover_4748 {
    flex: 1;
}

.tag-99b8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-99b8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tag-99b8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hover_next_5b37 {
    margin-top: 3rem;
}

.frame-basic-38e7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.gradient-glass-2af9 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_1a2e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_1a2e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.feature_1a2e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.feature_1a2e li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.modal_5dd0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel-small-d7c6 {
    margin: 2rem 0;
}

.progress_warm_bb36 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.progress_warm_bb36 .notice-gas-9e59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_medium_9099 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .block_medium_9099 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary-clean-f8fe {
    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);
}

.primary-clean-f8fe:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.feature_fast_1b6f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tag-eeb3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.table-864e {
    padding: var(--section-padding);
}

.cold-ca7a {
    margin: 2rem 0;
}

.mask_f994 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .mask_f994 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_f994 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-2f6c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-2f6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.north_465d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.large-b1e6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.in-05ab {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.in-05ab.gradient-f254 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.link_ee18 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.prev_cd00 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.section-fddd {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article_fluid_50ed {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_8517 {
    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);
}

.frame_8517 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_8517 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.detail-3231 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-0dde {
    margin: 2rem 0;
}

.purple-0b4c {
    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) {
    .purple-0b4c {
        flex-direction: column;
        gap: 1rem;
    }
}

.purple-0b4c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.purple-0b4c::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);
}

.info-out-17d3 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.form_small_9d34 {
    flex: 1;
}

.link-14aa {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blue_a66d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue_a66d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary_3524 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_eb59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column_paper_ed3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .column_paper_ed3e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper_1a7f {
    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);
}

.button-1b31 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lower-b662 {
    flex: 1;
}

.surface-ff24 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.content-4533 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.item-2106 {
    margin-top: 2rem;
    text-align: center;
}

.button-lower-e3e4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button-lower-e3e4 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.element-bc61 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-bc61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-huge-a87b {
    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);
}

.pattern-huge-a87b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pattern-huge-a87b .brown_431e {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-huge-a87b .focus_action_8871 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.pattern-huge-a87b .sort_top_a857 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.pattern-huge-a87b .table_hard_ee06 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.paper_9b90 {
    padding: var(--section-padding);
}

.rough-c4ce .button_tall_8354 {
    flex: 1;
}

/* Promo Calendar Section */
.glass_3777 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_66c3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic_66c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-huge-b8e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_f6eb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.focus_plasma_5ef3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.under-de1d {
    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);
}

.row-e462 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-focused-5c97 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.wood_bf9c {
    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);
}

.wood_bf9c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wood_bf9c strong {
    color: var(--accent-color);
}

/* Requirements Section */
.accordion-d6ff {
    padding: var(--section-padding);
}

.rough-40c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .rough-40c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left-af95 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_new_134f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame_cad7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_cad7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.status_down_7b0b {
    margin-top: 3rem;
}

.status_down_7b0b .frame-basic-38e7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.status_down_7b0b .gradient-glass-2af9 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status_down_7b0b .feature_1a2e {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.status_down_7b0b .feature_1a2e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.status_down_7b0b .feature_1a2e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.status_down_7b0b .feature_1a2e li strong {
    color: var(--warning-color);
}

.upper-4fd0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.upper-4fd0 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.icon_360b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_4dc5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .in_4dc5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-pink-6044 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-pink-6044 .notice-gas-9e59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline_d6d7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accent-af1e {
    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);
}

.accent-af1e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled-glass-4b11 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-ad69 {
    flex: 1;
}

.outer-9ee5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.secondary_3d40 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.purple-38d6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.warm_4212 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video_blue_5893 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .video_blue_5893 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-pressed-f75b {
    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);
}

.thumbnail-pressed-f75b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy_2ea3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.narrow_970b {
    color: var(--text-gray);
    font-size: 1rem;
}

.slow_54f8 {
    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);
}

.accordion-5530 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.accordion-5530 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.accordion-stale-a761 { 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; }
.logo-warm-4f7c, .image-glass-56a8 { max-width:100%; height:auto; }

.in-ec13, .cold-b56b, .complex-6dff { white-space:normal; }

.dynamic_a49d,
.dropdown_over_c19f,
.accent-03ce,
.element-bc61,
.form_prev_82c3,
.fixed_2d71 {
  flex-wrap:wrap;
}

[class*="grid"],
.video_blue_5893,
.mask_f994,
.hover_013b {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.shade-471d img,
.dropdown_over_c19f img,
.up_fd73 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.white_5ef5, .modal-copper-57f7,
.column-red-9043, .paper-0176 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.accent_soft_8bb0 { width:100%; overflow-x:auto; }
.accent_soft_8bb0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.frame_right_fc64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .frame_right_fc64 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.description-8a16 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.hero-44a4,
.tabs_small_b013,
.thick-7f09,
.label-upper-4fff,
.content_17dd,
.video_blue_5893,
.mask_f994,
.hover_013b,
.slow-3f96,
.focused-c3ed,
.frame_right_fc64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .hero-44a4,
  .tabs_small_b013,
  .thick-7f09,
  .label-upper-4fff,
  .content_17dd,
  .video_blue_5893,
  .mask_f994,
  .hover_013b,
  .slow-3f96,
  .focused-c3ed,
  .frame_right_fc64 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.label-1fea,
.hidden_lower_c6b2,
.thumbnail-pressed-f75b,
.active-ba43,
.shadow-2f6c,
.avatar_light_cd36,
.message_bright_465d,
.description-8a16 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.bright_e180,
.gallery_986d,
.photo-bf40 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.bright_e180 > *,
.gallery_986d > *,
.photo-bf40 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4f80 */
.shadow-element-o4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
