/* {$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;
}

.breadcrumb-73f6 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.search_last_36e8 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .search_last_36e8 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .search_last_36e8 {
        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 */
.copper-ffd9 {
    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);
}

.box_gold_3e2d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .box_gold_3e2d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .box_last_9cc9 {
        grid-column: 1;
    }
    
    .header-active-3419 {
        grid-column: 2;
    }
    
    .secondary-7963 {
        grid-column: 3;
    }
}

.box_last_9cc9 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.box_last_9cc9:hover img {
    transform: scale(1.05);
}

/* Navigation */
.wrapper_744e {
    display: none;
}

@media (min-width: 1024px) {
    .wrapper_744e {
        display: block;
    }
}

/* Grouped Navigation */
.section-last-2bf2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.blue-4358 {
    position: relative;
}

.action-7dcb {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.blue-4358 .tooltip-6015 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.tooltip-6015 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.modal_4b09 {
    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;
}

.modal_4b09:hover,
.modal_4b09.fn-active-03d8 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.bottom-c3a6 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bottom-c3a6 {
        display: flex;
    }
}

/* Mobile Register Button */
.header-active-3419 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .header-active-3419 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.detail-1313 {
    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;
}

.detail-1313::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 */
.secondary-7963 {
    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) {
    .secondary-7963 {
        display: none;
    }
}

.secondary-7963 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.secondary-7963.fn-active-03d8 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.secondary-7963.fn-active-03d8 span:nth-child(2) {
    opacity: 0;
}

.secondary-7963.fn-active-03d8 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.grid_9cef {
    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;
}

.grid_9cef.fn-active-03d8 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.white-384b {
    overflow: hidden;
}

.row_91ac {
    list-style: none;
    padding: 0.75rem 0;
}

.center_c7b8 {
    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;
}

.center_c7b8:hover,
.center_c7b8.fn-active-03d8 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.center_c7b8.label-de45 {
    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;
}

.center_c7b8.label-de45::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 */
.alert-9e1e {
    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;
}

.stale_00e4 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.stale_00e4:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.card_gas_37be {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.card_gas_37be:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pagination-e32b {
    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;
}

.pagination-e32b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.blue_120a {
    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;
}

.sidebar-upper-eaaa {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.sidebar-upper-eaaa:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focus_lower_a83a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focus_lower_a83a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.bronze_b1b9 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.bronze_b1b9: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);
}

.section_cold_8b9d {
    font-size: 1em;
    font-weight: 700;
}

.tooltip-simple-36a1 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.container-4eba {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.container-4eba::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;
}

.tertiary-0ec9 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tertiary-0ec9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.highlight-rough-68b1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.badge_7009 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.layout_3785 {
    margin-bottom: 2rem;
}

.solid_0dd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .solid_0dd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_2c4e {
    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);
}

.search_glass_fc6c {
    font-size: 1.5rem;
}

.table-762e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.bottom-a7b7 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clean_1210 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.clean_1210:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.fresh-7210 {
    text-align: center;
    margin-bottom: 3rem;
}

.modal_8e0a {
    margin-bottom: 1rem;
}

.yellow_b2b2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.logo_upper_68b7 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .logo_upper_68b7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .logo_upper_68b7.aside-short-334c {
        direction: rtl;
    }
    
    .logo_upper_68b7.aside-short-334c > * {
        direction: ltr;
    }
}

.tooltip_outer_05d0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tooltip_outer_05d0:first-child {
    margin-top: 0;
}

.nav-e9a3 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.carousel_bcaa {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel_bcaa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.input-33b5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-33b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-white-bcbf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.south_b7f8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.summary_active_6de4 {
    list-style: none;
}

.summary_active_6de4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary_active_6de4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.aside_13ac {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.footer_over_7e2d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bright-2a70 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_c760 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.wrapper-1271 {
    margin: 2rem 0;
}

.fresh-6326 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.alert-05d0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.border-1111 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.steel_7cd8 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.upper-6e5e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-6e5e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_11fb {
    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);
}

.pagination_11fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-smooth-4185 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tabs_f6bf {
    font-size: 1.5rem;
}

.article_63a0 {
    color: var(--accent-color);
    margin: 0;
}

.modal-6a8f {
    list-style: none;
}

.modal-6a8f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.modal-6a8f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.slider_smooth_87b2 {
    margin: 2rem 0;
}

.stone_48fb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.up-2483 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .up-2483 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption-south-5664 {
    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);
}

.cold_df77 {
    font-size: 1.25rem;
}

.simple_d6b5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.photo_35db,
.item_347b {
    text-align: center;
    margin: 2rem 0;
}

.sidebar_d455,
.filter-820b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.row-advanced-0c43 {
    margin: 2rem 0;
    text-align: center;
}

.west-ceab {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.west-ceab::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;
}

