/* {$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;
}

.fixed-a83b {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hard_6840 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hard_6840 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hard_6840 {
        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 */
.status-8a24 {
    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);
}

.hero_5f00 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .hero_5f00 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .pressed-0a7f {
        grid-column: 1;
    }
    
    .slider-wide-2e91 {
        grid-column: 2;
    }
    
    .panel_7421 {
        grid-column: 3;
    }
}

.pressed-0a7f img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.pressed-0a7f:hover img {
    transform: scale(1.05);
}

/* Navigation */
.status-65e5 {
    display: none;
}

@media (min-width: 1024px) {
    .status-65e5 {
        display: block;
    }
}

/* Grouped Navigation */
.tooltip-bc00 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.notification-first-8cf0 {
    position: relative;
}

.hero-inner-3811 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.notification-first-8cf0 .menu_left_36fd {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.menu_left_36fd {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.slider_c597 {
    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;
}

.slider_c597:hover,
.slider_c597.fn-active-2a63 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.notice_easy_82ca {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .notice_easy_82ca {
        display: flex;
    }
}

/* Mobile Register Button */
.slider-wide-2e91 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .slider-wide-2e91 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.border_1ac0 {
    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;
}

.border_1ac0::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 */
.panel_7421 {
    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) {
    .panel_7421 {
        display: none;
    }
}

.panel_7421 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.panel_7421.fn-active-2a63 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.panel_7421.fn-active-2a63 span:nth-child(2) {
    opacity: 0;
}

.panel_7421.fn-active-2a63 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.preview_selected_2e49 {
    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;
}

.preview_selected_2e49.fn-active-2a63 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.modal-middle-de37 {
    overflow: hidden;
}

.icon_down_29f3 {
    list-style: none;
    padding: 0.75rem 0;
}

.small-8ebf {
    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;
}

.small-8ebf:hover,
.small-8ebf.fn-active-2a63 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.small-8ebf.box_iron_c83e {
    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;
}

.small-8ebf.box_iron_c83e::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 */
.caption-43f1 {
    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;
}

.surface_bbf2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.surface_bbf2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.stone-5a77 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.stone-5a77:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.left_acf8 {
    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;
}

.left_acf8:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.inner-d135 {
    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;
}

.gradient-silver-22e8 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.gradient-silver-22e8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.iron-9948 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.iron-9948:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.gold-0dcc {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.gold-0dcc: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);
}

.sort-12c1 {
    font-size: 1em;
    font-weight: 700;
}

.breadcrumb-clean-ba55 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.orange-7b8f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.orange-7b8f::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;
}

.purple-4219 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .purple-4219 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.logo-f81d {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.form-thick-d3de {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.banner_7c33 {
    margin-bottom: 2rem;
}

.item-50be {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .item-50be {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick_8d14 {
    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);
}

.shadow-cool-f30f {
    font-size: 1.5rem;
}

.breadcrumb_4738 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.alert-44cb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion_c04c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.accordion_c04c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.block_wide_188a {
    text-align: center;
    margin-bottom: 3rem;
}

.component_cafb {
    margin-bottom: 1rem;
}

.progress-8ebe {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.sort-71f5 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .sort-71f5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .sort-71f5.paragraph-f32f {
        direction: rtl;
    }
    
    .sort-71f5.paragraph-f32f > * {
        direction: ltr;
    }
}

.shade_dynamic_9c51 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.shade_dynamic_9c51:first-child {
    margin-top: 0;
}

.west-2a4e {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal_1409 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.modal_1409:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.summary_cold_21dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_cold_21dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-86f8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-gold-140e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.upper_57ee {
    list-style: none;
}

.upper_57ee li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper_57ee li:last-child {
    border-bottom: none;
}

/* Games Features */
.dynamic_b5d0 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.breadcrumb-hard-c6ad {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.title_purple_6c21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-0113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.link-6379 {
    margin: 2rem 0;
}

.hard_6013 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dynamic-22c3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.block-fast-0bcb {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.background_2496 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.tertiary_9ef6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_9ef6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_4961 {
    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);
}

.paragraph_4961:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.picture-3cd3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.background-current-06a2 {
    font-size: 1.5rem;
}

.card_3482 {
    color: var(--accent-color);
    margin: 0;
}

.west_dbec {
    list-style: none;
}

.west_dbec li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.west_dbec li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.wood_51f9 {
    margin: 2rem 0;
}

.info_c2eb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.outline_soft_ee30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .outline_soft_ee30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_33b3 {
    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);
}

.simple_9f11 {
    font-size: 1.25rem;
}

.link-ee5a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.purple-d4bf,
.shadow_1340 {
    text-align: center;
    margin: 2rem 0;
}

.panel-007d,
.link-3dcd {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.title_out_0cdd {
    margin: 2rem 0;
    text-align: center;
}

.pressed_92b0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pressed_92b0::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;
}

.summary_first_337d {
    position: relative;
    z-index: 1;
}

.column_middle_d1e7 {
    margin-bottom: 1rem;
}

.logo_4519 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-slow-b6b5 {
    margin-bottom: 3rem;
}

.background-smooth-5cfe {
    margin-top: 3rem;
}

.upper-13b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .upper-13b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-13b5 .thick_8d14 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm_412f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block-solid-7ad4 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.table-ea04 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.bronze_c295 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .bronze_c295 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bronze_c295 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.modal_prev_4291 {
    margin-bottom: 1rem;
}

.notice_left_1e4f img {
    margin-bottom: 1rem;
}

.blue_7515 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-9758 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.photo-5e19 {
    list-style: none;
}

.photo-5e19 li {
    margin-bottom: 0.5rem;
}

.photo-5e19 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.photo-5e19 a:hover {
    color: var(--accent-color);
}

.status_2083 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.last-abdf {
    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);
}

.last-abdf:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hover_fc7d {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hover_fc7d p {
    margin-bottom: 0.25rem;
}

.component-new-22c2 {
    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) {
    .component-new-22c2 {
        flex-direction: row;
    }
}

.shade-f854 {
    text-align: center;
}

@media (min-width: 768px) {
    .shade-f854 {
        text-align: left;
    }
}

.shade-f854 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.texture_d4f5 {
    font-size: 0.75rem !important;
}

.dropdown_yellow_5e3e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.texture-glass-09da {
    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);
    }
}

.input-up-675e {
    animation: fadeInUp 0.6s ease-out;
}

.dynamic_e4cc {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.active-9dcd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-9dcd {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.light-270b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-270b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_fixed_d6aa {
    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);
}

.message_fixed_d6aa .title_purple_6c21 {
    font-size: 1.25rem;
}

.message_fixed_d6aa .hero-4919 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.huge-259a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .huge-259a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused_dee3 {
    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);
}

.focused_dee3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_prev_3ba1 {
    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);
}

.large-0348 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort-6362 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_4d7b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new_3180 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.new_3180 .advanced-0113 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.new_3180 .tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_e87a {
    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);
}

