/* {$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;
}

.orange_84c2 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.status_pink_8480 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .status_pink_8480 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .status_pink_8480 {
        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 */
.widget_fast_af9e {
    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);
}

.cool-93bd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .cool-93bd {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dynamic_8d38 {
        grid-column: 1;
    }
    
    .background-bright-2c77 {
        grid-column: 2;
    }
    
    .chip-53ea {
        grid-column: 3;
    }
}

.dynamic_8d38 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dynamic_8d38:hover img {
    transform: scale(1.05);
}

/* Navigation */
.heading-ef1e {
    display: none;
}

@media (min-width: 1024px) {
    .heading-ef1e {
        display: block;
    }
}

/* Grouped Navigation */
.narrow-0826 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.carousel_86a9 {
    position: relative;
}

.component-static-f3db {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.carousel_86a9 .modal-e705 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.modal-e705 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.media-warm-5ad3 {
    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;
}

.media-warm-5ad3:hover,
.media-warm-5ad3.fn-active-4999 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.filter-e1e9 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .filter-e1e9 {
        display: flex;
    }
}

/* Mobile Register Button */
.background-bright-2c77 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .background-bright-2c77 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.progress_7ed4 {
    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;
}

.progress_7ed4::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 */
.chip-53ea {
    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) {
    .chip-53ea {
        display: none;
    }
}

.chip-53ea span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.chip-53ea.fn-active-4999 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.chip-53ea.fn-active-4999 span:nth-child(2) {
    opacity: 0;
}

.chip-53ea.fn-active-4999 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.lower-3c17 {
    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;
}

.lower-3c17.fn-active-4999 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.box_58a2 {
    overflow: hidden;
}

.hover_purple_a326 {
    list-style: none;
    padding: 0.75rem 0;
}

.article-easy-3e9f {
    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;
}

.article-easy-3e9f:hover,
.article-easy-3e9f.fn-active-4999 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.article-easy-3e9f.liquid_5ab6 {
    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;
}

.article-easy-3e9f.liquid_5ab6::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 */
.title_narrow_f4ca {
    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;
}

.slow-165f {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.slow-165f:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.logo-out-d886 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.logo-out-d886:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focused_e9c8 {
    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;
}

.focused_e9c8:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.clean-56db {
    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;
}

.article_short_0081 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.article_short_0081:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.icon_active_5a36 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.icon_active_5a36:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.alert-bronze-4e23 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.alert-bronze-4e23: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);
}

.panel-a12f {
    font-size: 1em;
    font-weight: 700;
}

.brown-83f7 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.thick_c49f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.thick_c49f::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;
}

.carousel_hot_27ec {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .carousel_hot_27ec {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.detail-static-8fa3 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.breadcrumb-8353 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.main-complex-85cb {
    margin-bottom: 2rem;
}

.action_51fc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .action_51fc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide-7d23 {
    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);
}

.backdrop-7163 {
    font-size: 1.5rem;
}

.small_ed92 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.warm-5883 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-9e95 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.title-9e95:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hover-6842 {
    text-align: center;
    margin-bottom: 3rem;
}

.video_mini_7140 {
    margin-bottom: 1rem;
}

.item-2bbf {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.row_action_d7f3 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .row_action_d7f3 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .row_action_d7f3.column-17e6 {
        direction: rtl;
    }
    
    .row_action_d7f3.column-17e6 > * {
        direction: ltr;
    }
}

.east-d770 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.east-d770:first-child {
    margin-top: 0;
}

.button_a319 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.description-ee7f {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.description-ee7f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.fresh_056c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh_056c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag-ea47 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_rough_0805 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.article_easy_afc8 {
    list-style: none;
}

.article_easy_afc8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article_easy_afc8 li:last-child {
    border-bottom: none;
}

/* Games Features */
.fast_6c18 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.background-5f6d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.popup-tiny-b9d7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_c406 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.bright_8b62 {
    margin: 2rem 0;
}

.active-lower-e9be {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.nav-bronze-b6f9 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.list_steel_12b9 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.smooth_f0d6 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.overlay-under-25c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-under-25c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_5a94 {
    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);
}

.nav_5a94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.table-a647 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.button-full-daeb {
    font-size: 1.5rem;
}

.hover-east-3952 {
    color: var(--accent-color);
    margin: 0;
}

.summary_db4c {
    list-style: none;
}

.summary_db4c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.summary_db4c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.left-c8a1 {
    margin: 2rem 0;
}

.bronze-c4f1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.accent-pink-46fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .accent-pink-46fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_6e76 {
    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);
}

.list_dc05 {
    font-size: 1.25rem;
}

.input_4fe9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.tag_basic_e86e,
.west-e1ea {
    text-align: center;
    margin: 2rem 0;
}

.item-outer-b335,
.lite_c4cb {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.footer-b20e {
    margin: 2rem 0;
    text-align: center;
}

.nav_9e4f {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav_9e4f::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;
}

.tiny_af26 {
    position: relative;
    z-index: 1;
}

.shade-b26e {
    margin-bottom: 1rem;
}

.logo_small_db5f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.element_center_32cb {
    margin-bottom: 3rem;
}

.backdrop-orange-34bd {
    margin-top: 3rem;
}

.outer_f021 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .outer_f021 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_f021 .wide-7d23 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.icon-static-a62a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard-e94f {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.thick_c4db {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.detail-e1d5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .detail-e1d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-e1d5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.border-7987 {
    margin-bottom: 1rem;
}

.box-wood-cfcd img {
    margin-bottom: 1rem;
}

.banner-smooth-67bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-cold-4c4d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.summary-outer-b986 {
    list-style: none;
}

.summary-outer-b986 li {
    margin-bottom: 0.5rem;
}

.summary-outer-b986 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.summary-outer-b986 a:hover {
    color: var(--accent-color);
}

.copper_86e7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.accent_0513 {
    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);
}

.accent_0513:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.mask-b23f {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.mask-b23f p {
    margin-bottom: 0.25rem;
}

.paragraph_in_ea80 {
    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) {
    .paragraph_in_ea80 {
        flex-direction: row;
    }
}

.hidden_df4d {
    text-align: center;
}

@media (min-width: 768px) {
    .hidden_df4d {
        text-align: left;
    }
}

.hidden_df4d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notification_gas_8328 {
    font-size: 0.75rem !important;
}

.carousel-mini-0b11 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_complex_d047 {
    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);
    }
}

.primary-57f8 {
    animation: fadeInUp 0.6s ease-out;
}

.search-tiny-d23f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.column-first-bfd5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-first-bfd5 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.disabled-6855 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-6855 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm-a0fa {
    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);
}

.warm-a0fa .popup-tiny-b9d7 {
    font-size: 1.25rem;
}

.warm-a0fa .hero_3bf4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.banner-steel-480b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-steel-480b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_2251 {
    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);
}

