/* {$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;
}

.center-e095 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.paragraph_fa62 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .paragraph_fa62 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .paragraph_fa62 {
        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 */
.disabled-wide-dae8 {
    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);
}

.header_0dfb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .header_0dfb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .outer-feb6 {
        grid-column: 1;
    }
    
    .easy_32d0 {
        grid-column: 2;
    }
    
    .breadcrumb-fresh-00c3 {
        grid-column: 3;
    }
}

.outer-feb6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.outer-feb6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.north-1d88 {
    display: none;
}

@media (min-width: 1024px) {
    .north-1d88 {
        display: block;
    }
}

/* Grouped Navigation */
.logo-e488 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.east_beec {
    position: relative;
}

.backdrop_huge_ac50 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.east_beec .article_c8fc {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.article_c8fc {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.icon-a8d1 {
    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;
}

.icon-a8d1:hover,
.icon-a8d1.fn-active-3847 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.clean_c600 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .clean_c600 {
        display: flex;
    }
}

/* Mobile Register Button */
.easy_32d0 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .easy_32d0 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.secondary-tall-3b19 {
    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;
}

.secondary-tall-3b19::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 */
.breadcrumb-fresh-00c3 {
    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) {
    .breadcrumb-fresh-00c3 {
        display: none;
    }
}

.breadcrumb-fresh-00c3 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.breadcrumb-fresh-00c3.fn-active-3847 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.breadcrumb-fresh-00c3.fn-active-3847 span:nth-child(2) {
    opacity: 0;
}

.breadcrumb-fresh-00c3.fn-active-3847 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.outer_6406 {
    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;
}

.outer_6406.fn-active-3847 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.modal_stale_644e {
    overflow: hidden;
}

.carousel_bbe6 {
    list-style: none;
    padding: 0.75rem 0;
}

.content-aedd {
    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;
}

.content-aedd:hover,
.content-aedd.fn-active-3847 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.content-aedd.accent_4b0c {
    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;
}

.content-aedd.accent_4b0c::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 */
.column-hot-144a {
    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;
}

.progress-45ad {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.progress-45ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.backdrop-5089 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.backdrop-5089:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern-lite-d9ae {
    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;
}

.pattern-lite-d9ae:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.wrapper-fluid-cb22 {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.5rem;
}

.caption-8b5a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.caption-8b5a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tall-d5c8 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tall-d5c8:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.link_a193 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.link_a193: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);
}

.accordion-last-8c84 {
    font-size: 1em;
    font-weight: 700;
}

.nav-60a6 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.overlay-over-dca0 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.overlay-over-dca0::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;
}

.status_e3d6 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .status_e3d6 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.backdrop_bottom_b129 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.item-a3f6 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.over_ceeb {
    margin-bottom: 2rem;
}

.logo_e13b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .logo_e13b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium_4d07 {
    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);
}

.slider_447c {
    font-size: 1.5rem;
}