.soft-25fd {
    position: relative;
    z-index: 1;
}

.chip_cool_1256 {
    margin-bottom: 1rem;
}

.shade_steel_6693 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.module-395b {
    margin-bottom: 3rem;
}

.tiny-40b6 {
    margin-top: 3rem;
}

.green_c8bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .green_c8bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_c8bc .footer_2c4e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed-152e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.green_f8f6 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.notice-under-ea39 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.thumbnail_9548 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .thumbnail_9548 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail_9548 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.green-6ffb {
    margin-bottom: 1rem;
}

.logo-middle-3ff8 img {
    margin-bottom: 1rem;
}

.backdrop_4088 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron-0686 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pink-269e {
    list-style: none;
}

.pink-269e li {
    margin-bottom: 0.5rem;
}

.pink-269e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.pink-269e a:hover {
    color: var(--accent-color);
}

.badge_medium_3274 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-bbc9 {
    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);
}

.logo-bbc9:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.element_old_052a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.element_old_052a p {
    margin-bottom: 0.25rem;
}

.panel-medium-961a {
    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) {
    .panel-medium-961a {
        flex-direction: row;
    }
}

.white-c92a {
    text-align: center;
}

@media (min-width: 768px) {
    .white-c92a {
        text-align: left;
    }
}

.white-c92a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input_black_83e4 {
    font-size: 0.75rem !important;
}

.fresh_b0ac {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.summary-61ae {
    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);
    }
}

.message-a3a5 {
    animation: fadeInUp 0.6s ease-out;
}

.badge-25ba {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.fresh-9ad1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh-9ad1 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.down_2346 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_2346 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_1226 {
    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);
}

.large_1226 .bright-2a70 {
    font-size: 1.25rem;
}

.large_1226 .text-down-e895 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.medium_9a55 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .medium_9a55 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up_654e {
    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);
}

.up_654e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone-e3ab {
    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);
}

.backdrop_selected_45a4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.current_ec84 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-4c59 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot-85fa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hot-85fa .hero_c760 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hot-85fa .background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom_cd91 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-0a05 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.mask-0a05 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask-0a05 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.highlight-current-41e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.advanced_e349 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner_d6a3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner_d6a3 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner_d6a3 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);
}

.banner_d6a3 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.banner_d6a3 input::placeholder {
    color: var(--text-muted);
}

.mini_bb90 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-prev-07ca {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.panel-prev-07ca input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.shadow_5af7 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.shadow_5af7:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.up-2483 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up-2483 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption-south-5664 {
    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);
}

.caption-south-5664 .cold_df77 {
    font-size: 1.25rem;
}

.caption-south-5664 .simple_d6b5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.badge_north_d6bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_05d7 {
    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);
}

.gold_05d7 .bright-2a70 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold_05d7 .hero_c760 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gold_05d7 .background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-5cd0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim_2d8a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dim_2d8a .sidebar_0ecd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dim_2d8a .over_5a9b {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-slow-767c {
    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);
}

.title_smooth_89dd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title_smooth_89dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_hovered_e508 {
    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);
}

.tabs_hovered_e508:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-5a0a {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.outline-clean-67ab {
    flex: 1;
}

.hard_0dae {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph-gas-b79f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sort-old-c03e {
    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);
}

.sort-old-c03e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.item-9942 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-9942 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new_21e0 {
    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);
}

.new_21e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-selected-7bdd {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_954b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.east-6252 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.surface-in-50bf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.surface_59d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_8022 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.next_a6db {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.next_a6db .section-edc4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.next_a6db .nav_north_1592 {
    color: var(--text-gray);
    line-height: 1.6;
}

.copper_4867 {
    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);
}

.dim_2cc8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_6018 {
    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);
}

.secondary_6018 .bright-2a70 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_6018 .hero_c760 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_6018 .background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_dirty_6ff4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_dirty_6ff4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick_d4a6 {
    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);
}

.thick_d4a6:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.bronze_7644 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_7644 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_421a {
    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);
}

.accordion_421a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo-d4bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_tall_e9fd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.alert-05d0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.fluid_edfc {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.secondary-advanced-4f2b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_5be4 {
    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);
}

.liquid_5be4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-140f {
    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);
}

.light-77d5 {
    flex: 1;
}

.layout-glass-f28b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.filter-complex-8170 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tiny_74eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.pink_a449 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel_last_30bc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_last_30bc .sidebar_0ecd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel_last_30bc .over_5a9b {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_347b {
    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);
}

.footer_dddf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_dddf {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.paragraph-22a5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-22a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom-79be {
    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);
}

.bottom-79be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_c441 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite_5bc7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.carousel-4480 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hover_2ec3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dirty-fd02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_first_582c {
    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);
}