.icon_2251:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass_4f05 {
    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);
}

.shadow-8d87 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.progress_narrow_81d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-2147 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short-6656 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.short-6656 .active_c406 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-6656 .dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_gas_49d3 {
    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);
}

.small_fa1d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.small_fa1d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.small_fa1d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.narrow-cfda {
    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);
}

.dropdown-3d9c {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status_b364 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status_b364 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.status_b364 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);
}

.status_b364 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.status_b364 input::placeholder {
    color: var(--text-muted);
}

.brown_93c6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag_liquid_f4e9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.tag_liquid_f4e9 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.element-full-3b12 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.element-full-3b12:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.accent-pink-46fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-pink-46fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_6e76 {
    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);
}

.yellow_6e76 .list_dc05 {
    font-size: 1.25rem;
}

.yellow_6e76 .input_4fe9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.sidebar_89bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_c743 {
    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);
}

.smooth_c743 .popup-tiny-b9d7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth_c743 .active_c406 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth_c743 .dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_c378 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed_53a7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed_53a7 .paper_fc8f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed_53a7 .surface-dark-53b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_3e44 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_pink_b614 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel_pink_b614 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_7955 {
    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);
}

.accent_7955:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_outer_e3b0 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.container_b6ab {
    flex: 1;
}

.center_f31a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hero_79c0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shadow_f57a {
    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);
}

.shadow_f57a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.image_fluid_784d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_fluid_784d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-5322 {
    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);
}

.wood-5322:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-726d {
    font-size: 2rem;
    flex-shrink: 0;
}

.soft_ecbb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.banner_green_8ded {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.motion_3619 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.caption-675b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-131e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-76d3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-76d3 .orange_0536 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-76d3 .gallery-47ed {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-center-fbca {
    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);
}

.status_3976 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-2b94 {
    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);
}

.dynamic-2b94 .popup-tiny-b9d7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dynamic-2b94 .active_c406 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dynamic-2b94 .dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_bottom_f342 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_bottom_f342 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_fast_69ac {
    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);
}

.menu_fast_69ac:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.frame-aa57 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-aa57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-8809 {
    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);
}

.cold-8809:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_dirty_15f6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-a3f0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-bronze-b6f9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.section-bronze-c5bf {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.search_fluid_38ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark_65e2 {
    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);
}

.dark_65e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper-5f09 {
    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);
}

.breadcrumb-large-c211 {
    flex: 1;
}

.dynamic-9661 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.paragraph_5cb1 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.active-8aa6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list-e305 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-f688 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-f688 .paper_fc8f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink-f688 .surface-dark-53b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west-e1ea {
    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);
}

.mask-blue-11d3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-blue-11d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.tag_last_9ed1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_last_9ed1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-right-a12c {
    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);
}