.banner_3bab {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.item_focused_8312 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shade_788d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.shade_788d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.image_soft_f142 {
    text-align: center;
    margin-bottom: 3rem;
}

.pro_6c12 {
    margin-bottom: 1rem;
}

.chip-bright-013c {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.caption-silver-eb9b {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .caption-silver-eb9b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .caption-silver-eb9b.tag-0db7 {
        direction: rtl;
    }
    
    .caption-silver-eb9b.tag-0db7 > * {
        direction: ltr;
    }
}

.bright-fcae {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.bright-fcae:first-child {
    margin-top: 0;
}

.row-narrow-a2a4 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.aside-1aba {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.aside-1aba:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.sidebar_a9c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_a9c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-76af {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article_8833 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.detail-new-b8e6 {
    list-style: none;
}

.detail-new-b8e6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-new-b8e6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.pagination-e22d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.block-advanced-0be9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tooltip_pressed_7ada {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow_aace {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.smooth-2a2e {
    margin: 2rem 0;
}

.item_first_27d8 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dirty_8eaa {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.message-complex-5b87 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.notice_29bb {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.accent-b0b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-b0b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-b990 {
    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);
}

.heading-b990:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal-stale-0d24 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.surface_hovered_d2f4 {
    font-size: 1.5rem;
}

.element-7444 {
    color: var(--accent-color);
    margin: 0;
}

.light-c69d {
    list-style: none;
}

.light-c69d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.light-c69d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.popup-huge-a03c {
    margin: 2rem 0;
}

.detail_4d55 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.element_pro_35e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .element_pro_35e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium_6814 {
    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);
}

.mask-rough-c194 {
    font-size: 1.25rem;
}

.static-66e6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.menu-fad5,
.pressed_986c {
    text-align: center;
    margin: 2rem 0;
}

.sidebar-a293,
.form-plasma-7100 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.east-1ff0 {
    margin: 2rem 0;
    text-align: center;
}

.center_7b24 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.center_7b24::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;
}

.thick-1bc6 {
    position: relative;
    z-index: 1;
}

.alert_5dbd {
    margin-bottom: 1rem;
}

.wrapper_273b {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hover_5b1a {
    margin-bottom: 3rem;
}

.frame_e68f {
    margin-top: 3rem;
}

.detail_db2e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .detail_db2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_db2e .medium_4d07 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_pressed_1182 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wide_e68c {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.yellow-cafe {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.accordion-6768 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .accordion-6768 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion-6768 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.progress-bdb4 {
    margin-bottom: 1rem;
}

.table_huge_d98c img {
    margin-bottom: 1rem;
}

.chip-fd2d {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-9956 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tag_brown_ed66 {
    list-style: none;
}

.tag_brown_ed66 li {
    margin-bottom: 0.5rem;
}

.tag_brown_ed66 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tag_brown_ed66 a:hover {
    color: var(--accent-color);
}

.popup_1a40 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.medium_a3aa {
    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);
}

.medium_a3aa:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.media_353a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.media_353a p {
    margin-bottom: 0.25rem;
}

.popup-529f {
    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) {
    .popup-529f {
        flex-direction: row;
    }
}

.bottom_98af {
    text-align: center;
}

@media (min-width: 768px) {
    .bottom_98af {
        text-align: left;
    }
}

.bottom_98af p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.list_bd85 {
    font-size: 0.75rem !important;
}

.alert_left_8c26 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.large-8e82 {
    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);
    }
}

.notice-in-4a30 {
    animation: fadeInUp 0.6s ease-out;
}

.heading-gold-737b {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hidden_prev_efb5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_prev_efb5 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.accordion_4092 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_4092 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_e9d8 {
    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);
}

.overlay_e9d8 .tooltip_pressed_7ada {
    font-size: 1.25rem;
}

.overlay_e9d8 .backdrop_green_04ea {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary-green-5f01 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary-green-5f01 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_ee3c {
    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);
}

.badge_ee3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-yellow-3a0f {
    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);
}

.item_f73f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert_712c {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-f68b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_blue_cfb6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_blue_cfb6 .slow_aace {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_blue_cfb6 .column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_4b5d {
    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);
}

.detail-c48f {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.detail-c48f img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.detail-c48f img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.silver_e471 {
    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);
}

.stale-27f1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-ba1a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.panel-ba1a label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel-ba1a 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);
}

.panel-ba1a input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.panel-ba1a input::placeholder {
    color: var(--text-muted);
}

.active-hard-e484 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.notice-7c1f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.notice-7c1f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.stone_f791 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.stone_f791:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.element_pro_35e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_pro_35e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium_6814 {
    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);
}

.medium_6814 .mask-rough-c194 {
    font-size: 1.25rem;
}

.medium_6814 .static-66e6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.tooltip-basic-b002 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-gas-d7c9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-gas-d7c9 .tooltip_pressed_7ada {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-gas-d7c9 .slow_aace {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-gas-d7c9 .column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface_north_e05f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-right-c8a4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.progress-right-c8a4 .accent_orange_4348 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-right-c8a4 .under-0b3e {
    color: var(--text-gray);
    line-height: 1.6;
}

.module-hard-ab5c {
    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);
}

.badge-gas-7260 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .badge-gas-7260 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-97e6 {
    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);
}

.caption-97e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-7a7a {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.accent-d85c {
    flex: 1;
}

.overlay_3c22 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image_short_11d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter_new_eb89 {
    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);
}

.filter_new_eb89:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.caption_bd4d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_bd4d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-huge-d02b {
    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);
}

.heading-huge-d02b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_bronze_94cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-a932 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-955a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tooltip_simple_c191 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row-81fb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_west_5da6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-38fa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.solid-38fa .item-bright-c4bb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid-38fa .text-lite-2528 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-0c68 {
    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);
}

.thumbnail-black-394c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_gas_c97c {
    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);
}

.hover_gas_c97c .tooltip_pressed_7ada {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_gas_c97c .slow_aace {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover_gas_c97c .column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-f0bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed-f0bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_d3ab {
    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);
}

.focus_d3ab:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.hard-8cbb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-8cbb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_gas_ca7d {
    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);
}

.content_gas_ca7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_4c7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-dirty-ef2a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dirty_8eaa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.section-bcc0 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.green-f0c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_db43 {
    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);
}

.photo_db43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-f266 {
    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);
}

.cool_b5ac {
    flex: 1;
}

.current_041f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.hover_under_b18c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery_00b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_fc76 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_bright_54ef {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_bright_54ef .accent_orange_4348 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_bright_54ef .under-0b3e {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_986c {
    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);
}

.media_blue_3bcf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_blue_3bcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.mask_25bf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_25bf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-bcec {
    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);
}