.first-3718 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_basic_1fc9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood_02b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_2cc8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_6018 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.secondary_6018 .hero_c760 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_6018 .background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-9d26 {
    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);
}

.over_4376 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .over_4376 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over_4376 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_3f4c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table_3f4c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth-692f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.search-action-d70b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.detail_north_56ef {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.avatar-advanced-11e5 {
    padding: 1.5rem;
}

.accordion_green_dd5e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row-hovered-11c5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row-hovered-11c5 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;
}

.row-hovered-11c5 li:last-child {
    border-bottom: none;
}

.row-hovered-11c5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.label-362e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-362e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-9ee0 {
    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);
}

.upper-9ee0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_4919 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_975a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shade_west_3aee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.photo-motion-e9b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.alert_inner_4794 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_7da6 {
    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);
}

.outer_dece {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-d3a2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden-61f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-selected-a164 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.notification-brown-0086 {
    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);
}

.media-brown-eeb6 {
    text-align: center;
}

.container-brown-19b5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-1227 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pressed-12ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-solid-e8b1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-solid-e8b1 .hero_c760 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-solid-e8b1 .background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_c804 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .form_c804 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_c804 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bright_87c6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bright_87c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface-a634 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.up-1982 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero_c760 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.button-focused-0c55 {
    padding: 1.5rem;
}

.background_red_f46c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accordion_1fff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion_1fff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.accordion_1fff li:last-child {
    border-bottom: none;
}

.accordion_1fff li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.center-23a6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.full-d090 {
    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);
}

.full-d090:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-glass-1b1b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out-6be2 {
    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);
}

.stone-e3ab {
    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;
}

.backdrop_selected_45a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.current_ec84 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-rough-c056 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_simple_83dc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.inner_412a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed_7e57 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.active_599d {
    display: flex;
    gap: 1rem;
}

.active_599d .gradient-e7f2 {
    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;
}

.secondary-f06f {
    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);
}

.static-10f3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-bronze-5493 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-bronze-5493 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;
}

.hero-bronze-5493 li:last-child {
    border-bottom: none;
}

.hero-bronze-5493 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.white_4525 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .white_4525 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .white_4525 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-d54c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.detail-d54c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_e178 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focus-light-6b5e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.section-edc4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.banner-liquid-5ec1 {
    font-size: 1rem;
}

.detail_748e {
    padding: 1.5rem;
}

.nav_north_1592 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article_37f2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.article_37f2 .media-brown-eeb6 {
    text-align: center;
}

.article_37f2 .detail-1227 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.article_37f2 .detail_dd55 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.overlay_dim_afa4 {
    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);
}

.overlay_dim_afa4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.footer_7ce3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_7ce3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_68df {
    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);
}

.notice_68df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-d076 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down_56df {
    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);
}

.menu-8cab {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_mini_a799 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column-up-ce9a {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_e6f8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline_gold_17cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-fa9b {
    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);
}

.border_selected_48d3 {
    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;
}

.border_selected_48d3.badge_b92b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.border_selected_48d3.blue_ee5b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.border_selected_48d3.clean-3db8 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.border_selected_48d3.overlay-silver-8a77 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.border_selected_48d3.box-mini-869f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.overlay_de2b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb-2d6c {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-stale-18dd {
    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);
}

.label_blue_1ef5 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.next-5cd0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-5cd0 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;
}

.next-5cd0 li:last-child {
    border-bottom: none;
}

.next-5cd0 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.accent_inner_39c5 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent_inner_39c5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accent_inner_39c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_36c4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pattern_36c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_36c4.link_2dca {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .pattern_36c4.link_2dca {
        grid-column: span 3;
    }
}

.feature-3027 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.pattern_36c4.link_2dca .feature-3027 {
    background: rgba(6, 182, 212, 0.1);
}

.photo-50de {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.description_pressed_d6db {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.pattern_36c4.link_2dca .description_pressed_d6db {
    color: var(--info-color);
}

.section_rough_0c6e {
    padding: 1.5rem;
    text-align: center;
}

.preview-acaf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pattern_36c4.link_2dca .preview-acaf {
    color: var(--info-color);
}

.gradient-warm-92d9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.avatar_04f1 {
    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 */
.primary_7970 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_7970 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-c81d {
    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);
}

.pagination-c81d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-f3ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_05d7 {
    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);
}

.cold_df77 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-out-dff8 {
    flex: 1;
}

.stone_48fb {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.copper-b3cd {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered_d1b3 {
    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);
}

.footer_3bf0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter_under_bfbf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.summary-61ae {
    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);
}

.item-48f1 {
  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);
}

.item-48f1 .media-brown-eeb6 {
    text-align: center;
}

.item-48f1 .container-brown-19b5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.item-48f1 .detail-1227 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.image-fixed-9ba9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic_8c50 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_ad15 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slider-3e6e {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_a572 {
    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);
}