.input-right-a12c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-351e {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange_0b40 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.new_32ad {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outer_f7a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pagination_e3d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-pro-966f {
    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);
}

.fixed_e090 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick_458e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link_pro_dac3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_3976 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-2b94 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.dynamic-2b94 .active_c406 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-2b94 .dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_brown_554e {
    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);
}

.shadow_4b0c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow_4b0c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_4b0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_28e5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.alert_28e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_cdb3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.form_e2bb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_8632 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.easy_f6ff {
    padding: 1.5rem;
}

.tertiary-baba {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gold_6341 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold_6341 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;
}

.gold_6341 li:last-child {
    border-bottom: none;
}

.gold_6341 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.table-794c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-794c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_static_69e0 {
    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);
}

.hidden_static_69e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_plasma_6621 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_dark_8904 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.block_last_009b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article_cold_dcdb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.link_a5f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-8074 {
    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);
}

.simple-ed55 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-glass-fd35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal_glass_d9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced-82ff {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.filter_pro_fc49 {
    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);
}

.detail-middle-f68d {
    text-align: center;
}

.icon_middle_b358 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_top_c394 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout_10d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool-3685 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-3685 .active_c406 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool-3685 .dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_complex_74a7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel_complex_74a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_complex_74a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_complex_c944 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer_complex_c944:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center-61f6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.notification_ff74 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_c406 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.search_4006 {
    padding: 1.5rem;
}

.dim-18d1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert-active-2fd1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-active-2fd1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.alert-active-2fd1 li:last-child {
    border-bottom: none;
}

.alert-active-2fd1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.nav-d71e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.paragraph-d787 {
    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);
}

.paragraph-d787:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_747b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_412a {
    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);
}

.glass_4f05 {
    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;
}

.shadow-8d87 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_narrow_81d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-85c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs-center-ee05 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth-c81f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu_white_947d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lite_6f8f {
    display: flex;
    gap: 1rem;
}

.lite_6f8f .wrapper-ab12 {
    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;
}

.black-3566 {
    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);
}

.clean-8837 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accordion_4f17 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion_4f17 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;
}

.accordion_4f17 li:last-child {
    border-bottom: none;
}

.accordion_4f17 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.gradient_upper_10a4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_upper_10a4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_upper_10a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out_b293 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.out_b293:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_bff7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_2dfa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange_0536 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.accordion-4c87 {
    font-size: 1rem;
}

.wrapper_8c03 {
    padding: 1.5rem;
}

.gallery-47ed {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.component_e062 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.component_e062 .detail-middle-f68d {
    text-align: center;
}

.component_e062 .description_top_c394 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.component_e062 .solid-16bd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focus-fresh-9ecc {
    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);
}

.focus-fresh-9ecc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.dropdown-short-bc00 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-short-bc00 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-4da2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.iron-4da2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_stone_c717 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-green-5889 {
    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);
}

.header_dark_a245 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-top-007c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-white-fff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-lite-581f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-hot-62b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-7cae {
    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);
}

.title-silver-2775 {
    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;
}

.title-silver-2775.left_f5b9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.title-silver-2775.section-hovered-9476 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.title-silver-2775.notification-copper-debd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.title-silver-2775.disabled_e307 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.title-silver-2775.label_lite_5626 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.pro_1397 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column_medium_34e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-dark-01a2 {
    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);
}

.overlay-action-6a0b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.complex_c378 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex_c378 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;
}

.complex_c378 li:last-child {
    border-bottom: none;
}

.complex_c378 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.hover_hard_d39f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover_hard_d39f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover_hard_d39f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_3ee8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.background_3ee8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_3ee8.image_paper_03b5 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .background_3ee8.image_paper_03b5 {
        grid-column: span 3;
    }
}

.element_hovered_493b {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.background_3ee8.image_paper_03b5 .element_hovered_493b {
    background: rgba(6, 182, 212, 0.1);
}

.grid_steel_43f4 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gold_0968 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.background_3ee8.image_paper_03b5 .gold_0968 {
    color: var(--info-color);
}

.cold-688b {
    padding: 1.5rem;
    text-align: center;
}

.backdrop_0b34 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.background_3ee8.image_paper_03b5 .backdrop_0b34 {
    color: var(--info-color);
}

.tabs-motion-b6c5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.table_north_ec44 {
    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 */
.huge-b004 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .huge-b004 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-ba57 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.preview-ba57:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-4a6c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_c743 {
    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);
}

.list_dc05 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_40ab {
    flex: 1;
}

.bronze-c4f1 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow-gold-7fca {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_336f {
    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);
}

.secondary_fa2c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.menu_5fdf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer_complex_d047 {
    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);
}

.overlay-48d8 {
  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);
}

.overlay-48d8 .detail-middle-f68d {
    text-align: center;
}

.overlay-48d8 .icon_middle_b358 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.overlay-48d8 .description_top_c394 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.progress_complex_30cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search_hovered_d633 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-a7d8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row_dynamic_e1d9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-north-7bd9 {
    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);
}