.hero-bcec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-simple-aee9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_e464 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-focused-26f2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.image-basic-4529 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element_bright_bd95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright_4596 {
    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);
}

.disabled-center-6738 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_1668 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-inner-8089 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-black-394c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_gas_c97c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hover_gas_c97c .slow_aace {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover_gas_c97c .column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current-2ac3 {
    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);
}

.tertiary-fd53 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-fd53 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-fd53 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_large_7c2c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message_large_7c2c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick_33e5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.plasma_0f1a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accordion_silver_2d25 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.fluid_f1a6 {
    padding: 1.5rem;
}

.hover_6d05 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.carousel_white_2ba1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel_white_2ba1 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;
}

.carousel_white_2ba1 li:last-child {
    border-bottom: none;
}

.carousel_white_2ba1 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.list_cdf3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_cdf3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-b00c {
    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);
}

.picture-b00c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade_clean_1a16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo_plasma_7353 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active-blue-c483 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.banner_next_8236 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hot-abf7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_9923 {
    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);
}

.west-7ee6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.under-3856 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar_287e {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-7740 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.large_f46c {
    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);
}

.hover-58e6 {
    text-align: center;
}

.action-05e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-stone-90e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_f753 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-a00e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-a00e .slow_aace {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-a00e .column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_aca6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .west_aca6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west_aca6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-9f05 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.advanced-9f05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-short-8504 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.breadcrumb-5f81 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.slow_aace {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.box_tall_d48c {
    padding: 1.5rem;
}

.column-smooth-5141 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter_upper_c58f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_upper_c58f 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;
}

.filter_upper_c58f li:last-child {
    border-bottom: none;
}

.filter_upper_c58f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.status_narrow_742c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.first_12e5 {
    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);
}

.first_12e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-west-7e95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_c709 {
    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);
}

.photo-yellow-3a0f {
    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;
}

.item_f73f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert_712c {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid_c192 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-pro-b26c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.right-d926 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight-selected-adb6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.top_3601 {
    display: flex;
    gap: 1rem;
}

.top_3601 .background_pressed_94f5 {
    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;
}

.next-0d2e {
    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);
}

.badge-1903 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.media-7314 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-7314 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;
}

.media-7314 li:last-child {
    border-bottom: none;
}

.media-7314 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.copper-f3a7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .copper-f3a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .copper-f3a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-left-82e3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column-left-82e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary-279f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wide_0d85 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.item-bright-c4bb {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.accordion_5840 {
    font-size: 1rem;
}

.disabled_advanced_4ed0 {
    padding: 1.5rem;
}

.text-lite-2528 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.dropdown-e11e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dropdown-e11e .hover-58e6 {
    text-align: center;
}

.dropdown-e11e .aside-stone-90e7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.dropdown-e11e .thick_dba7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gas-036a {
    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);
}

.gas-036a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tall_596f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_596f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_7a28 {
    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);
}

.dirty_7a28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under-2e0c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_ace7 {
    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);
}

.cool-c24f {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark_07a1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.last_8624 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-bronze-5dda {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.header_c6a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_up_0460 {
    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);
}

.popup_full_0a12 {
    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;
}

.popup_full_0a12.logo_f617 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.popup_full_0a12.text-40b2 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.popup_full_0a12.layout_a1cf {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.popup_full_0a12.hard_c272 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.popup_full_0a12.pagination-a087 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.outline_fb8b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.prev-03ed {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-7ace {
    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);
}

.avatar-outer-ea64 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.surface_north_e05f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surface_north_e05f 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;
}

.surface_north_e05f li:last-child {
    border-bottom: none;
}

.surface_north_e05f li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.status_7c30 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status_7c30 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status_7c30 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-23d5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.filter-23d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-23d5.soft_502d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .filter-23d5.soft_502d {
        grid-column: span 3;
    }
}

.container_a4b7 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.filter-23d5.soft_502d .container_a4b7 {
    background: rgba(6, 182, 212, 0.1);
}

.dirty-2079 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.content-right-ed9e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.filter-23d5.soft_502d .content-right-ed9e {
    color: var(--info-color);
}

.gallery_578e {
    padding: 1.5rem;
    text-align: center;
}

.image-267a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.filter-23d5.soft_502d .image-267a {
    color: var(--info-color);
}

.hidden_red_8e0e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.text-tall-4777 {
    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 */
.banner_bright_48f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_bright_48f5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_5670 {
    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);
}

.backdrop_5670:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy_a066 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-gas-d7c9 {
    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);
}

.mask-rough-c194 {
    font-size: 2rem;
    flex-shrink: 0;
}

.right_b9f4 {
    flex: 1;
}

.detail_4d55 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.rough_6421 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_0c27 {
    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);
}

.hover_pressed_50ae {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pattern-38d4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.large-8e82 {
    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);
}

.container-plasma-94b7 {
  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);
}

.container-plasma-94b7 .hover-58e6 {
    text-align: center;
}