.grid-4bdd {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.grid-4bdd img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.grid-4bdd img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.list_26cb {
    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);
}

.rough-53a8 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.layout-6afa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layout-6afa label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.layout-6afa 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);
}

.layout-6afa input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.layout-6afa input::placeholder {
    color: var(--text-muted);
}

.first-148b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-c41d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.highlight-c41d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.thick-a8b8 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.thick-a8b8:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.outline_soft_ee30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_soft_ee30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_33b3 {
    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);
}

.modal_33b3 .simple_9f11 {
    font-size: 1.25rem;
}

.modal_33b3 .link-ee5a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.form-c40c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_motion_da26 {
    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);
}

.component_motion_da26 .title_purple_6c21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_motion_da26 .advanced-0113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_motion_da26 .tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-16ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_4590 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip_4590 .card_b893 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip_4590 .complex-df25 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar_dark_a3b2 {
    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);
}

.banner_9934 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_9934 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-old-14bb {
    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);
}

.grid-old-14bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_old_0b7b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.old_4994 {
    flex: 1;
}

.mini-b9b6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.row-stone-9a8d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hot-992a {
    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);
}

.hot-992a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.menu_hot_0243 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_hot_0243 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section_stone_113c {
    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);
}

.section_stone_113c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall-8206 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-mini-ec25 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-down-773c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column-ad6a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.easy_4d68 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-4dda {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_up_db99 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.background_up_db99 .status_ed31 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background_up_db99 .smooth_2e19 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-complex-4afb {
    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);
}

.prev_146c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_cold_9924 {
    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);
}

.primary_cold_9924 .title_purple_6c21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_cold_9924 .advanced-0113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary_cold_9924 .tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-77fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-77fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_bottom_674a {
    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);
}

.sort_bottom_674a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.section-7f3a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-7f3a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_fae3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dirty_fae3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_c7fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_b835 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dynamic-22c3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.slow-f4fd {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.under_cb0c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-in-6e51 {
    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);
}

.gallery-in-6e51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.plasma-35aa {
    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);
}

.layout_black_c3ad {
    flex: 1;
}

.element-8d17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.frame-15c8 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.badge-3f22 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-755d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool-9420 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-9420 .card_b893 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool-9420 .complex-df25 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_1340 {
    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);
}

.grid_3890 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_3890 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.cold-b7d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cold-b7d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-2a9b {
    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);
}

.link-2a9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button_71bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected-992b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav_c354 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.simple_0b32 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.breadcrumb_213e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_c28f {
    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);
}