.logo-top-dd67 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button_65b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-ea2b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-ea2b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-ea2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-7168 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-7168:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_c015 {
    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);
}

.background_0800 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.action_c499 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.plasma_f0d6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plasma_f0d6.down-09ef {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.plasma_f0d6.dirty_1542 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.plasma_f0d6.pattern_bottom_9a1c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.tertiary_e36f {
    padding: 1.5rem;
    text-align: center;
}

.input-new-d3bd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wrapper-13c1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wrapper-13c1 .item_c1a2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tag_in_57c2 {
    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);
}

.tag_in_57c2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.media_soft_5656 {
  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);
}

.focused_f223 {
    text-align: center;
}

.focused_f223 .icon_middle_b358 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.focused_f223 .description_top_c394 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.inner-74ed { text-align: center; }
.solid-38c0 { text-align: left; }
.motion_7772 { text-align: right; }

.block_fresh_25d1 { margin-bottom: 0; }
.black_8e1f { margin-bottom: 0.5rem; }
.hidden-top-df33 { margin-bottom: 1rem; }
.footer_e966 { margin-bottom: 1.5rem; }
.tooltip_8eb8 { margin-bottom: 2rem; }

.accent-up-257f { margin-top: 0; }
.paragraph-easy-797f { margin-top: 0.5rem; }
.caption_focused_26fc { margin-top: 1rem; }
.module-863c { margin-top: 1.5rem; }
.search_brown_ca49 { margin-top: 2rem; }

.fn-hidden-4999 { display: none; }
.fn-visible-4999 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .thick_c49f {
        padding: 6rem 0 3rem;
    }
    
    .carousel_hot_27ec {
        text-align: center;
    }
    
    .row_action_d7f3 {
        text-align: center;
    }
    
    .action_51fc {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .widget_fast_af9e,
    .lower-3c17,
    .nav_9e4f,
    .thick_c4db {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .thick_c49f {
        background: none;
    }
}

/* Providers Section */
.description-out-8fa1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-0062 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-0062 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description-0062 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_96ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media_96ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.soft_c305 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dim_eab9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.image_hovered_ea37 {
    list-style: none;
    padding: 0;
}

.image_hovered_ea37 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.image_hovered_ea37 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.chip_rough_09d6 {
    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);
}

.chip_rough_09d6 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.logo_stone_7d40 {
    padding: var(--section-padding);
}

.outline-9c27 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-9c27 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north_63bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.north_63bf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.glass_2573 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.gradient_static_9c56 {
    display: flex;
    flex-direction: column;
}