.container-plasma-94b7 .action-05e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.container-plasma-94b7 .aside-stone-90e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.liquid_c8dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-upper-8edb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_soft_6078 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-brown-c514 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_9487 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_1285 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout_dark_3a9a {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_north_2aac {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_north_2aac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_north_2aac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-594a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pro-594a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion-2ce5 {
    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);
}

.list-05d2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.nav_current_0736 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.lower_4e73 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lower_4e73.hero-2f1b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.lower_4e73.new_5385 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.lower_4e73.active-new-64ff {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.badge_pro_c58d {
    padding: 1.5rem;
    text-align: center;
}

.soft-f93a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.logo_bc89 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.logo_bc89 .stale-4534 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.aside-slow-b60e {
    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);
}

.aside-slow-b60e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.shadow-8a5e {
  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);
}

.next-ce9b {
    text-align: center;
}

.next-ce9b .action-05e0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.next-ce9b .aside-stone-90e7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.logo-82e7 { text-align: center; }
.highlight-e5ed { text-align: left; }
.pagination_eda4 { text-align: right; }

.tall_9008 { margin-bottom: 0; }
.dim_618e { margin-bottom: 0.5rem; }
.alert-current-7293 { margin-bottom: 1rem; }
.north-b44a { margin-bottom: 1.5rem; }
.purple-e31e { margin-bottom: 2rem; }

.detail_8068 { margin-top: 0; }
.main-stone-0fe6 { margin-top: 0.5rem; }
.tag-1ed2 { margin-top: 1rem; }
.new_60a2 { margin-top: 1.5rem; }
.wide_59a8 { margin-top: 2rem; }

.fn-hidden-3847 { display: none; }
.fn-visible-3847 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .overlay-over-dca0 {
        padding: 6rem 0 3rem;
    }
    
    .status_e3d6 {
        text-align: center;
    }
    
    .caption-silver-eb9b {
        text-align: center;
    }
    
    .logo_e13b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .disabled-wide-dae8,
    .outer_6406,
    .center_7b24,
    .yellow-cafe {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .overlay-over-dca0 {
        background: none;
    }
}

/* Providers Section */
.column-77df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_soft_3b08 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_soft_3b08 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface_soft_3b08 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_7544 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.search_7544:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.caption-b835 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hidden-complex-6340 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.secondary_b678 {
    list-style: none;
    padding: 0;
}

.secondary_b678 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.secondary_b678 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.right_4952 {
    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);
}

.right_4952 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hero_13e1 {
    padding: var(--section-padding);
}

.tag-south-a9f8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-south-a9f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-2888 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bottom-2888:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hard_bce9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.video_copper_2279 {
    display: flex;
    flex-direction: column;
}

.tabs_medium_027e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.fluid-e764 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.overlay_cf00 {
    color: var(--accent-color);
}

.texture-bf10 {
    font-size: 1.25rem;
}

.detail_8bd1 {
    margin-bottom: 1rem;
}

.detail_8bd1 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.description_209b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb-smooth-908d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.hover-58e6 {
    text-align: center;
}

.action-05e0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-stone-90e7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.heading_small_094b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gas_497a {
    margin: 2rem 0;
}

.small_0e4d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.small_0e4d .tooltip_pressed_7ada {
    font-size: 2rem;
    flex-shrink: 0;
}

.glass-4b6d {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.border-126d {
    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;
}

.border-126d:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.plasma-84d8 {
    font-size: 2rem;
}

.overlay_723a {
    display: flex;
    flex-direction: column;
}

.popup-in-9332 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.border_82a9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.badge_dirty_74a1 {
    padding: var(--section-padding);
}

.cool_abe0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .cool_abe0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cool_abe0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_41e3 {
    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);
}

.large_41e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.large_41e3 .action-05e0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.large_41e3 .aside-stone-90e7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.large_41e3 .summary_old_3c87 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.layout-white-d98c {
    margin-top: 4rem;
}