.section_purple_5131 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_a89d {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_364f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_364f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_364f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_dim_5023 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.input_dim_5023:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_plasma_acdc {
    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);
}

.accent_9a67 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button-cool-cbf1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.aside-lite-b377 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aside-lite-b377.search-673a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.aside-lite-b377.layout_right_d9c2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.aside-lite-b377.footer-d03d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.button_095e {
    padding: 1.5rem;
    text-align: center;
}

.row-120b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.focus-12de {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.focus-12de .title-1b1e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.mini-dee5 {
    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);
}

.mini-dee5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-copper-4ee6 {
  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);
}

.hovered_1c78 {
    text-align: center;
}

.hovered_1c78 .container-brown-19b5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hovered_1c78 .detail-1227 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.white_25b7 { text-align: center; }
.hard-1271 { text-align: left; }
.gas_c0b6 { text-align: right; }

.first_f6c1 { margin-bottom: 0; }
.wrapper-19fd { margin-bottom: 0.5rem; }
.accordion_7979 { margin-bottom: 1rem; }
.accent-solid-0592 { margin-bottom: 1.5rem; }
.image-solid-0560 { margin-bottom: 2rem; }

.west-525c { margin-top: 0; }
.content-hovered-09fd { margin-top: 0.5rem; }
.center_b52e { margin-top: 1rem; }
.dynamic_9d69 { margin-top: 1.5rem; }
.table_slow_31e9 { margin-top: 2rem; }

.fn-hidden-03d8 { display: none; }
.fn-visible-03d8 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .container-4eba {
        padding: 6rem 0 3rem;
    }
    
    .tertiary-0ec9 {
        text-align: center;
    }
    
    .logo_upper_68b7 {
        text-align: center;
    }
    
    .solid_0dd5 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .copper-ffd9,
    .grid_9cef,
    .west-ceab,
    .notice-under-ea39 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container-4eba {
        background: none;
    }
}

/* Providers Section */
.popup-white-4961 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_c66a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_c66a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_c66a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_slow_e6c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress_slow_e6c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.message_8c7b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.banner_hovered_d6be {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-9c69 {
    list-style: none;
    padding: 0;
}

.mask-9c69 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask-9c69 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.caption_3363 {
    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);
}

.caption_3363 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.pattern-0ee5 {
    padding: var(--section-padding);
}

.sort_clean_f74e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort_clean_f74e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solid-08a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.solid-08a1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.smooth-3907 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.widget_96ce {
    display: flex;
    flex-direction: column;
}

.photo-dynamic-c5d4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.button_thick_3576 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.progress_static_fff4 {
    color: var(--accent-color);
}

.text-east-e04d {
    font-size: 1.25rem;
}

.west_654c {
    margin-bottom: 1rem;
}

.west_654c p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.progress-pink-2f24 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.clean_3ef4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.media-brown-eeb6 {
    text-align: center;
}

.container-brown-19b5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-1227 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.notification-over-e244 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-in-e45a {
    margin: 2rem 0;
}

.blue-0372 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.blue-0372 .bright-2a70 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle_e0b2 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.complex-0981 {
    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;
}

.complex-0981:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.glass_fd4a {
    font-size: 2rem;
}

.wrapper-b94b {
    display: flex;
    flex-direction: column;
}

.dim_58c3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.element-e6d2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.highlight_b5a6 {
    padding: var(--section-padding);
}

.dark-3179 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dark-3179 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dark-3179 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny-b7db {
    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);
}

.tiny-b7db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tiny-b7db .container-brown-19b5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tiny-b7db .detail-1227 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tiny-b7db .dark-bee1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.accent_blue_b175 {
    margin-top: 4rem;
}

.dark-fe35 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.search-warm-4e80 {
    overflow-x: auto;
}

.form-short-a5d8 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form-short-a5d8 thead {
    background: var(--accent-color);
}

.form-short-a5d8 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.form-short-a5d8 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.form-short-a5d8 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.form-short-a5d8 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.nav-f1ab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-5aaa {
    max-width: 900px;
    margin: 0 auto;
}

.main_old_25d5 {
    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);
}

.main_old_25d5:hover {
    border-color: var(--accent-color);
}

.out_1c01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.out_1c01 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.secondary_43fe {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.main_old_25d5.fn-active-03d8 .secondary_43fe {
    transform: rotate(45deg);
}

.steel-480b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.main_old_25d5.fn-active-03d8 .steel-480b {
    max-height: 1000px;
}

.steel-480b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.accent_54db {
    padding: var(--section-padding);
}

.mask-0a05 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.gallery-1a80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-5891 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-5891 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_dynamic_2248 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-023c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chip_middle_7fe2 {
    font-size: 2rem;
}

.down_5451 {
    color: var(--text-white);
    margin: 0;
}

.shade_bronze_c607 {
    list-style: none;
    padding: 0;
}

.shade_bronze_c607 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade_bronze_c607 li:last-child {
    border-bottom: none;
}

.nav-over-aa0b {
    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);
}