.upper_b315 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hidden_yellow_70ea {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.highlight-dynamic-7402 {
    color: var(--accent-color);
}

.badge_stale_4b0e {
    font-size: 1.25rem;
}

.photo_6107 {
    margin-bottom: 1rem;
}

.photo_6107 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.main_iron_a38c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.menu_f93d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.detail-middle-f68d {
    text-align: center;
}

.icon_middle_b358 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_top_c394 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.complex-7c85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_2bbf {
    margin: 2rem 0;
}

.backdrop-4c56 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.backdrop-4c56 .popup-tiny-b9d7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_49ef {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.simple-591f {
    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;
}

.simple-591f:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pattern-solid-1073 {
    font-size: 2rem;
}

.form-dynamic-59bf {
    display: flex;
    flex-direction: column;
}

.menu-selected-bdd9 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.accordion_dim_92d5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.short_536d {
    padding: var(--section-padding);
}

.main-clean-71ff {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .main-clean-71ff {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-clean-71ff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-dim-925e {
    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);
}

.nav-dim-925e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.nav-dim-925e .icon_middle_b358 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.nav-dim-925e .description_top_c394 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.nav-dim-925e .focused-485b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.summary_pro_88f6 {
    margin-top: 4rem;
}

.solid-d2cd {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.image_c899 {
    overflow-x: auto;
}

.slider-left-d1bc {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slider-left-d1bc thead {
    background: var(--accent-color);
}

.slider-left-d1bc th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.slider-left-d1bc td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-left-d1bc tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.slider-left-d1bc tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.image-bright-deeb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_pro_3761 {
    max-width: 900px;
    margin: 0 auto;
}

.shadow_static_a423 {
    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);
}

.shadow_static_a423:hover {
    border-color: var(--accent-color);
}

.element_orange_073c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.element_orange_073c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.current-bb1b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.shadow_static_a423.fn-active-4999 .current-bb1b {
    transform: rotate(45deg);
}

.tertiary-new-d3e6 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.shadow_static_a423.fn-active-4999 .tertiary-new-d3e6 {
    max-height: 1000px;
}

.tertiary-new-d3e6 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.notification_fast_2204 {
    padding: var(--section-padding);
}

.small_fa1d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.narrow-5690 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_fluid_9540 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_fluid_9540 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame-prev-68bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_short_5384 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo_12bd {
    font-size: 2rem;
}

.card-active-9cbd {
    color: var(--text-white);
    margin: 0;
}

.banner_wide_ec32 {
    list-style: none;
    padding: 0;
}

.banner_wide_ec32 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner_wide_ec32 li:last-child {
    border-bottom: none;
}

.video_02ec {
    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);
}

.video_02ec p {
    color: var(--success-color);
    margin: 0;
}

.highlight_8fce {
    margin-top: 3rem;
}

.clean-8837 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sidebar-bronze-dbc7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sidebar-bronze-dbc7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-mini-fc92 {
    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);
}

.wrapper_rough_a446 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text-mini-fc92 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.warm-ef3e {
    padding: var(--section-padding);
}

.accent_over_7077 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_over_7077 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-2fee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.picture-2fee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.narrow-dbb3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview-north-79e7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.slider-paper-c852 {
    flex: 1;
}

.notification-pressed-1f5a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.sidebar_tiny_3c51 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.sidebar-e846 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_b4c8 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content_b4c8:last-child {
    border-bottom: none;
}

/* Comparison Section */
.next-9858 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.inner_2cad {
    padding: var(--section-padding);
}

.surface-0a25 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.nav_f843 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_f843 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-9310 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-dark-e8e9, .content-new-e82f, .complex_0531 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.complex_0531 {
    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 */
.item-down-b8a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-up-d129 {
    margin: 2rem 0;
}

.dim_da90 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-copper-9857 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.fluid_c977 {
    list-style: none;
    padding: 0;
}

.fluid_c977 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;
}

.fluid_c977 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.fluid_c977 li:last-child {
    border-bottom: none;
}

.form_8f9c {
    text-align: center;
    margin-top: 2rem;
}

.focus-0c8c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.header_f6f1 {
    padding: var(--section-padding);
}

.iron_7b47 {
    margin: 2rem 0;
}

.filter_glass_8772 {
    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) {
    .filter_glass_8772 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.filter_glass_8772:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_outer_6e45 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.sidebar-huge-4de2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.image_a1ba {
    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;
}

.tag_hovered_6f8f {
    flex: 1;
}

.black-820f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.middle_6325 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture-98d4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.texture-7732 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .texture-7732 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.description-small-8e72 {
    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);
}

.description-small-8e72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description-small-8e72 .icon_middle_b358 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description-small-8e72 .description_top_c394 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video-down-b332 {
    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);
}

.thumbnail_up_8036 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.thumbnail_up_8036 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.preview_bbe0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .preview_bbe0 {
        grid-template-columns: 1fr 1fr;
    }
}

.button_clean_a29f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_static_1c8d {
    margin-bottom: 1.5rem;
}

.disabled_static_1c8d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.disabled_static_1c8d input,
.disabled_static_1c8d 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;
}

.disabled_static_1c8d input:focus,
.disabled_static_1c8d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pattern-lite-6412 {
    width: 100%;
    margin-top: 1rem;
}

.list-7d03 {
    display: flex;
    align-items: center;
}

.module_b1b7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.tooltip_9316 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.copper_3a0c {
    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;
}

.column-2067 {
    color: var(--text-gray);
}

.detail-gold-46a8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.thick-39d5 {
    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);
}

.thick-39d5 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.feature-selected-e32f {
    margin-top: 3rem;
}

.accent_center_0a47 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.component-ef53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-ce06 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.backdrop_dynamic_9b90 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.backdrop_dynamic_9b90:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.in-b808 {
    padding: var(--section-padding);
}

.south-9dc4 {
    margin: 2rem 0;
}

.link_south_29f1 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero_yellow_236b {
    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;
}

.hero_yellow_236b:hover, .hero_yellow_236b.fn-active-4999 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gold-74c8 {
    display: none;
}

.gold-74c8.fn-active-4999 {
    display: block;
}

.left-e980 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-5223 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gradient-e4e3 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.gradient-e4e3 ul {
    list-style: none;
    padding: 0;
}