.south_48c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_a8ba {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-simple-1905 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev_146c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_cold_9924 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.primary_cold_9924 .advanced-0113 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_cold_9924 .tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-light-f48f {
    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);
}

.element_2cf4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element_2cf4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element_2cf4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right_7da4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.right_7da4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_d187 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-hard-6ca3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.photo-dirty-12bd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.feature-large-f727 {
    padding: 1.5rem;
}

.border_506f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.small_3345 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small_3345 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;
}

.small_3345 li:last-child {
    border-bottom: none;
}

.small_3345 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.message_bright_9435 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_bright_9435 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_78de {
    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);
}

.outer_78de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-36b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow_9087 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hot_97b5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.notification-3c1b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.video_hot_4113 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_16e3 {
    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);
}

.breadcrumb_north_e07c {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-static-d2e7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bottom_102f {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_hovered_d00d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-bd81 {
    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);
}

.text-bronze-af9b {
    text-align: center;
}

.link_gold_e3ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.text_8945 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.north_099d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_e231 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_e231 .advanced-0113 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media_e231 .tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-d1e1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dim-d1e1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dim-d1e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-plasma-0e95 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-plasma-0e95:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_79e7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_stale_271b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.advanced-0113 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.message_0b0a {
    padding: 1.5rem;
}

.tooltip_1ef9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.copper_9407 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper_9407 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;
}

.copper_9407 li:last-child {
    border-bottom: none;
}

.copper_9407 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.photo_steel_cf34 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pink-ac8d {
    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);
}

.pink-ac8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-bd4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-c3f2 {
    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);
}

.badge_prev_3ba1 {
    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;
}

.large-0348 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-6362 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_b28b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-0dbc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tiny-bd7a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header_full_a8eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.logo-74df {
    display: flex;
    gap: 1rem;
}

.logo-74df .box_paper_8f02 {
    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;
}

.row-a7b3 {
    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);
}

.green_adc7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo-green-ab5d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-green-ab5d 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;
}

.photo-green-ab5d li:last-child {
    border-bottom: none;
}

.photo-green-ab5d li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.form-c628 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .form-c628 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form-c628 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_wide_fd00 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout_wide_fd00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-out-9bb3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-huge-0497 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status_ed31 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.smooth_cb30 {
    font-size: 1rem;
}

.accent-eb5d {
    padding: 1.5rem;
}

.smooth_2e19 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.secondary-2c72 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.secondary-2c72 .text-bronze-af9b {
    text-align: center;
}

.secondary-2c72 .text_8945 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.secondary-2c72 .tag_smooth_9a2b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.green_87ab {
    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);
}

.green_87ab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.thumbnail_dc30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_dc30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-4fcf {
    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);
}

.left-4fcf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_8069 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom-ef7a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight-over-2d2e {
    font-size: 2rem;
    flex-shrink: 0;
}

.static-76d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-70c1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_4ef9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid_d13f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-9326 {
    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);
}

.filter-down-6150 {
    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;
}

.filter-down-6150.element_over_f9bd {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.filter-down-6150.widget-full-7c7d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.filter-down-6150.selected-f431 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.filter-down-6150.element_365b {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.filter-down-6150.header-00a8 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.texture_dark_49b2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bottom-7996 {
    color: var(--text-gray);
    line-height: 1.6;
}

.large-f474 {
    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);
}

.status_a262 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hard-16ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-16ea 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;
}

.hard-16ea li:last-child {
    border-bottom: none;
}

.hard-16ea li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wrapper_north_b01f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_north_b01f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_north_b01f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-copper-ae64 {
    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-copper-ae64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-copper-ae64.lite_c043 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .detail-copper-ae64.lite_c043 {
        grid-column: span 3;
    }
}

.advanced-8b00 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.detail-copper-ae64.lite_c043 .advanced-8b00 {
    background: rgba(6, 182, 212, 0.1);
}

.in_e4a8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.new_5936 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.detail-copper-ae64.lite_c043 .new_5936 {
    color: var(--info-color);
}

.box_gold_9de4 {
    padding: 1.5rem;
    text-align: center;
}

.west-8569 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.detail-copper-ae64.lite_c043 .west-8569 {
    color: var(--info-color);
}

.detail-e479 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.text-240e {
    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 */
.module_orange_c978 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_orange_c978 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_smooth_fbeb {
    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);
}

.form_smooth_fbeb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_ace3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_motion_da26 {
    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);
}

.simple_9f11 {
    font-size: 2rem;
    flex-shrink: 0;
}

.white-3dfa {
    flex: 1;
}

.info_c2eb {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row-copper-df31 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-7090 {
    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);
}

.grid-4a8a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sort-out-2cba {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.texture-glass-09da {
    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);
}

.alert_54ba {
  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);
}

.alert_54ba .text-bronze-af9b {
    text-align: center;
}