.red_5d1a {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.link_simple_d50f {
    overflow-x: auto;
}

.mask-glass-1a4d {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mask-glass-1a4d thead {
    background: var(--accent-color);
}

.mask-glass-1a4d th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.mask-glass-1a4d td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-glass-1a4d tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.mask-glass-1a4d tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.image_stone_29aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_right_69a1 {
    max-width: 900px;
    margin: 0 auto;
}

.shade_0c2c {
    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);
}

.shade_0c2c:hover {
    border-color: var(--accent-color);
}

.dropdown_088e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.dropdown_088e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.alert_mini_d0a9 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.shade_0c2c.fn-active-3847 .alert_mini_d0a9 {
    transform: rotate(45deg);
}

.sort_paper_559a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.shade_0c2c.fn-active-3847 .sort_paper_559a {
    max-height: 1000px;
}

.sort_paper_559a p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.clean-27bd {
    padding: var(--section-padding);
}

.detail-c48f {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.complex_0044 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-yellow-514a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-yellow-514a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green_d058 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_ae7e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail_52e9 {
    font-size: 2rem;
}

.tall-1129 {
    color: var(--text-white);
    margin: 0;
}

.dynamic-0f3d {
    list-style: none;
    padding: 0;
}

.dynamic-0f3d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dynamic-0f3d li:last-child {
    border-bottom: none;
}

.row_lower_bb14 {
    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);
}

.row_lower_bb14 p {
    color: var(--success-color);
    margin: 0;
}

.nav-0920 {
    margin-top: 3rem;
}

.badge-1903 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.west_78ba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .west_78ba {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus_current_6ee2 {
    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);
}

.form-full-561d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus_current_6ee2 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.image_smooth_255b {
    padding: var(--section-padding);
}

.feature_a0db {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_a0db {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-easy-2546 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image-easy-2546:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.detail_action_114c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.media-888b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.backdrop_stale_e0f9 {
    flex: 1;
}

.avatar_active_cf70 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.video_fast_bc04 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pattern-07c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-8964 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-8964:last-child {
    border-bottom: none;
}

/* Comparison Section */
.list_fixed_db97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.background-dd2f {
    padding: var(--section-padding);
}

.fast-b55a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hidden_9b73 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_9b73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-next-364a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_new_e46a, .carousel-green-b83c, .notification_dim_1ce6 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.notification_dim_1ce6 {
    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 */
.shadow_0459 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east-dc35 {
    margin: 2rem 0;
}

.aside_prev_cc28 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_edb2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.carousel-narrow-60f3 {
    list-style: none;
    padding: 0;
}

.carousel-narrow-60f3 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;
}

.carousel-narrow-60f3 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.carousel-narrow-60f3 li:last-child {
    border-bottom: none;
}

.selected_d2ac {
    text-align: center;
    margin-top: 2rem;
}

.short-501e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.texture-5848 {
    padding: var(--section-padding);
}

.hot-46ff {
    margin: 2rem 0;
}

.notification-black-e707 {
    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) {
    .notification-black-e707 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.notification-black-e707:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget-tall-b78d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.aside-7f1f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.panel_21b7 {
    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;
}

.gold_7bb4 {
    flex: 1;
}

.icon-78b6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.outer-d252 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.brown_9f09 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.notification_complex_0cd5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .notification_complex_0cd5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.card_wide_61de {
    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);
}

.card_wide_61de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_wide_61de .action-05e0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_wide_61de .aside-stone-90e7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.notice-3a44 {
    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);
}

.column-dynamic-ebde {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.column-dynamic-ebde strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.large_2f61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .large_2f61 {
        grid-template-columns: 1fr 1fr;
    }
}

.blue-b940 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-060e {
    margin-bottom: 1.5rem;
}

.fluid-060e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fluid-060e input,
.fluid-060e 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;
}

.fluid-060e input:focus,
.fluid-060e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.border_warm_774d {
    width: 100%;
    margin-top: 1rem;
}

.light-b0a1 {
    display: flex;
    align-items: center;
}

.shadow-6558 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.slider_5f56 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.black-02dc {
    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;
}

.list-light-a665 {
    color: var(--text-gray);
}

.column-a964 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.slow_8c8f {
    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);
}

.slow_8c8f p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.button_561b {
    margin-top: 3rem;
}

.alert-5a07 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.picture-right-3d51 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-959e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.upper-2256 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper-2256:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.thumbnail_selected_1683 {
    padding: var(--section-padding);
}

.current_bad7 {
    margin: 2rem 0;
}

.pink-52e0 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.block-yellow-eaff {
    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;
}

.block-yellow-eaff:hover, .block-yellow-eaff.fn-active-3847 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.complex_0f89 {
    display: none;
}

.complex_0f89.fn-active-3847 {
    display: block;
}