.gradient-e4e3 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gradient-e4e3 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.old-f890 {
    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 */
.outline-3e6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_e681 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-dirty-a331 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tabs-c53b {
    color: var(--accent-color);
    margin: 0;
}

.dropdown-out-9c2c {
    display: flex;
    gap: 1.5rem;
}

.pagination_32ea {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.content_f1f7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.avatar-action-331d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar-action-331d.out_1082 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.avatar-action-331d.tabs_iron_c858 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.avatar-action-331d.caption-343e {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hover_215f {
    margin-top: 2rem;
}

.element-7f88 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.preview-large-5ec8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .preview-large-5ec8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_action_5bf1 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.notice_34a1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.module-7e85 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.heading_443a {
    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 */
.tag_solid_ed70 {
    padding: var(--section-padding);
}

.basic-cd33 {
    margin: 2rem 0;
}

.hero-clean-9043 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.under_fe91 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.steel-e69c {
    list-style: none;
    padding: 0;
}

.steel-e69c 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;
}

.steel-e69c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.steel-e69c li:last-child {
    border-bottom: none;
}

.west_079f {
    margin: 2rem 0;
}

.main-c92b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.inner_5e7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .inner_5e7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-9e66 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh-c684 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.chip-red-42d5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.out_b499 {
    margin-top: 2rem;
}

.center_f31a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.hard_826d {
    list-style: none;
    padding: 0;
}

.down-6995 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.down-6995 a {
    color: var(--accent-color);
    text-decoration: none;
}

.down-6995 a:hover {
    text-decoration: underline;
}

.solid_a603 {
    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 */
.shadow-tall-cbd6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_wood_d791 {
    margin: 2rem 0;
}

.search_iron_7828 {
    margin-bottom: 3rem;
}

.search_iron_7828 .background-copper-9857 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.frame_active_7396 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.easy-6d22 {
    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);
}

.easy-6d22:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.smooth_e6f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .smooth_e6f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-fluid-a97e {
    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 */
.badge-short-07fa {
    padding: var(--section-padding);
}

.section_6f26 {
    margin: 2rem 0;
}

.backdrop-down-833f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.narrow_1780 {
    overflow-x: auto;
    margin: 2rem 0;
}

.sidebar_light_75c3 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.menu-c43c {
    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;
}

.lower-a9cc {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.last-a7a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .last-a7a9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-887f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-887f .popup-tiny-b9d7 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.red-887f .active_c406 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_active_7a0c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.thumbnail_thick_daff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_active_c67c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_active_c67c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-white-b0f5 {
    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;
}

.input-white-b0f5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dark-7d45 {
    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);
}

.left-08f8 {
    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;
}

.disabled-easy-7163 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.right_8582 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.container_old_3503 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.liquid-5786 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.title_9a0d {
    color: var(--text-white);
    font-weight: 600;
}

.disabled-2125 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery_0cdc {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery_0cdc .wrapper-ab12 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.container-0ee8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .container-0ee8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-cf9f {
    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);
}

.image-cf9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image-cf9f .icon_middle_b358 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-cf9f .description_top_c394 {
    color: var(--text-gray);
    font-size: 1rem;
}

.element-ba22 {
    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);
}

.full-bdda {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.full-bdda strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.pagination_e3d0 {
    margin: 2rem 0;
}

.list-pro-966f {
    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);
}

.list-pro-966f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.fixed_e090 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dirty-3f55 {
    flex: 1;
}

.thick_458e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link_pro_dac3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.status_3976 {
    margin: 2rem 0;
}

.dynamic-2b94 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-2b94 .active_c406 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.dynamic-2b94 .dim-18d1 {
    color: var(--text-gray);
    margin: 0;
}

.pagination_brown_554e {
    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);
}

.pagination_brown_554e .item-outer-b335 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.box_active_7a0c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.copper-5f09 {
    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;
}

.breadcrumb-large-c211 {
    flex: 1;
}

.paragraph_5cb1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.active-8aa6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.glass_4f05 {
    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;
}

.info-dirty-046e {
    flex: 1;
}

.shadow-8d87 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.progress_narrow_81d6 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.smooth-c81f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.menu_white_947d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.lite_6f8f {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.lite_6f8f .wrapper-ab12 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.black-3566 {
    margin-top: 2rem;
}

.black-3566 .clean-8837 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.content_0c84 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_pro_fc49 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .filter_pro_fc49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_pro_fc49 .detail-middle-f68d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_10d0 {
    margin: 2rem 0;
}

.cool-3685 {
    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 */
.backdrop-narrow-63ba {
    padding: var(--section-padding);
}

.search_4006 {
    margin-top: 1rem;
}

.alert-active-2fd1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.alert-active-2fd1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.alert-active-2fd1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.carousel_static_b92d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_brown_1de5 {
    margin: 2rem 0;
}

.row-fast-032f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.wide_cbd0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fixed-8208 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.box-bronze-58ee {
    margin: 2rem 0;
}

.bronze-b4e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.bronze-b4e0 .background-copper-9857 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link-bright-1ac9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link-bright-1ac9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.badge_glass_bff5 {
    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);
}

.slider_9e12 {
    color: var(--text-white);
    font-weight: 600;
}

.old_1f9e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.avatar_orange_5da4 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.avatar_orange_5da4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.filter_ec1f {
    padding: var(--section-padding);
}

.chip_4b6f {
    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;
}

.chip_4b6f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.shade_3a7f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade_3a7f .wrapper_rough_a446 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_3a7f .outline-gold-b233 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.nav_white_fda3 {
    flex: 1;
}

.cool-34bb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.main_dynamic_bb16 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_dynamic_bb16 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.main_dynamic_bb16 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.search-black-5273 {
    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);
}

.search-black-5273 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-black-5273 strong {
    color: var(--warning-color);
}

/* Slots Section */
.title_out_1017 {
    padding: var(--section-padding);
}

.caption-675b {
    margin: 2rem 0;
}

/* Table Games Section */
.stale_ef4d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north-131e {
    margin: 2rem 0;
}

.active-76d3 {
    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);
}

.active-76d3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active-76d3 .orange_0536 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-76d3 .gallery-47ed {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.gallery-center-fbca {
    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);
}

.gallery-center-fbca .item-outer-b335 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.full-2599 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_easy_bdc7 {
    margin: 2rem 0;
}

.photo_0b09 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-huge-7053 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_static_a796 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-cold-6bb3 {
    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);
}