.alert_54ba .link_gold_e3ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.alert_54ba .text_8945 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.video-lower-dbe9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-out-a8cd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-4a33 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link_hard_915a {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-ab06 {
    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);
}

.banner_c50a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-blue-efeb {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-1a7b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .prev-1a7b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .prev-1a7b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered_c673 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hovered_c673:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-light-7386 {
    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);
}

.aside-973a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.surface-selected-ea4b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.media-6421 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-6421.dropdown-prev-5ec7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.media-6421.description-f7d2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.media-6421.dim_be07 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.search_020d {
    padding: 1.5rem;
    text-align: center;
}

.dirty-1bb6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget_brown_90e4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.widget_brown_90e4 .pattern-tiny-7801 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.picture_paper_824a {
    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);
}

.picture_paper_824a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.action-3384 {
  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);
}

.orange-ca40 {
    text-align: center;
}

.orange-ca40 .link_gold_e3ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.orange-ca40 .text_8945 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tabs_0419 { text-align: center; }
.gold-48c2 { text-align: left; }
.avatar_ed6a { text-align: right; }

.bright_617c { margin-bottom: 0; }
.secondary_out_df12 { margin-bottom: 0.5rem; }
.grid-motion-5716 { margin-bottom: 1rem; }
.up-4936 { margin-bottom: 1.5rem; }
.text-last-33ad { margin-bottom: 2rem; }

.summary_8416 { margin-top: 0; }
.old-eaee { margin-top: 0.5rem; }
.avatar_old_33f5 { margin-top: 1rem; }
.popup_glass_7563 { margin-top: 1.5rem; }
.item_middle_4d0a { margin-top: 2rem; }

.fn-hidden-2a63 { display: none; }
.fn-visible-2a63 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .orange-7b8f {
        padding: 6rem 0 3rem;
    }
    
    .purple-4219 {
        text-align: center;
    }
    
    .sort-71f5 {
        text-align: center;
    }
    
    .item-50be {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .status-8a24,
    .preview_selected_2e49,
    .pressed_92b0,
    .table-ea04 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .orange-7b8f {
        background: none;
    }
}

/* Providers Section */
.tertiary-8ec4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_selected_7ef9 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_selected_7ef9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay_selected_7ef9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-f50f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-f50f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification_98ef {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.west_5d18 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar_cfb0 {
    list-style: none;
    padding: 0;
}

.sidebar_cfb0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.sidebar_cfb0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.article-4798 {
    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);
}

.article-4798 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.tabs-8c7d {
    padding: var(--section-padding);
}

.focused-a722 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focused-a722 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module_simple_3d69 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module_simple_3d69:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.west-c3f0 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.article-narrow-64b0 {
    display: flex;
    flex-direction: column;
}

.pattern-north-202d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dirty-e5e7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.over_2a76 {
    color: var(--accent-color);
}

.search-5872 {
    font-size: 1.25rem;
}

.orange-a5b9 {
    margin-bottom: 1rem;
}

.orange-a5b9 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.border-0783 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.white_7fd4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.text-bronze-af9b {
    text-align: center;
}

.link_gold_e3ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.text_8945 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.soft_429a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-74d8 {
    margin: 2rem 0;
}

.active_center_a5fd {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.active_center_a5fd .title_purple_6c21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_dim_9990 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pressed_d898 {
    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;
}

.pressed_d898:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.table-6e94 {
    font-size: 2rem;
}

.table-37d3 {
    display: flex;
    flex-direction: column;
}

.label_1852 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pressed-2c3f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.pagination-paper-5dc4 {
    padding: var(--section-padding);
}

.picture-f45e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .picture-f45e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-f45e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-b800 {
    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);
}

.short-b800:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.short-b800 .link_gold_e3ee {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.short-b800 .text_8945 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.short-b800 .out-25f1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.button_smooth_3e79 {
    margin-top: 4rem;
}

.card-wide-5c05 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.motion-e0b9 {
    overflow-x: auto;
}

.smooth_8268 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.smooth_8268 thead {
    background: var(--accent-color);
}

.smooth_8268 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.smooth_8268 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth_8268 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.smooth_8268 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.tabs-top-4666 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar-dark-0dd5 {
    max-width: 900px;
    margin: 0 auto;
}

.motion_1c2a {
    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);
}

.motion_1c2a:hover {
    border-color: var(--accent-color);
}

.hard-22e8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hard-22e8 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.left-e046 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.motion_1c2a.fn-active-2a63 .left-e046 {
    transform: rotate(45deg);
}

.small_f5d7 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.motion_1c2a.fn-active-2a63 .small_f5d7 {
    max-height: 1000px;
}

.small_f5d7 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.green-d854 {
    padding: var(--section-padding);
}