.clean_c4db {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_785b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pattern-clean-9ef3 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.pattern-clean-9ef3 ul {
    list-style: none;
    padding: 0;
}

.pattern-clean-9ef3 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pattern-clean-9ef3 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.blue_7710 {
    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 */
.cold-02ca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_outer_5a46 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-c9e6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.large-78ab {
    color: var(--accent-color);
    margin: 0;
}

.notice-88a4 {
    display: flex;
    gap: 1.5rem;
}

.preview_pro_771c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.status_down_482d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.slider_short_bde4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.slider_short_bde4.slider-a361 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.slider_short_bde4.panel_1114 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.slider_short_bde4.article_8074 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.steel_c35d {
    margin-top: 2rem;
}

.up_747d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shade_ea47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .shade_ea47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_focused_8b9d {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.sidebar_78fd {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.north_afd3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.header_7a1e {
    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 */
.inner-1f48 {
    padding: var(--section-padding);
}

.element_746d {
    margin: 2rem 0;
}

.chip_active_3431 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.photo-0865 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.huge_fb51 {
    list-style: none;
    padding: 0;
}

.huge_fb51 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;
}

.huge_fb51 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.huge_fb51 li:last-child {
    border-bottom: none;
}

.header-66c4 {
    margin: 2rem 0;
}

.row_b478 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort-old-c3ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sort-old-c3ca {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary_76a2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down_912e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_current_aca5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.active-d62c {
    margin-top: 2rem;
}

.overlay_3c22 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.slider_7a52 {
    list-style: none;
    padding: 0;
}

.disabled_glass_c6cd {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.disabled_glass_c6cd a {
    color: var(--accent-color);
    text-decoration: none;
}

.disabled_glass_c6cd a:hover {
    text-decoration: underline;
}

.background-dirty-5622 {
    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 */
.texture_wide_7fdc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_067b {
    margin: 2rem 0;
}

.block_4f00 {
    margin-bottom: 3rem;
}

.block_4f00 .video_edb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.silver-b963 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.upper_66ad {
    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);
}

.upper_66ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.mini_5df5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mini_5df5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-ffcd {
    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 */
.copper_d843 {
    padding: var(--section-padding);
}

.center_db51 {
    margin: 2rem 0;
}

.picture-dynamic-726f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.upper-39aa {
    overflow-x: auto;
    margin: 2rem 0;
}

.status_glass_f66c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.card_a6b2 {
    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;
}

.form-418d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.stale-7cbb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .stale-7cbb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_green_bb4c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_green_bb4c .tooltip_pressed_7ada {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.tertiary_green_bb4c .slow_aace {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.logo_8afd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.next-6b51 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver-2198 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-2198 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full_dbe8 {
    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;
}

.full_dbe8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table_b07f {
    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);
}

.dynamic_5c72 {
    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;
}

.notification-d23d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.orange_e1b2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.dirty-fec2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.south-dad5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-4ec2 {
    color: var(--text-white);
    font-weight: 600;
}

.carousel-steel-d765 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav-dynamic-42a1 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dynamic-42a1 .background_pressed_94f5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.info_3fdf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info_3fdf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_52b2 {
    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);
}

.row_52b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row_52b2 .action-05e0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_52b2 .aside-stone-90e7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.notice-wide-4092 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_26b6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slow_26b6 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.element_bright_bd95 {
    margin: 2rem 0;
}

.bright_4596 {
    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);
}

.bright_4596:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.disabled-center-6738 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-purple-2cb0 {
    flex: 1;
}

.backdrop_1668 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-inner-8089 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.thumbnail-black-394c {
    margin: 2rem 0;
}

.hover_gas_c97c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_gas_c97c .slow_aace {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.hover_gas_c97c .column-smooth-5141 {
    color: var(--text-gray);
    margin: 0;
}

.current-2ac3 {
    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);
}

.current-2ac3 .sidebar-a293 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.logo_8afd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.notification-f266 {
    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;
}

.cool_b5ac {
    flex: 1;
}

.hover_under_b18c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.gallery_00b8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.photo-yellow-3a0f {
    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;
}

.main-f558 {
    flex: 1;
}

.item_f73f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.alert_712c {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.right-d926 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.highlight-selected-adb6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.top_3601 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.top_3601 .background_pressed_94f5 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.next-0d2e {
    margin-top: 2rem;
}

.next-0d2e .badge-1903 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.up_ca12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large_f46c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .large_f46c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_f46c .hover-58e6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_f753 {
    margin: 2rem 0;
}

.form-a00e {
    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 */
.link-c322 {
    padding: var(--section-padding);
}

.box_tall_d48c {
    margin-top: 1rem;
}

.filter_upper_c58f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.filter_upper_c58f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.filter_upper_c58f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.form-soft-bb94 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-cold-8c85 {
    margin: 2rem 0;
}

.menu-d63a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.image_3de0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.slow_0a5f {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.background-old-e904 {
    margin: 2rem 0;
}

.aside_copper_6f31 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.aside_copper_6f31 .video_edb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass_7aaa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .glass_7aaa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table-north-8a4c {
    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);
}

.nav-41dd {
    color: var(--text-white);
    font-weight: 600;
}

.west-4dd8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.bright-9176 {
    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);
}

.bright-9176 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.cold_e3cf {
    padding: var(--section-padding);
}

.container_inner_9fec {
    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;
}

.container_inner_9fec:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.new_9b1c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new_9b1c .form-full-561d {
    font-size: 2rem;
    flex-shrink: 0;
}

.new_9b1c .feature_purple_4522 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_2409 {
    flex: 1;
}

.wood_f2b7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lite-7f24 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lite-7f24 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.lite-7f24 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focused_d742 {
    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);
}

.focused_d742 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused_d742 strong {
    color: var(--warning-color);
}

/* Slots Section */
.dropdown-fd52 {
    padding: var(--section-padding);
}

.row-81fb {
    margin: 2rem 0;
}

/* Table Games Section */
.container-79ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_west_5da6 {
    margin: 2rem 0;
}

.solid-38fa {
    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);
}

.solid-38fa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.solid-38fa .item-bright-c4bb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid-38fa .text-lite-2528 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.accordion-0c68 {
    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);
}

.accordion-0c68 .sidebar-a293 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.white_a4a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_7fb7 {
    margin: 2rem 0;
}

.dirty_e401 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-0d6b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.under_88f0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.shadow_smooth_69a6 {
    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);
}

.shadow_smooth_69a6:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.shadow_smooth_69a6.fn-active-3847 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-over-70b5 {
    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);
}

.sidebar_fixed_78d2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar_fixed_78d2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.logo_0b05 {
    padding: var(--section-padding);
}

.accordion-purple-fb2d {
    margin: 2rem 0;
}

.logo-simple-cc28 {
    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);
}

.logo-simple-cc28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .logo-simple-cc28 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.text_iron_54d6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.content-1757 {
    flex: 1;
}

.down_af97 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.alert-ee6d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mask_iron_e9fb {
    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;
}

.label-2455 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cold_6006 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.search-old-3149 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tall_75e2 {
    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;
}

.tall_75e2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.new_d6dd {
    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);
}