.section-cold-6bb3:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.section-cold-6bb3.fn-active-4999 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside_cc7a {
    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-49c2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wood-49c2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.short_b497 {
    padding: var(--section-padding);
}

.overlay_4057 {
    margin: 2rem 0;
}

.background_e095 {
    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);
}

.background_e095:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .background_e095 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.badge_0a71 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.over_3089 {
    flex: 1;
}

.widget_2c22 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-6028 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tag-brown-8506 {
    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;
}

.easy_86e8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notice-complex-8b15 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.paragraph-8dcc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container_9183 {
    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;
}

.container_9183:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.copper-20ab {
    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);
}

.module-f1e8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module-f1e8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.item_6b1c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_outer_67ad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module_outer_67ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_outer_67ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-prev-3c12 {
    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;
}

.breadcrumb-prev-3c12:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-0703 {
    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;
}

.current_ef51 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.search-d51f {
    font-size: 2rem;
}

.paper_9c3c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.out-d8de {
    flex: 1;
}

.block-a447 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.detail_8fd4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.black_2a80 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.short_baac {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.active-0980 {
    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;
}

.hover_3561 {
    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;
}

.hover_3561:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-ea4f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_2d81 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_baec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .plasma_baec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lower-1d0a {
    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);
}

.gas-c72e {
    color: var(--text-white);
    font-weight: 600;
}

.glass_7f44 {
    color: var(--accent-color);
    font-weight: 600;
}

.red_e006 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.red_e006 strong {
    color: var(--accent-color);
}

/* Security Section */
.wide-bbcf {
    padding: var(--section-padding);
}

/* Benefits Section */
.hard-871f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.orange-e258 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.hidden_c78f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-purple-0469 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.bright_6efd {
    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) {
    .bright_6efd {
        flex-direction: column;
        gap: 1rem;
    }
}

.bright_6efd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bright_6efd .glass_4f05 {
    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;
}

.bright_6efd .info-dirty-046e {
    flex: 1;
}

.bright_6efd .shadow-8d87 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bright_6efd .progress_narrow_81d6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.avatar-798c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-798c .bronze-c4f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar-798c .sidebar_89bc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar-798c .sidebar_89bc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.avatar-798c .sidebar_89bc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hot-864e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.footer_yellow_3bdf {
    padding: var(--section-padding);
}

.black_ba8a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .black_ba8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_cb3a {
    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);
}

.container_cb3a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.container_cb3a .lower-10e5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_cb3a .main_next_6083 {
    flex: 1;
}

.container_cb3a .paper_fc8f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_cb3a .outer-3ae4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.media-hovered-a576 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-hovered-a576 .up-1778 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-hovered-a576 .overlay_bright_e91a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.media-hovered-a576 .overlay_bright_e91a 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);
}

.media-hovered-a576 .overlay_bright_e91a li:last-child {
    border-bottom: none;
}

.media-hovered-a576 .overlay_bright_e91a 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;
}

.media-hovered-a576 .overlay_bright_e91a li strong {
    color: var(--text-white);
}

.panel-complex-4cf5 {
    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);
}

.panel-complex-4cf5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel-complex-4cf5 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.header_7268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-left-94af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list-left-94af {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-2cd0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.summary-2cd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.icon_1218 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.east_ed3b {
    font-size: 2rem;
}

.plasma-085d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.popup_18dc {
    flex: 1;
}

.inner-ede6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-ede6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.inner-ede6 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.main-dark-23ca {
    margin-top: 3rem;
}

.hero-clean-9043 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.under_fe91 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.steel-e69c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steel-e69c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.steel-e69c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.steel-e69c li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.breadcrumb-cool-6815 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first_9443 {
    margin: 2rem 0;
}

.logo_rough_5296 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.logo_rough_5296 .background-copper-9857 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus_complex_d111 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .focus_complex_d111 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-f4bb {
    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);
}