.grid-4bdd {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.wrapper-advanced-8daa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-active-2fcb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-active-2fcb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion-5f75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-b832 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tag-872e {
    font-size: 2rem;
}

.hidden-soft-3558 {
    color: var(--text-white);
    margin: 0;
}

.highlight_f5e0 {
    list-style: none;
    padding: 0;
}

.highlight_f5e0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_f5e0 li:last-child {
    border-bottom: none;
}

.over_2186 {
    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);
}

.over_2186 p {
    color: var(--success-color);
    margin: 0;
}

.red-2962 {
    margin-top: 3rem;
}

.green_adc7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.breadcrumb_9ac0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .breadcrumb_9ac0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dark-4495 {
    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);
}

.pagination_stone_b6f6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dark-4495 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.overlay_e129 {
    padding: var(--section-padding);
}

.title_1c12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_1c12 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_6dab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main_6dab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.content-7388 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gradient_lower_e6be {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tabs_out_eeac {
    flex: 1;
}

.pagination-977b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.form_fluid_4123 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.widget_e705 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-center-8c44 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-center-8c44:last-child {
    border-bottom: none;
}

/* Comparison Section */
.fast_981d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.down-d288 {
    padding: var(--section-padding);
}

.last_af14 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.avatar-50a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-50a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_27a2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_33da, .caption_static_7ce1, .progress_4e5b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.progress_4e5b {
    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 */
.blue_0300 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_north_73c4 {
    margin: 2rem 0;
}

.card-034b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-fluid-9e27 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.over-8e82 {
    list-style: none;
    padding: 0;
}

.over-8e82 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-8e82 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.over-8e82 li:last-child {
    border-bottom: none;
}

.logo_6c57 {
    text-align: center;
    margin-top: 2rem;
}

.accent_d99b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.banner-tiny-e164 {
    padding: var(--section-padding);
}

.action_f511 {
    margin: 2rem 0;
}

.nav-e747 {
    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) {
    .nav-e747 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav-e747:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.glass_aa93 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.last-1a69 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.light_d514 {
    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;
}

.backdrop_pressed_95f2 {
    flex: 1;
}

.hero_1417 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.slider-tiny-5f7a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.iron-0367 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.stale-6b3c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .stale-6b3c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.dim-c4f6 {
    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);
}

.dim-c4f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim-c4f6 .link_gold_e3ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-c4f6 .text_8945 {
    color: var(--text-gray);
    font-size: 1rem;
}

.input-light-e5dd {
    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);
}

.slider_brown_97ce {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.slider_brown_97ce strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.secondary-stone-2a3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .secondary-stone-2a3e {
        grid-template-columns: 1fr 1fr;
    }
}

.steel_2430 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_right_663a {
    margin-bottom: 1.5rem;
}

.accent_right_663a label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.accent_right_663a input,
.accent_right_663a 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;
}

.accent_right_663a input:focus,
.accent_right_663a select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.row_8e07 {
    width: 100%;
    margin-top: 1rem;
}

.action-b420 {
    display: flex;
    align-items: center;
}

.notice-134e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.under_7351 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.primary-full-ce8c {
    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;
}

.paragraph-1821 {
    color: var(--text-gray);
}

.rough_d6ab {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.form-complex-f04c {
    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);
}

.form-complex-f04c p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.title-next-951e {
    margin-top: 3rem;
}

.column-bb93 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.banner-hard-af15 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_lite_bf2c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.complex-7724 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.complex-7724:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.slider_fast_f9e9 {
    padding: var(--section-padding);
}

.cold_1b00 {
    margin: 2rem 0;
}

.wrapper-abe8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.block_cd1d {
    padding: 1rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
}

.block_cd1d:hover, .block_cd1d.fn-active-2a63 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tabs-wood-85d0 {
    display: none;
}

.tabs-wood-85d0.fn-active-2a63 {
    display: block;
}