.action-980a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.action-980a strong {
    color: var(--accent-color);
}

/* New Games Section */
.accordion-3441 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small_6042 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .small_6042 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small_6042 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-down-5a7b {
    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;
}

.alert-down-5a7b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.status_83c4 {
    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;
}

.pattern_ea5e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.south_9f52 {
    font-size: 2rem;
}

.upper_4433 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.purple_f3ec {
    flex: 1;
}

.grid_outer_eb9b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.notice-center-845c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.video_dirty_fb69 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.inner-6c7e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.element-silver-1724 {
    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;
}

.tooltip-713d {
    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;
}

.tooltip-713d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.label_8e3c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-4bc1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.old_74e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .old_74e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_9f25 {
    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);
}

.menu-mini-cc1b {
    color: var(--text-white);
    font-weight: 600;
}

.full_804f {
    color: var(--accent-color);
    font-weight: 600;
}

.outer_8aa5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.outer_8aa5 strong {
    color: var(--accent-color);
}

/* Security Section */
.left_85db {
    padding: var(--section-padding);
}

/* Benefits Section */
.secondary-35e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.pagination-7b10 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.down_87b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean-dc0a {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.column-6c70 {
    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) {
    .column-6c70 {
        flex-direction: column;
        gap: 1rem;
    }
}

.column-6c70:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.column-6c70 .photo-yellow-3a0f {
    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;
}

.column-6c70 .main-f558 {
    flex: 1;
}

.column-6c70 .item_f73f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.column-6c70 .alert_712c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.section_db8a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_db8a .detail_4d55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section_db8a .tooltip-basic-b002 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section_db8a .tooltip-basic-b002 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.section_db8a .tooltip-basic-b002 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.orange_7705 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.north-c96f {
    padding: var(--section-padding);
}

.notice_072c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .notice_072c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-2e5c {
    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-2e5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.container-2e5c .shadow_pink_6bd1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-2e5c .clean-fef6 {
    flex: 1;
}

.container-2e5c .accent_orange_4348 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container-2e5c .large_4d1b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.light_e920 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_e920 .picture_short_64f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.light_e920 .old-b98d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.light_e920 .old-b98d 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);
}

.light_e920 .old-b98d li:last-child {
    border-bottom: none;
}

.light_e920 .old-b98d 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;
}

.light_e920 .old-b98d li strong {
    color: var(--text-white);
}

.grid-c64e {
    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);
}

.grid-c64e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid-c64e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.secondary-19ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-e40d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container-e40d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.logo_57b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.logo_57b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination_b095 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-under-c0e4 {
    font-size: 2rem;
}

.picture_advanced_5a2e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.light_6abe {
    flex: 1;
}

.small_6a49 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small_6a49 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.small_6a49 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wrapper-36ad {
    margin-top: 3rem;
}

.chip_active_3431 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.photo-0865 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.huge_fb51 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.huge_fb51 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.huge_fb51 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.huge_fb51 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.fluid_9f01 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed-12bf {
    margin: 2rem 0;
}

.link_liquid_b91c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.link_liquid_b91c .video_edb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination_3b2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination_3b2d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-lite-c143 {
    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);
}

.module-lite-c143:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.box-9e16 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stale_ca3c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.hero_wide_1d50 {
    padding: var(--section-padding);
}

.input_2f63 {
    margin: 2rem 0;
}