.nav-over-aa0b p {
    color: var(--success-color);
    margin: 0;
}

.detail-action-32c5 {
    margin-top: 3rem;
}

.static-10f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.image-white-299b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-white-299b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media-pro-418b {
    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);
}

.hidden-34aa {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media-pro-418b p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.surface_6ab3 {
    padding: var(--section-padding);
}

.rough_a125 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough_a125 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-6aa3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container-6aa3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.current-cae4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar-pink-9525 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tooltip_0d76 {
    flex: 1;
}

.photo_124a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.steel-c770 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.avatar-top-b82e {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-8d14 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active-8d14:last-child {
    border-bottom: none;
}

/* Comparison Section */
.text_d981 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.copper_d3f4 {
    padding: var(--section-padding);
}

.bronze-048b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.feature_dim_8586 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_dim_8586 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel_4b22 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-next-ca46, .detail-7e3e, .steel-6e98 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.steel-6e98 {
    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 */
.grid-59a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-a649 {
    margin: 2rem 0;
}

.summary-black-7000 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_1b3f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.over_6b45 {
    list-style: none;
    padding: 0;
}

.over_6b45 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;
}

.over_6b45 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.over_6b45 li:last-child {
    border-bottom: none;
}

.element-upper-752f {
    text-align: center;
    margin-top: 2rem;
}

.pink_b28d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.layout-dirty-7bab {
    padding: var(--section-padding);
}

.section_wood_f4c8 {
    margin: 2rem 0;
}

.heading_4847 {
    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) {
    .heading_4847 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.heading_4847:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.full-6875 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.avatar_large_c361 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.footer-4836 {
    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;
}

.panel_fc80 {
    flex: 1;
}

.description_silver_c5ca {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.carousel_dark_4a41 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider-pink-f6ff {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.search_6427 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .search_6427 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.cold-ecca {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cold-ecca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cold-ecca .container-brown-19b5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold-ecca .detail-1227 {
    color: var(--text-gray);
    font-size: 1rem;
}

.overlay-2fae {
    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);
}

.overlay-5eb0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.overlay-5eb0 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.image_b24a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .image_b24a {
        grid-template-columns: 1fr 1fr;
    }
}

.thumbnail_full_9c35 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_cool_4c63 {
    margin-bottom: 1.5rem;
}

.tag_cool_4c63 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tag_cool_4c63 input,
.tag_cool_4c63 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;
}

.tag_cool_4c63 input:focus,
.tag_cool_4c63 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fresh_9371 {
    width: 100%;
    margin-top: 1rem;
}

.bright_b15e {
    display: flex;
    align-items: center;
}

.form-light-6814 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.cool_fbb1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.column-579d {
    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;
}

.tag-hard-93e3 {
    color: var(--text-gray);
}

.hover-medium-1c48 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gradient-fa60 {
    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);
}

.gradient-fa60 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.wood_0074 {
    margin-top: 3rem;
}

.notification_368c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.input-58f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-basic-455e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.article-871a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-871a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.video_f894 {
    padding: var(--section-padding);
}

.tooltip_827d {
    margin: 2rem 0;
}

.fluid-5e21 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.content_plasma_b776 {
    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;
}

.content_plasma_b776:hover, .content_plasma_b776.fn-active-03d8 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.link-13aa {
    display: none;
}

.link-13aa.fn-active-03d8 {
    display: block;
}

.texture_4abf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_8c9c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.header-b925 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.header-b925 ul {
    list-style: none;
    padding: 0;
}

.header-b925 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.header-b925 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pagination-easy-ca1a {
    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 */
.input_cold_1a16 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-old-ef1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-out-57c2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon_3f8b {
    color: var(--accent-color);
    margin: 0;
}

.tertiary-ed7a {
    display: flex;
    gap: 1.5rem;
}

.advanced-a341 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.info-basic-d079 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.heading-cool-5560 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-cool-5560.wrapper-d5b5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.heading-cool-5560.mask-out-8d78 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.heading-cool-5560.selected_6216 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.article_aac8 {
    margin-top: 2rem;
}

.table_fa08 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_selected_9139 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .sort_selected_9139 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-8ebb {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.article-971e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.box_8b08 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hover_cool_1d79 {
    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 */
.message_north_f36c {
    padding: var(--section-padding);
}

.pagination_advanced_5f8f {
    margin: 2rem 0;
}

.status-81b8 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.clean-437d {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.hidden_1664 {
    list-style: none;
    padding: 0;
}

.hidden_1664 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;
}

.hidden_1664 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.hidden_1664 li:last-child {
    border-bottom: none;
}

.filter-huge-5dc1 {
    margin: 2rem 0;
}

.warm-cae7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.menu-d7a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .menu-d7a9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro_ae8a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner-fafe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.new-fce1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery_a318 {
    margin-top: 2rem;
}

.hard_0dae {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.dynamic_6d7b {
    list-style: none;
    padding: 0;
}

.gradient_2ba1 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.gradient_2ba1 a {
    color: var(--accent-color);
    text-decoration: none;
}

.gradient_2ba1 a:hover {
    text-decoration: underline;
}

.article-e344 {
    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 */
.header-white-b1b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_5343 {
    margin: 2rem 0;
}

.overlay-e1ab {
    margin-bottom: 3rem;
}

.overlay-e1ab .light_1b3f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tiny_2866 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.widget_4946 {
    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);
}

.widget_4946:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.motion-37b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .motion-37b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_1f48 {
    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 */
.secondary-advanced-3412 {
    padding: var(--section-padding);
}

.outline-hovered-cc36 {
    margin: 2rem 0;
}

.gradient-b634 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture-f2be {
    overflow-x: auto;
    margin: 2rem 0;
}

.summary-clean-5f99 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.under_580f {
    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;
}

.progress-soft-cac7 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.message-8fb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .message-8fb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_150f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_150f .bright-2a70 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.status_150f .hero_c760 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_hard_57d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.simple_35ad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_black_d414 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_black_d414 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-last-b43c {
    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;
}

.backdrop-last-b43c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.avatar_mini_6cd1 {
    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);
}

.input-complex-aac9 {
    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;
}

.box_072f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.plasma-c2b0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.sort-6349 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-f560 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fresh_2565 {
    color: var(--text-white);
    font-weight: 600;
}

.notice-b544 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background-27b0 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.background-27b0 .gradient-e7f2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fresh_452e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fresh_452e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-green-f749 {
    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);
}

.info-green-f749:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info-green-f749 .container-brown-19b5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-green-f749 .detail-1227 {
    color: var(--text-gray);
    font-size: 1rem;
}

.footer-e54d {
    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);
}

.hero-pressed-bdb9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-pressed-bdb9 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.dirty-fd02 {
    margin: 2rem 0;
}

.shadow_first_582c {
    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);
}

.shadow_first_582c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.first-3718 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.north_8f20 {
    flex: 1;
}

.overlay_basic_1fc9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood_02b8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.dim_2cc8 {
    margin: 2rem 0;
}

.secondary_6018 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_6018 .hero_c760 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.secondary_6018 .background_red_f46c {
    color: var(--text-gray);
    margin: 0;
}

.popup-9d26 {
    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);
}

.popup-9d26 .sidebar_d455 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.aside_hard_57d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.image-140f {
    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;
}

.light-77d5 {
    flex: 1;
}

.filter-complex-8170 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tiny_74eb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.stone-e3ab {
    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;
}

.detail-left-3dbd {
    flex: 1;
}

.backdrop_selected_45a4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.current_ec84 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.inner_412a {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pressed_7e57 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.active_599d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.active_599d .gradient-e7f2 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.secondary-f06f {
    margin-top: 2rem;
}

.secondary-f06f .static-10f3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.outline-prev-295e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-brown-0086 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notification-brown-0086 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-brown-0086 .media-brown-eeb6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-12ce {
    margin: 2rem 0;
}

.video-solid-e8b1 {
    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 */
.heading_rough_eca5 {
    padding: var(--section-padding);
}

.button-focused-0c55 {
    margin-top: 1rem;
}

.accordion_1fff {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.accordion_1fff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.accordion_1fff li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.dynamic_9ce6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_dim_f8e6 {
    margin: 2rem 0;
}

.selected_b86a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.title_tall_9060 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card_0f75 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.block-2a71 {
    margin: 2rem 0;
}

.main_a3e4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.main_a3e4 .light_1b3f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gold-70bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gold-70bc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter-1433 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.border-narrow-8952 {
    color: var(--text-white);
    font-weight: 600;
}

.row_motion_d7c7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.plasma_b2de {
    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);
}

.plasma_b2de p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.modal-short-6b78 {
    padding: var(--section-padding);
}

.solid-37a2 {
    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;
}

.solid-37a2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.top-b14e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-b14e .hidden-34aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.top-b14e .chip-thick-a673 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.status_f50d {
    flex: 1;
}

.panel_297c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.background_lower_82c7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_lower_82c7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.background_lower_82c7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fixed-0c9c {
    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);
}

.fixed-0c9c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fixed-0c9c strong {
    color: var(--warning-color);
}

/* Slots Section */
.description_afed {
    padding: var(--section-padding);
}

.surface_59d5 {
    margin: 2rem 0;
}

/* Table Games Section */
.nav-brown-92f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_8022 {
    margin: 2rem 0;
}

.next_a6db {
    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);
}

.next_a6db:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.next_a6db .section-edc4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.next_a6db .nav_north_1592 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.copper_4867 {
    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);
}

.copper_4867 .sidebar_d455 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.surface_4952 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_glass_8af5 {
    margin: 2rem 0;
}

.avatar_e7a5 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-318b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tall-a99b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.down-305b {
    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);
}