.main_old_2dff {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-east-e5f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.advanced-28b4 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.advanced-28b4 ul {
    list-style: none;
    padding: 0;
}

.advanced-28b4 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.advanced-28b4 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.carousel-purple-5ce5 {
    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 */
.thumbnail_2452 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-in-6835 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-91ee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort_mini_136a {
    color: var(--accent-color);
    margin: 0;
}

.shade_3248 {
    display: flex;
    gap: 1.5rem;
}

.popup_south_00a4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.rough_2e36 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.paragraph-821d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph-821d.prev_8507 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.paragraph-821d.mini_d53e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.paragraph-821d.surface_simple_78b5 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.menu_86aa {
    margin-top: 2rem;
}

.dirty_4b29 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.list_gold_82de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .list_gold_82de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-west-8cd2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.glass-ca6c {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_3462 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.dim_cde2 {
    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 */
.disabled_5cfc {
    padding: var(--section-padding);
}

.pressed-b81e {
    margin: 2rem 0;
}

.silver-2386 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.list_0439 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.media-4bc2 {
    list-style: none;
    padding: 0;
}

.media-4bc2 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;
}

.media-4bc2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.media-4bc2 li:last-child {
    border-bottom: none;
}

.slider-pro-db38 {
    margin: 2rem 0;
}

.liquid_97d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.old-56ae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .old-56ae {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last_5567 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-hard-0b29 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_a3f1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hover_huge_0b77 {
    margin-top: 2rem;
}

.mini-b9b6 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.white_9c7e {
    list-style: none;
    padding: 0;
}

.texture_d5c8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.texture_d5c8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.texture_d5c8 a:hover {
    text-decoration: underline;
}

.progress-fef9 {
    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 */
.photo-6f53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-lite-fc0d {
    margin: 2rem 0;
}

.sidebar-4762 {
    margin-bottom: 3rem;
}

.sidebar-4762 .widget-fluid-9e27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.up-ef7b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.photo_dark_4fea {
    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);
}

.photo_dark_4fea:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.column_bottom_70ae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .column_bottom_70ae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-acd1 {
    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 */
.sidebar-26cb {
    padding: var(--section-padding);
}

.brown_31d1 {
    margin: 2rem 0;
}

.breadcrumb_stone_e958 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.input_65eb {
    overflow-x: auto;
    margin: 2rem 0;
}

.heading-red-945d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.form_gold_7b37 {
    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;
}

.summary_8f00 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.title-5420 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .title-5420 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.south_4861 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south_4861 .title_purple_6c21 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.south_4861 .advanced-0113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.next-8a61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.module-plasma-4c18 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_2c7e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_2c7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium_f556 {
    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;
}

.medium_f556:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gold-d0b6 {
    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);
}

.paper-01fe {
    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;
}

.item_blue_e3d1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header-wood-1766 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.section_short_6a3f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.clean-d41d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-inner-a724 {
    color: var(--text-white);
    font-weight: 600;
}

.form_101a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-204d {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-204d .box_paper_8f02 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fixed-a62b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed-a62b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner_1774 {
    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);
}

.inner_1774:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.inner_1774 .link_gold_e3ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.inner_1774 .text_8945 {
    color: var(--text-gray);
    font-size: 1rem;
}

.clean-d72b {
    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);
}

.hard-9ea0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hard-9ea0 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.breadcrumb_213e {
    margin: 2rem 0;
}

.outline_c28f {
    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);
}

.outline_c28f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.south_48c6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.static-9d06 {
    flex: 1;
}

.accent_a8ba {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-simple-1905 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.prev_146c {
    margin: 2rem 0;
}

.primary_cold_9924 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_cold_9924 .advanced-0113 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.primary_cold_9924 .tooltip_1ef9 {
    color: var(--text-gray);
    margin: 0;
}

.gradient-light-f48f {
    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);
}

.gradient-light-f48f .panel-007d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.next-8a61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.plasma-35aa {
    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;
}

.layout_black_c3ad {
    flex: 1;
}

.frame-15c8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.badge-3f22 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.badge_prev_3ba1 {
    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;
}

.popup_iron_e293 {
    flex: 1;
}

.large-0348 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sort-6362 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.tiny-bd7a {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.header_full_a8eb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.logo-74df {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.logo-74df .box_paper_8f02 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.row-a7b3 {
    margin-top: 2rem;
}

.row-a7b3 .green_adc7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.modal-5c1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-bd81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .badge-bd81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-bd81 .text-bronze-af9b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north_099d {
    margin: 2rem 0;
}

.media_e231 {
    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 */
.hard_adc6 {
    padding: var(--section-padding);
}

.message_0b0a {
    margin-top: 1rem;
}

.copper_9407 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.copper_9407 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.copper_9407 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.out_0cd7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_9ccf {
    margin: 2rem 0;
}

.hot-e3ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.fluid_70a5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-hovered-bf5a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.link_a933 {
    margin: 2rem 0;
}

.module_complex_4a7f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.module_complex_4a7f .widget-fluid-9e27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.solid-2c9b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .solid-2c9b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-6d93 {
    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);
}

.aside-orange-2334 {
    color: var(--text-white);
    font-weight: 600;
}

.outer_c762 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.wrapper-4a46 {
    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);
}

.wrapper-4a46 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.gradient-4117 {
    padding: var(--section-padding);
}

.notice_9b05 {
    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;
}

.notice_9b05:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.solid_562d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solid_562d .pagination_stone_b6f6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.solid_562d .content-mini-1965 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.preview_tiny_1124 {
    flex: 1;
}

.panel-mini-4be8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.detail_complex_9e63 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail_complex_9e63 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detail_complex_9e63 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.breadcrumb_left_c2bf {
    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);
}

.breadcrumb_left_c2bf p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb_left_c2bf strong {
    color: var(--warning-color);
}

/* Slots Section */
.list-wide-f552 {
    padding: var(--section-padding);
}

.easy_4d68 {
    margin: 2rem 0;
}

/* Table Games Section */
.avatar-ff20 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gas-4dda {
    margin: 2rem 0;
}

.background_up_db99 {
    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);
}

.background_up_db99:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.background_up_db99 .status_ed31 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background_up_db99 .smooth_2e19 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus-complex-4afb {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.focus-complex-4afb .panel-007d {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.fast-5a92 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom_b658 {
    margin: 2rem 0;
}

.article_d15a {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-6c65 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.easy_da7c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.old_1b81 {
    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);
}

.old_1b81:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.old_1b81.fn-active-2a63 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_756a {
    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);
}

.small_71a4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small_71a4 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.accent-solid-461a {
    padding: var(--section-padding);
}

.menu-east-a51f {
    margin: 2rem 0;
}

.section_east_de5f {
    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);
}

.section_east_de5f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .section_east_de5f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.title-mini-4d3a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.texture_f32c {
    flex: 1;
}

.south-c1b1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.description_c8e6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background_e97e {
    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;
}

.tag-cold-250d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge_ea77 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.in_b724 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs-f58c {
    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;
}

.tabs-f58c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.carousel_e75e {
    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);
}