.alert-b535 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .alert-b535 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert-b535 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.over-d76d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.over-d76d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.avatar-next-599b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.carousel-8bcd {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.media_green_f26e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.media_green_f26e.hover-cff5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tabs-7dc3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.logo_f0d3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.accordion_active_b5e4 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.component-smooth-79f3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.left-4c9b {
    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);
}

.left-4c9b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.left-4c9b strong {
    color: var(--accent-color);
}

/* Update Log Section */
.wrapper-black-0857 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow_69e3 {
    margin: 2rem 0;
}

.link-28c1 {
    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) {
    .link-28c1 {
        flex-direction: column;
        gap: 1rem;
    }
}

.link-28c1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link-28c1::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);
}

.popup-ad8e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.pattern-0151 {
    flex: 1;
}

.section_6fd0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-2463 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-2463 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.search_0d8a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-4355 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.complex-fa90 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .complex-fa90 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_full_f222 {
    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);
}

.widget_2151 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-cold-90b9 {
    flex: 1;
}

.article-dark-d441 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.selected-de4c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary_middle_034e {
    margin-top: 2rem;
    text-align: center;
}

.thumbnail-short-a6c5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail-short-a6c5 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tall_596f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_596f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_7a28 {
    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);
}

.dirty_7a28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dirty_7a28 .shade_clean_1a16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dirty_7a28 .photo_plasma_7353 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dirty_7a28 .active-blue-c483 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.dirty_7a28 .banner_next_8236 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.disabled_black_4d7d {
    padding: var(--section-padding);
}

.info_ace7 .section-fast-3bb5 {
    flex: 1;
}

/* Promo Calendar Section */
.left_0fcf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-iron-3522 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-iron-3522 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.new-c98b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-39cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.thumbnail_d5c6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-yellow-cd33 {
    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);
}

.paragraph-464f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column_fd86 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.last-72d2 {
    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);
}

.last-72d2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.last-72d2 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.secondary-middle-bb10 {
    padding: var(--section-padding);
}

.image_72b8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .image_72b8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.item_e29e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_static_58fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo_0db6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_0db6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-thick-164d {
    margin-top: 3rem;
}

.sort-thick-164d .chip_active_3431 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sort-thick-164d .photo-0865 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-thick-164d .huge_fb51 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sort-thick-164d .huge_fb51 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sort-thick-164d .huge_fb51 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sort-thick-164d .huge_fb51 li strong {
    color: var(--warning-color);
}

.surface_fresh_8a77 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface_fresh_8a77 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.filter_wide_6cfb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_211e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_211e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft_12fd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_12fd .video_edb2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hard-afdc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steel_39b0 {
    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);
}

.steel_39b0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.item_inner_bef9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bottom_5a8a {
    flex: 1;
}

.sort_7166 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.list_next_7f06 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shadow_bright_ed9c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.soft-b2ae {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.form-gold-f8ab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .form-gold-f8ab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_3457 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel_3457:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.table_bright_f915 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail_686b {
    color: var(--text-gray);
    font-size: 1rem;
}

.column-dynamic-ebde {
    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);
}

.header-small-735c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.header-small-735c strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.paragraph_fa62 { 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; }
.shade_788d, .aside-1aba { max-width:100%; height:auto; }

.column-hot-144a, .pattern-lite-d9ae, .wrapper-fluid-cb22 { white-space:normal; }

.status_e3d6,
.caption-silver-eb9b,
.banner_bright_48f5,
.tall_596f,
.thumbnail-black-394c,
.link_north_2aac {
  flex-wrap:wrap;
}

[class*="grid"],
.form-gold-f8ab,
.alert-b535,
.detail_db2e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.overlay-over-dca0 img,
.caption-silver-eb9b img,
.item_focused_8312 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.backdrop_bottom_b129, .item-a3f6,
.pro_6c12, .chip-bright-013c {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.link_simple_d50f { width:100%; overflow-x:auto; }
.link_simple_d50f table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.surface_soft_3b08 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .surface_soft_3b08 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.search_7544 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.cool_abe0,
.header_67c4,
.mask-fresh-f18a,
.block-2bab,
.notification_complex_0cd5,
.form-gold-f8ab,
.alert-b535,
.detail_db2e,
.shadow-8a5e,
.accordion-purple-fb2d,
.surface_soft_3b08 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .cool_abe0,
  .header_67c4,
  .mask-fresh-f18a,
  .block-2bab,
  .notification_complex_0cd5,
  .form-gold-f8ab,
  .alert-b535,
  .detail_db2e,
  .shadow-8a5e,
  .accordion-purple-fb2d,
  .surface_soft_3b08 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.large_41e3,
.card_wide_61de,
.panel_3457,
.medium_4d07,
.over-d76d,
.next-ce9b,
.logo-simple-cc28,
.search_7544 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.block-ac14,
.avatar-active-3120,
.silver_d846 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.block-ac14 > *,
.avatar-active-3120 > *,
.silver_d846 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1dc9 */
.shadow-element-b5 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