.down-305b:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.down-305b.fn-active-03d8 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label_right_7620 {
    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);
}

.wide-5710 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wide-5710 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.thumbnail-38bc {
    padding: var(--section-padding);
}

.message-33b4 {
    margin: 2rem 0;
}

.input_next_f59b {
    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);
}

.input_next_f59b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .input_next_f59b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.grid-bronze-7911 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.sort-thick-27ef {
    flex: 1;
}

.hard-6350 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.green-50ee {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hard-49a7 {
    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;
}

.hero_6684 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gold-340f {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info_bottom_633e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.block-under-58a0 {
    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;
}

.block-under-58a0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slider-clean-7b3b {
    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);
}

.steel-0e62 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel-0e62 strong {
    color: var(--accent-color);
}

/* New Games Section */
.card_49a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer-de2a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outer-de2a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer-de2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-06f7 {
    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;
}

.content-06f7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.light_9d94 {
    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;
}

.popup_pro_232f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.content-glass-d268 {
    font-size: 2rem;
}

.bottom-a754 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.popup-active-1d0b {
    flex: 1;
}

.search_a972 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.picture_gas_6142 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status_focused_54e9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-a778 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.video_ba23 {
    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;
}

.element_fb65 {
    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;
}

.element_fb65:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.outline_smooth_6092 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview-d387 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-plasma-b18f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gradient-plasma-b18f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_gas_920d {
    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);
}