.new_0b01 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.new_0b01 strong {
    color: var(--accent-color);
}

/* New Games Section */
.overlay-c32a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma_0064 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .plasma_0064 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma_0064 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-58f5 {
    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;
}

.tabs-58f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.badge_left_9e3a {
    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;
}

.small_3a06 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.menu-pressed-a3ae {
    font-size: 2rem;
}

.rough-e013 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.message-next-847c {
    flex: 1;
}

.component_f6a0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.alert-pressed-20ab {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.text-cfb8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.in-6503 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.slider-28ff {
    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;
}

.progress-ecee {
    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;
}

.progress-ecee:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-pink-3307 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_2b2d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fluid-dc6d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .fluid-dc6d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_complex_9c05 {
    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);
}

.pattern-708c {
    color: var(--text-white);
    font-weight: 600;
}

.popup_light_9733 {
    color: var(--accent-color);
    font-weight: 600;
}

.motion-815a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.motion-815a strong {
    color: var(--accent-color);
}

/* Security Section */
.active-black-dfea {
    padding: var(--section-padding);
}

/* Benefits Section */
.badge-right-ad30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.tertiary-01fe {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.gradient-7cfd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-c234 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.focus_f8e9 {
    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) {
    .focus_f8e9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.focus_f8e9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.focus_f8e9 .badge_prev_3ba1 {
    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;
}

.focus_f8e9 .popup_iron_e293 {
    flex: 1;
}

.focus_f8e9 .large-0348 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.focus_f8e9 .sort-6362 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hover_abba {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_abba .info_c2eb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hover_abba .form-c40c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover_abba .form-c40c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hover_abba .form-c40c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.filter-fff4 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.static-df9f {
    padding: var(--section-padding);
}

.menu-first-bc66 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .menu-first-bc66 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-7140 {
    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);
}

.next-7140:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.next-7140 .orange_710b {
    font-size: 2rem;
    flex-shrink: 0;
}

.next-7140 .warm_733f {
    flex: 1;
}

.next-7140 .card_b893 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next-7140 .blue_0335 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary-4efa {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-4efa .motion-721a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-4efa .container-down-3b47 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.secondary-4efa .container-down-3b47 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);
}

.secondary-4efa .container-down-3b47 li:last-child {
    border-bottom: none;
}

.secondary-4efa .container-down-3b47 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;
}

.secondary-4efa .container-down-3b47 li strong {
    color: var(--text-white);
}

.disabled-1d64 {
    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);
}

.disabled-1d64 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.disabled-1d64 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.description_black_30ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_medium_9154 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container_medium_9154 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pink-8e7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pink-8e7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_d017 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip-short-1ec3 {
    font-size: 2rem;
}

.breadcrumb_paper_9e41 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.shade-north-cc6f {
    flex: 1;
}

.widget_middle_c104 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_middle_c104 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.widget_middle_c104 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.plasma-b4fc {
    margin-top: 3rem;
}

.silver-2386 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.list_0439 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-4bc2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-4bc2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.media-4bc2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.media-4bc2 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.component_fluid_12d3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-74b7 {
    margin: 2rem 0;
}

.panel_right_af90 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.panel_right_af90 .widget-fluid-9e27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input-3c12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input-3c12 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video_8f14 {
    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);
}