.footer-f4bb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.component_8ece {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.photo_e567 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.list_dirty_61b4 {
    padding: var(--section-padding);
}

.bottom_00bd {
    margin: 2rem 0;
}

.fluid-a836 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .fluid-a836 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fluid-a836 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-bcae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout-bcae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tall-3b67 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.media_a111 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.last_a43f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.last_a43f.text-silver-3a13 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.link-rough-ecf3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.gold_f4dd {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tooltip_0adc {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_first_bf90 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mini_4f87 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.mini_4f87 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mini_4f87 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.tiny_f634 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-fixed-4078 {
    margin: 2rem 0;
}

.surface_c1df {
    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) {
    .surface_c1df {
        flex-direction: column;
        gap: 1rem;
    }
}

.surface_c1df:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.surface_c1df::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);
}

.card-bottom-2c15 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero_wide_6eb1 {
    flex: 1;
}

.caption_steel_e6f3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paper_b1e8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper_b1e8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_db25 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_a318 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge_7e48 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .badge_7e48 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_simple_34ce {
    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);
}

.panel-pink-456c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disabled-80db {
    flex: 1;
}

.inner-577e {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.photo-selected-6237 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.red-c64d {
    margin-top: 2rem;
    text-align: center;
}

.shade_f285 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_f285 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.dropdown-short-bc00 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-short-bc00 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-4da2 {
    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);
}

.iron-4da2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.iron-4da2 .thumbnail_plasma_6621 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-4da2 .search_dark_8904 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.iron-4da2 .block_last_009b {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.iron-4da2 .article_cold_dcdb {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.inner-9243 {
    padding: var(--section-padding);
}

.texture-green-5889 .shadow_607f {
    flex: 1;
}

/* Promo Calendar Section */
.progress_tall_8c2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_pink_c242 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon_pink_c242 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_copper_bab1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_226c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dropdown_cool_fe5b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bronze-6842 {
    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);
}

.component_660b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.icon_fluid_5e4e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.selected-2add {
    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);
}

.selected-2add p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.selected-2add strong {
    color: var(--accent-color);
}

/* Requirements Section */
.solid_e939 {
    padding: var(--section-padding);
}

.slow_840e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slow_840e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component-a813 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-under-f0b6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.static_c636 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static_c636 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_current_ffbf {
    margin-top: 3rem;
}

.tooltip_current_ffbf .hero-clean-9043 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tooltip_current_ffbf .under_fe91 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip_current_ffbf .steel-e69c {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tooltip_current_ffbf .steel-e69c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tooltip_current_ffbf .steel-e69c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tooltip_current_ffbf .steel-e69c li strong {
    color: var(--warning-color);
}

.slow-4d82 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow-4d82 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.component-silver-ad69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow_edd6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_edd6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-77f6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-77f6 .background-copper-9857 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.glass_c133 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-down-e13c {
    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);
}

.alert-down-e13c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.status_66aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_small_f8fa {
    flex: 1;
}

.hero_large_6cc1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.advanced-e81f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accordion-iron-4aac {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.widget_1cc3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shade_old_8b3a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .shade_old_8b3a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_cool_ec8a {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.preview_cool_ec8a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden_f437 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block-5dd7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.thumbnail_up_8036 {
    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);
}

.avatar-7b13 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.avatar-7b13 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.status_pink_8480 { 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; }
.title-9e95, .description-ee7f { max-width:100%; height:auto; }

.title_narrow_f4ca, .focused_e9c8, .clean-56db { white-space:normal; }

.carousel_hot_27ec,
.row_action_d7f3,
.huge-b004,
.dropdown-short-bc00,
.status_3976,
.simple-ea2b {
  flex-wrap:wrap;
}

[class*="grid"],
.shade_old_8b3a,
.fluid-a836,
.outer_f021 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.thick_c49f img,
.row_action_d7f3 img,
.warm-5883 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.detail-static-8fa3, .breadcrumb-8353,
.video_mini_7140, .item-2bbf {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.image_c899 { width:100%; overflow-x:auto; }
.image_c899 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.description-0062 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .description-0062 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.media_96ab {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.main-clean-71ff,
.new_512f,
.avatar_active_27e4,
.detail_791e,
.texture-7732,
.shade_old_8b3a,
.fluid-a836,
.outer_f021,
.media_soft_5656,
.overlay_4057,
.description-0062 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .main-clean-71ff,
  .new_512f,
  .avatar_active_27e4,
  .detail_791e,
  .texture-7732,
  .shade_old_8b3a,
  .fluid-a836,
  .outer_f021,
  .media_soft_5656,
  .overlay_4057,
  .description-0062 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.nav-dim-925e,
.description-small-8e72,
.preview_cool_ec8a,
.wide-7d23,
.layout-bcae,
.focused_f223,
.background_e095,
.media_96ab {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.status-light-cd94,
.feature_yellow_1cea,
.menu_ba9a {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.status-light-cd94 > *,
.feature_yellow_1cea > *,
.menu_ba9a > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 726c */
.shadow-element-d9 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