.video-4868 {
    color: var(--text-white);
    font-weight: 600;
}

.clean-f6ac {
    color: var(--accent-color);
    font-weight: 600;
}

.popup_1fb3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.popup_1fb3 strong {
    color: var(--accent-color);
}

/* Security Section */
.chip_ab1c {
    padding: var(--section-padding);
}

/* Benefits Section */
.container-under-4583 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.top-ec82 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tag_ced7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_up_0487 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.sort-last-c1a5 {
    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) {
    .sort-last-c1a5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.sort-last-c1a5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sort-last-c1a5 .stone-e3ab {
    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;
}

.sort-last-c1a5 .detail-left-3dbd {
    flex: 1;
}

.sort-last-c1a5 .backdrop_selected_45a4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.sort-last-c1a5 .current_ec84 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tag-e1cf {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-e1cf .stone_48fb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag-e1cf .badge_north_d6bb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-e1cf .badge_north_d6bb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tag-e1cf .badge_north_d6bb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.slider_db29 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.mask-9f80 {
    padding: var(--section-padding);
}

.shadow-old-41d2 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .shadow-old-41d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_black_f437 {
    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);
}

.card_black_f437:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.card_black_f437 .row_f81a {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_black_f437 .west_f5c9 {
    flex: 1;
}

.card_black_f437 .sidebar_0ecd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card_black_f437 .cold-fc7c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.modal-last-6ee2 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-last-6ee2 .north_e534 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-last-6ee2 .description_copper_02e2 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.modal-last-6ee2 .description_copper_02e2 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);
}

.modal-last-6ee2 .description_copper_02e2 li:last-child {
    border-bottom: none;
}

.modal-last-6ee2 .description_copper_02e2 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;
}

.modal-last-6ee2 .description_copper_02e2 li strong {
    color: var(--text-white);
}

.module-static-8000 {
    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);
}

.module-static-8000 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module-static-8000 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.thumbnail_upper_a437 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_3229 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip_3229 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last_fc3b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last_fc3b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.button-0107 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-ae4b {
    font-size: 2rem;
}

.middle-e6f2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.left-3c53 {
    flex: 1;
}

.fluid-1588 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fluid-1588 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fluid-1588 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.over-49a5 {
    margin-top: 3rem;
}

.status-81b8 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.clean-437d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_1664 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_1664 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hidden_1664 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hidden_1664 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.north-8a16 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light_011f {
    margin: 2rem 0;
}

.row-in-7059 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.row-in-7059 .light_1b3f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stone-32ad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stone-32ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outline_action_6d89 {
    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);
}

.outline_action_6d89:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.badge-bronze-acb9 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.icon_01cd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.section-center-e504 {
    padding: var(--section-padding);
}

.component_lower_f514 {
    margin: 2rem 0;
}