.video_8f14:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.list-4cbe {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.paper_7a9f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.detail_bright_973a {
    padding: var(--section-padding);
}

.text-over-fdb6 {
    margin: 2rem 0;
}

.over_22a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .over_22a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over_22a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-757e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active-757e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article-320c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.soft_a91d {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.bottom-5aa3 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bottom-5aa3.background-right-0c89 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hero-5c1b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.active-54a0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.header-3afe {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last_a6ca {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface-801c {
    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);
}

.surface-801c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface-801c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.component-wood-30b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_af97 {
    margin: 2rem 0;
}

.easy-0739 {
    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) {
    .easy-0739 {
        flex-direction: column;
        gap: 1rem;
    }
}

.easy-0739:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.easy-0739::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);
}

.filter_97f7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.article-0e7d {
    flex: 1;
}

.popup_4d96 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary-9213 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-9213 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_e919 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_c53e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title_bronze_5c27 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title_bronze_5c27 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-green-58e6 {
    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);
}

.up_5e36 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.right_3884 {
    flex: 1;
}

.basic_3d9f {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.left_b711 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture-188a {
    margin-top: 2rem;
    text-align: center;
}

.info_f33b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info_f33b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.thumbnail_dc30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_dc30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-4fcf {
    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);
}

.left-4fcf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.left-4fcf .main-36b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.left-4fcf .yellow_9087 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.left-4fcf .hot_97b5 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.left-4fcf .notification-3c1b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.menu_cool_bb8f {
    padding: var(--section-padding);
}

.bottom-ef7a .tooltip_fixed_a8c0 {
    flex: 1;
}

/* Promo Calendar Section */
.secondary-5f85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel_91ae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel_91ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron-d7db {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_hard_ec39 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.box-first-9bae {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-plasma-7ad6 {
    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);
}

.photo_right_a47e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.light-5243 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.soft_0338 {
    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);
}

.soft_0338 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.soft_0338 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.filter-73c6 {
    padding: var(--section-padding);
}

.component_a9fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component_a9fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite_fa8e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-next-7444 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion_e7d2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion_e7d2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_green_1850 {
    margin-top: 3rem;
}

.breadcrumb_green_1850 .silver-2386 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.breadcrumb_green_1850 .list_0439 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb_green_1850 .media-4bc2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.breadcrumb_green_1850 .media-4bc2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.breadcrumb_green_1850 .media-4bc2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.breadcrumb_green_1850 .media-4bc2 li strong {
    color: var(--warning-color);
}

.liquid_9430 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.liquid_9430 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.notice_a5cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_aa93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_aa93 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.silver-5e02 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-5e02 .widget-fluid-9e27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.selected-8774 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gradient_ae60 {
    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);
}

.gradient_ae60:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gold-077c {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-8ff4 {
    flex: 1;
}

.old_e0f2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.progress-center-c0d9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accordion-de9d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.label_fixed_53ae {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.main-out-3a19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .main-out-3a19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-18e1 {
    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);
}

.grid-18e1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top-26cb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel_c513 {
    color: var(--text-gray);
    font-size: 1rem;
}

.slider_brown_97ce {
    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);
}

.middle-a1df {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.middle-a1df strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hard_6840 { 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; }
.accordion_c04c, .modal_1409 { max-width:100%; height:auto; }

.caption-43f1, .left_acf8, .inner-d135 { white-space:normal; }

.purple-4219,
.sort-71f5,
.module_orange_c978,
.thumbnail_dc30,
.prev_146c,
.prev-1a7b {
  flex-wrap:wrap;
}

[class*="grid"],
.main-out-3a19,
.over_22a5,
.upper-13b5 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.orange-7b8f img,
.sort-71f5 img,
.alert-44cb img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.logo-f81d, .form-thick-d3de,
.component_cafb, .progress-8ebe {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.motion-e0b9 { width:100%; overflow-x:auto; }
.motion-e0b9 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.overlay_selected_7ef9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .overlay_selected_7ef9 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.shadow-f50f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.picture-f45e,
.pagination-5b02,
.frame_b5a9,
.plasma_4d6d,
.stale-6b3c,
.main-out-3a19,
.over_22a5,
.upper-13b5,
.action-3384,
.menu-east-a51f,
.overlay_selected_7ef9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .picture-f45e,
  .pagination-5b02,
  .frame_b5a9,
  .plasma_4d6d,
  .stale-6b3c,
  .main-out-3a19,
  .over_22a5,
  .upper-13b5,
  .action-3384,
  .menu-east-a51f,
  .overlay_selected_7ef9 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.short-b800,
.dim-c4f6,
.grid-18e1,
.thick_8d14,
.active-757e,
.orange-ca40,
.section_east_de5f,
.shadow-f50f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.main_291a,
.border_gold_5dbb,
.active_8797 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.main_291a > *,
.border_gold_5dbb > *,
.active_8797 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7b5d */
.promo-block-d5 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