.banner-black-8dc4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .banner-black-8dc4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-black-8dc4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.purple-200d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.purple-200d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.disabled_bright_beba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.input_1835 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.content-light-249c {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.content-light-249c.motion-681e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.label-new-f8fd {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.label_dim_8dbe {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.link-first-73d4 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.outer_3095 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb-9470 {
    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);
}

.breadcrumb-9470 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb-9470 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.heading_old_9f8e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-black-ee61 {
    margin: 2rem 0;
}

.rough_debe {
    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) {
    .rough_debe {
        flex-direction: column;
        gap: 1rem;
    }
}

.rough_debe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.rough_debe::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);
}

.silver_39b7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.surface-full-0133 {
    flex: 1;
}

.breadcrumb_slow_8e68 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.left-c1db {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-c1db li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_1201 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_east_0cc6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_top_8774 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .label_top_8774 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-fixed-9590 {
    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);
}

.content-8d10 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.banner-d5b8 {
    flex: 1;
}

.large_62f0 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.active_right_fd5c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accordion_5c8c {
    margin-top: 2rem;
    text-align: center;
}

.block_dim_a51e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_dim_a51e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.footer_7ce3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_7ce3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_68df {
    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);
}

.notice_68df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notice_68df .text_4919 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_68df .layout_975a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.notice_68df .shade_west_3aee {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.notice_68df .photo-motion-e9b6 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.grid_eb7a {
    padding: var(--section-padding);
}

.down_56df .block-9541 {
    flex: 1;
}

/* Promo Calendar Section */
.notice-abe8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_prev_21ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_prev_21ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_huge_a4e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_bdc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.silver_eb7b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pagination_lower_8c4f {
    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);
}

.article_7b2e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.wide_29ae {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.description_north_5a78 {
    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);
}

.description_north_5a78 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_north_5a78 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.tall_9318 {
    padding: var(--section-padding);
}

.focused_db20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .focused_db20 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-756f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-8f41 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_narrow_b1f1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_narrow_b1f1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-6415 {
    margin-top: 3rem;
}

.hover-6415 .status-81b8 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hover-6415 .clean-437d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hover-6415 .hidden_1664 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hover-6415 .hidden_1664 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hover-6415 .hidden_1664 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hover-6415 .hidden_1664 li strong {
    color: var(--warning-color);
}

.orange-f0b7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.orange-f0b7 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.primary-small-422f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-8ce7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-8ce7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-east-7d55 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-east-7d55 .light_1b3f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.selected_e38d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.short-8ca2 {
    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);
}

.short-8ca2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.footer_inner_21e7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_3687 {
    flex: 1;
}

.plasma_e24b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.header-bottom-adf1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disabled-purple-f885 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.preview-1d72 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.footer_stone_2022 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .footer_stone_2022 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-e617 {
    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);
}

.content-e617:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress-green-f1e7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.warm_ef0b {
    color: var(--text-gray);
    font-size: 1rem;
}

.overlay-5eb0 {
    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);
}

.east_6139 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.east_6139 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.search_last_36e8 { 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; }
.clean_1210, .carousel_bcaa { max-width:100%; height:auto; }

.alert-9e1e, .pagination-e32b, .blue_120a { white-space:normal; }

.tertiary-0ec9,
.logo_upper_68b7,
.primary_7970,
.footer_7ce3,
.dim_2cc8,
.active_364f {
  flex-wrap:wrap;
}

[class*="grid"],
.footer_stone_2022,
.banner-black-8dc4,
.green_c8bc {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.container-4eba img,
.logo_upper_68b7 img,
.bottom-a7b7 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.highlight-rough-68b1, .badge_7009,
.modal_8e0a, .yellow_b2b2 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.search-warm-4e80 { width:100%; overflow-x:auto; }
.search-warm-4e80 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.disabled_c66a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .disabled_c66a {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.progress_slow_e6c0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.dark-3179,
.accordion-5845,
.grid_prev_05a4,
.frame_347d,
.search_6427,
.footer_stone_2022,
.banner-black-8dc4,
.green_c8bc,
.nav-copper-4ee6,
.message-33b4,
.disabled_c66a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .dark-3179,
  .accordion-5845,
  .grid_prev_05a4,
  .frame_347d,
  .search_6427,
  .footer_stone_2022,
  .banner-black-8dc4,
  .green_c8bc,
  .nav-copper-4ee6,
  .message-33b4,
  .disabled_c66a {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tiny-b7db,
.cold-ecca,
.content-e617,
.footer_2c4e,
.purple-200d,
.hovered_1c78,
.input_next_f59b,
.progress_slow_e6c0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.banner-bronze-41c6,
.in_aa0d,
.thick-8a97 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.banner-bronze-41c6 > *,
.in_aa0d > *,
.thick-8a97 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7e4a */
.shadow-element-a3 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
