/* {$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;
}

.block_3e86 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.footer_upper_1fdc {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer_upper_1fdc {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer_upper_1fdc {
        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 */
.accent-black-1872 {
    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);
}

.popup-top-534c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .popup-top-534c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .light-0a7e {
        grid-column: 1;
    }
    
    .logo_8290 {
        grid-column: 2;
    }
    
    .shadow_6f88 {
        grid-column: 3;
    }
}

.light-0a7e img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.light-0a7e:hover img {
    transform: scale(1.05);
}

/* Navigation */
.up-fc15 {
    display: none;
}

@media (min-width: 1024px) {
    .up-fc15 {
        display: block;
    }
}

/* Grouped Navigation */
.rough_31f8 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sort-cold-9027 {
    position: relative;
}

.narrow-9d69 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.sort-cold-9027 .pressed_ef81 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.pressed_ef81 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.purple-3963 {
    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;
}

.purple-3963:hover,
.purple-3963.fn-active-dcc4 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.dropdown_hard_4180 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .dropdown_hard_4180 {
        display: flex;
    }
}

/* Mobile Register Button */
.logo_8290 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .logo_8290 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.list-inner-5e2d {
    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;
}

.list-inner-5e2d::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 */
.shadow_6f88 {
    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) {
    .shadow_6f88 {
        display: none;
    }
}

.shadow_6f88 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.shadow_6f88.fn-active-dcc4 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.shadow_6f88.fn-active-dcc4 span:nth-child(2) {
    opacity: 0;
}

.shadow_6f88.fn-active-dcc4 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.image-bfd4 {
    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;
}

.image-bfd4.fn-active-dcc4 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.banner_b37c {
    overflow: hidden;
}

.logo_9ce2 {
    list-style: none;
    padding: 0.75rem 0;
}

.message_gold_85ba {
    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;
}

.message_gold_85ba:hover,
.message_gold_85ba.fn-active-dcc4 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.message_gold_85ba.fixed-8f97 {
    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;
}

.message_gold_85ba.fixed-8f97::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 */
.focus-solid-f10b {
    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;
}

.backdrop-4ede {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.backdrop-4ede:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.static_dbfd {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.static_dbfd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs-cac9 {
    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;
}

.tabs-cac9:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.button-advanced-7570 {
    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;
}

.banner-f1ca {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.banner-f1ca:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.thumbnail-thick-1f53 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.thumbnail-thick-1f53:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.medium_c1c2 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.medium_c1c2: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);
}

.clean_9149 {
    font-size: 1em;
    font-weight: 700;
}

.block_a059 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.panel_6391 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.panel_6391::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;
}

.row_b4b8 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .row_b4b8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.progress-0ccb {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.badge_inner_7f29 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.gradient_4195 {
    margin-bottom: 2rem;
}

.plasma_8bc2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .plasma_8bc2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold_7f16 {
    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);
}

.outline-rough-7e06 {
    font-size: 1.5rem;
}

.hidden-red-4440 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.outer_e111 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fluid-ccb8 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.fluid-ccb8:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.plasma_aa5a {
    text-align: center;
    margin-bottom: 3rem;
}

.active-a4d3 {
    margin-bottom: 1rem;
}

.hero_in_ea02 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.message_center_8840 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .message_center_8840 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .message_center_8840.badge_1c14 {
        direction: rtl;
    }
    
    .message_center_8840.badge_1c14 > * {
        direction: ltr;
    }
}

.alert-brown-3bae {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.alert-brown-3bae:first-child {
    margin-top: 0;
}

.image_9bf3 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gradient_outer_d425 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gradient_outer_d425:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.stale_13d2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_13d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-88a9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-static-162d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.component-f250 {
    list-style: none;
}

.component-f250 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.component-f250 li:last-child {
    border-bottom: none;
}

/* Games Features */
.hot_ae58 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.under-29f8 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.right_aad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-c64c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.box_wood_180e {
    margin: 2rem 0;
}

.carousel_center_bef4 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.pattern_right_7fde {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.slider_9785 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.box_e5d1 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.avatar-dynamic-d2cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-dynamic-d2cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_e9ea {
    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);
}

.menu_e9ea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.old-93af {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.list_9202 {
    font-size: 1.5rem;
}

.highlight_67a9 {
    color: var(--accent-color);
    margin: 0;
}

.message_95db {
    list-style: none;
}

.message_95db li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.message_95db li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.panel_ae47 {
    margin: 2rem 0;
}

.in-1acd {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.row-iron-61e6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .row-iron-61e6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas_ac6b {
    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);
}

.breadcrumb_e0d5 {
    font-size: 1.25rem;
}

.orange-2fc5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.paragraph-6ac0,
.content_4c93 {
    text-align: center;
    margin: 2rem 0;
}

.box_outer_263e,
.slow_52bc {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.status_174a {
    margin: 2rem 0;
    text-align: center;
}

.border_5db5 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.border_5db5::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;
}

.wood-b920 {
    position: relative;
    z-index: 1;
}

.label_tall_5c95 {
    margin-bottom: 1rem;
}

.popup-outer-cab5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.red_0ced {
    margin-bottom: 3rem;
}

.stone_46a1 {
    margin-top: 3rem;
}

.box_6e98 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .box_6e98 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_6e98 .gold_7f16 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.south_5054 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stone_92db {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.secondary_019e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.alert_green_5fa6 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .alert_green_5fa6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_green_5fa6 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.header_warm_b2a2 {
    margin-bottom: 1rem;
}

.thumbnail_silver_138a img {
    margin-bottom: 1rem;
}

.bronze_c8e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_in_3022 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.sidebar-70f4 {
    list-style: none;
}

.sidebar-70f4 li {
    margin-bottom: 0.5rem;
}

.sidebar-70f4 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.sidebar-70f4 a:hover {
    color: var(--accent-color);
}

.mask-new-d3ef {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.basic_7188 {
    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);
}

.basic_7188:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.disabled_635b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.disabled_635b p {
    margin-bottom: 0.25rem;
}

.picture-258b {
    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) {
    .picture-258b {
        flex-direction: row;
    }
}

.breadcrumb_upper_6753 {
    text-align: center;
}

@media (min-width: 768px) {
    .breadcrumb_upper_6753 {
        text-align: left;
    }
}

.breadcrumb_upper_6753 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current-af03 {
    font-size: 0.75rem !important;
}

.dropdown_right_b913 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.panel-narrow-ecff {
    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);
    }
}

.gold-1c66 {
    animation: fadeInUp 0.6s ease-out;
}

.notice_c76c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.surface-3291 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-3291 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.accordion-new-061a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-new-061a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-pro-6f88 {
    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);
}

.frame-pro-6f88 .right_aad1 {
    font-size: 1.25rem;
}

.frame-pro-6f88 .paper_c012 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pattern_f550 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern_f550 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper-4938 {
    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);
}

.copper-4938:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-advanced-c6a5 {
    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);
}

.filter_39ff {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.black_fa48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-hot-3545 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item_c918 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item_c918 .footer-c64c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.item_c918 .gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under_16ef {
    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);
}

.tiny-4935 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.tiny-4935 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.tiny-4935 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.accordion_upper_5bb5 {
    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);
}

.feature_44e5 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.right_df79 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.right_df79 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.right_df79 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);
}

.right_df79 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.right_df79 input::placeholder {
    color: var(--text-muted);
}

.bright-9b64 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.main-9c97 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.main-9c97 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.border-huge-740e {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.border-huge-740e:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.row-iron-61e6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-iron-61e6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas_ac6b {
    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);
}

.gas_ac6b .breadcrumb_e0d5 {
    font-size: 1.25rem;
}

.gas_ac6b .orange-2fc5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.avatar_465c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_complex_92b5 {
    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);
}

.nav_complex_92b5 .right_aad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_complex_92b5 .footer-c64c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_complex_92b5 .gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first_c5b0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower-3e59 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lower-3e59 .panel-e5f1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower-3e59 .box_10c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_df0c {
    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);
}

.photo_4026 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_4026 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_lite_b915 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.tabs_lite_b915:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_middle_82e6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.notification-9467 {
    flex: 1;
}

.texture_1523 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status_b558 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block_1061 {
    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);
}

.block_1061:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.element-0ed6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-0ed6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-advanced-3dd8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion-advanced-3dd8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_3aed {
    font-size: 2rem;
    flex-shrink: 0;
}

.main_wood_2e3b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list_pink_1d9d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tiny_9d54 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.input-335d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_1453 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_1017 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gold_1017 .notification_21b4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold_1017 .panel-4358 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-7125 {
    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);
}

.down-bf29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-86ac {
    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);
}

.nav-86ac .right_aad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav-86ac .footer-c64c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav-86ac .gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright_48b4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright_48b4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static_557f {
    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);
}

.static_557f:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.feature-4352 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-4352 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-b46f {
    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);
}

.banner-b46f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_f6b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_2fc3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pattern_right_7fde {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.chip-3406 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.pagination-selected-2fc5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over-0110 {
    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);
}

.over-0110:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new_92df {
    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);
}

.dropdown_short_62a0 {
    flex: 1;
}

.accordion_stale_c3ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.logo-0e1a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hot_344b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall-d1b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_center_6c44 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_center_6c44 .panel-e5f1 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup_center_6c44 .box_10c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_4c93 {
    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);
}

.bronze-173d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-173d {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.summary_old_3357 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_old_3357 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid_83a1 {
    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);
}

.fluid_83a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge-161f {
    font-size: 2rem;
    flex-shrink: 0;
}

.black-a637 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main_f8d0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gradient-south-0399 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.detail_1e4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-ff24 {
    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);
}

.nav-orange-ef5c {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-lower-e6a1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active_358a {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-bf29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-86ac {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.nav-86ac .footer-c64c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-86ac .gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_b375 {
    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);
}

.east_47a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .east_47a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east_47a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_medium_33ec {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo_medium_33ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.iron_aa4e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.preview_821c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar_narrow_3a7d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.focus-c423 {
    padding: 1.5rem;
}

.module_hot_0ffb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aside-35b5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-35b5 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;
}

.aside-35b5 li:last-child {
    border-bottom: none;
}

.aside-35b5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.container-b027 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-b027 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_c4a9 {
    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);
}

.advanced_c4a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-4bf4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_gold_e17c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-a87e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tiny_8473 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gold-a04a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.next_ac94 {
    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);
}

.preview-hard-3fae {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-dfeb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-fluid-d401 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_in_9954 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.summary-00ea {
    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);
}

.video_8bb3 {
    text-align: center;
}

.menu_eba3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_c87d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block_564b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer-382a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-382a .footer-c64c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer-382a .gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-1dd1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status-1dd1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status-1dd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_50b9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature_50b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_5e1f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.label_iron_f77a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-c64c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.item-large-1502 {
    padding: 1.5rem;
}

.gallery-plasma-3020 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.chip-1dc1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-1dc1 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;
}

.chip-1dc1 li:last-child {
    border-bottom: none;
}

.chip-1dc1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.video_tall_cd35 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.header_huge_2fba {
    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);
}

.header_huge_2fba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_58f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paper_34ca {
    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);
}

.background-advanced-c6a5 {
    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;
}

.filter_39ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.black_fa48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-0c40 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-action-ad52 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_e188 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_35d7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.left_28f9 {
    display: flex;
    gap: 1rem;
}

.left_28f9 .fresh-5e90 {
    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;
}

.video_6647 {
    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);
}

.bright_bd66 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.in-96e6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in-96e6 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;
}

.in-96e6 li:last-child {
    border-bottom: none;
}

.in-96e6 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.thick_fb9a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thick_fb9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick_fb9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-a16c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.alert-a16c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-eca1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.popup_51fa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification_21b4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.sidebar_990b {
    font-size: 1rem;
}

.image-9bb6 {
    padding: 1.5rem;
}

.panel-4358 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.button_lite_52d6 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.button_lite_52d6 .video_8bb3 {
    text-align: center;
}

.button_lite_52d6 .pagination_c87d {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.button_lite_52d6 .accordion_dim_3d2d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.down-2083 {
    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);
}

.down-2083:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tag_1129 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_1129 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_e6e3 {
    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);
}

.component_e6e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_a9a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-0dd0 {
    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);
}

.progress-fresh-a188 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_first_573d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-hot-4c6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_e2a9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero_2202 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-f852 {
    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);
}

.logo_pink_689e {
    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;
}

.logo_pink_689e.easy-1be9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.logo_pink_689e.focus-0e6c {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.logo_pink_689e.main_white_6ae3 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.logo_pink_689e.dark-7724 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.logo_pink_689e.background-huge-82ac {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.text_ad55 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_gas_7e10 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-d6a9 {
    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-wide-de2f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.first_c5b0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.first_c5b0 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;
}

.first_c5b0 li:last-child {
    border-bottom: none;
}

.first_c5b0 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.list_under_fb58 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .list_under_fb58 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_under_fb58 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_e09f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hidden_e09f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_e09f.fresh-18c4 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .hidden_e09f.fresh-18c4 {
        grid-column: span 3;
    }
}

.plasma-57f7 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.hidden_e09f.fresh-18c4 .plasma-57f7 {
    background: rgba(6, 182, 212, 0.1);
}

.alert_simple_1308 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.accordion-65f0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.hidden_e09f.fresh-18c4 .accordion-65f0 {
    color: var(--info-color);
}

.status_5a92 {
    padding: 1.5rem;
    text-align: center;
}

.filter-a86f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hidden_e09f.fresh-18c4 .filter-a86f {
    color: var(--info-color);
}

.info_a28d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.complex-dbd7 {
    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 */
.menu-liquid-a1af {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-liquid-a1af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out_b8c0 {
    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);
}

.out_b8c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-c707 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_complex_92b5 {
    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);
}

.breadcrumb_e0d5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-short-aa7a {
    flex: 1;
}

.in-1acd {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row_top_1aea {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-f562 {
    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);
}

.logo-39d1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame-3f42 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.panel-narrow-ecff {
    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);
}

.new-f2ea {
  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);
}

.new-f2ea .video_8bb3 {
    text-align: center;
}

.new-f2ea .menu_eba3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.new-f2ea .pagination_c87d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip_focused_8c80 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_0923 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_dynamic_96b9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-7273 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-out-cf36 {
    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);
}

.advanced-1f54 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main-0179 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-liquid-f658 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-liquid-f658 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-liquid-f658 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_1a93 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stale_1a93:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list_89ca {
    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);
}

.notice-1de8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outer_d754 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.primary_easy_04d8 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary_easy_04d8.status_pink_cfb7 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.primary_easy_04d8.gallery_0dd5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.primary_easy_04d8.banner_8d15 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.dim-2228 {
    padding: 1.5rem;
    text-align: center;
}

.icon_d273 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-82c9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu-82c9 .wide_610e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.block_2876 {
    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);
}

.block_2876:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.steel_7460 {
  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);
}

.layout-middle-9399 {
    text-align: center;
}

.layout-middle-9399 .menu_eba3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.layout-middle-9399 .pagination_c87d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.pro_c2fd { text-align: center; }
.active-small-aa96 { text-align: left; }
.label-dark-dbcf { text-align: right; }

.button_6bac { margin-bottom: 0; }
.border_6cb7 { margin-bottom: 0.5rem; }
.table-e16d { margin-bottom: 1rem; }
.backdrop_hard_3cb4 { margin-bottom: 1.5rem; }
.old_503f { margin-bottom: 2rem; }

.media-f604 { margin-top: 0; }
.active-5b14 { margin-top: 0.5rem; }
.border-full-2064 { margin-top: 1rem; }
.slider-gas-ec4f { margin-top: 1.5rem; }
.dropdown-simple-62e7 { margin-top: 2rem; }

.fn-hidden-dcc4 { display: none; }
.fn-visible-dcc4 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .panel_6391 {
        padding: 6rem 0 3rem;
    }
    
    .row_b4b8 {
        text-align: center;
    }
    
    .message_center_8840 {
        text-align: center;
    }
    
    .plasma_8bc2 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .accent-black-1872,
    .image-bfd4,
    .border_5db5,
    .secondary_019e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .panel_6391 {
        background: none;
    }
}

/* Providers Section */
.wrapper_f8f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_prev_ae48 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_prev_ae48 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button_prev_ae48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-solid-a970 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info-solid-a970:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-c2c0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.surface-hard-8b5a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.preview_slow_86a0 {
    list-style: none;
    padding: 0;
}

.preview_slow_86a0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.preview_slow_86a0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.large_7dfd {
    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);
}

.large_7dfd p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.shadow_current_e52d {
    padding: var(--section-padding);
}

.gas-bebf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas-bebf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_cf3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail_cf3c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.alert_tiny_aebd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.basic_92ed {
    display: flex;
    flex-direction: column;
}

.paragraph-8135 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.selected_60b9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.warm-5e6e {
    color: var(--accent-color);
}

.photo-north-c746 {
    font-size: 1.25rem;
}

.current-bb40 {
    margin-bottom: 1rem;
}

.current-bb40 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.gradient_02a5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.component-fresh-f0d0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.video_8bb3 {
    text-align: center;
}

.menu_eba3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_c87d {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.in_e349 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-slow-2d32 {
    margin: 2rem 0;
}

.header_gas_a01a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.header_gas_a01a .right_aad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow-e684 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tabs_copper_3941 {
    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;
}

.tabs_copper_3941:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover_1c07 {
    font-size: 2rem;
}

.advanced-b753 {
    display: flex;
    flex-direction: column;
}

.message-complex-7ca5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.active_prev_0858 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.alert_down_6c34 {
    padding: var(--section-padding);
}

.silver_a58a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .silver_a58a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver_a58a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-d219 {
    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);
}

.huge-d219:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.huge-d219 .menu_eba3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.huge-d219 .pagination_c87d {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.huge-d219 .summary-lite-1c47 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.picture_simple_3def {
    margin-top: 4rem;
}

.carousel_6ae4 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.south-007c {
    overflow-x: auto;
}

.carousel_ad8e {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.carousel_ad8e thead {
    background: var(--accent-color);
}

.carousel_ad8e th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.carousel_ad8e td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_ad8e tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.carousel_ad8e tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.frame-03e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_yellow_7c4b {
    max-width: 900px;
    margin: 0 auto;
}

.list_slow_7431 {
    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);
}

.list_slow_7431:hover {
    border-color: var(--accent-color);
}

.notice-hot-c2b6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.notice-hot-c2b6 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.basic-4cfb {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.list_slow_7431.fn-active-dcc4 .basic-4cfb {
    transform: rotate(45deg);
}

.wrapper-940a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.list_slow_7431.fn-active-dcc4 .wrapper-940a {
    max-height: 1000px;
}

.wrapper-940a p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.disabled-hard-36a4 {
    padding: var(--section-padding);
}

.tiny-4935 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.carousel-0504 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim-d641 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-d641 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.selected_99bd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_last_979e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.clean-7e3b {
    font-size: 2rem;
}

.new-0570 {
    color: var(--text-white);
    margin: 0;
}

.gallery-7f52 {
    list-style: none;
    padding: 0;
}

.gallery-7f52 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-7f52 li:last-child {
    border-bottom: none;
}

.tabs_smooth_998e {
    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);
}

.tabs_smooth_998e p {
    color: var(--success-color);
    margin: 0;
}

.hover_7c07 {
    margin-top: 3rem;
}

.bright_bd66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hovered-5f49 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hovered-5f49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.short-adae {
    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);
}

.status-bd2e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.short-adae p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.overlay-a886 {
    padding: var(--section-padding);
}

.dirty-59e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-59e3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-yellow-0c43 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-yellow-0c43:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.panel_north_b5a8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blue_5bcc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-e1d5 {
    flex: 1;
}

.aside_upper_df1c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.alert-c254 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.avatar-62a3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_old_32f5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_old_32f5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.silver_614b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tall_255e {
    padding: var(--section-padding);
}

.alert-cold-5db0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.widget_abe4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_abe4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_c634 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center-7fd2, .layout-blue-34c2, .motion_395d {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.motion_395d {
    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 */
.component_5a92 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_f8a5 {
    margin: 2rem 0;
}

.link-4d1c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over-b7b5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status-prev-6fe3 {
    list-style: none;
    padding: 0;
}

.status-prev-6fe3 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;
}

.status-prev-6fe3 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.status-prev-6fe3 li:last-child {
    border-bottom: none;
}

.up-f587 {
    text-align: center;
    margin-top: 2rem;
}

.highlight-short-230e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.container_7747 {
    padding: var(--section-padding);
}

.focus_focused_76ca {
    margin: 2rem 0;
}

.pink-8881 {
    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) {
    .pink-8881 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pink-8881:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.filter_06f5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.south_dba7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.notification_3a34 {
    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;
}

.image_short_ea64 {
    flex: 1;
}

.disabled-b821 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.inner-96b2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.shadow-0951 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.in_46b2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .in_46b2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.grid_6c30 {
    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_6c30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid_6c30 .menu_eba3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid_6c30 .pagination_c87d {
    color: var(--text-gray);
    font-size: 1rem;
}

.label_blue_dc2d {
    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);
}

.pressed_44b4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.pressed_44b4 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.input-92e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .input-92e3 {
        grid-template-columns: 1fr 1fr;
    }
}

.menu-2a37 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over_7b42 {
    margin-bottom: 1.5rem;
}

.over_7b42 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.over_7b42 input,
.over_7b42 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;
}

.over_7b42 input:focus,
.over_7b42 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.link-7a78 {
    width: 100%;
    margin-top: 1rem;
}

.static_c40e {
    display: flex;
    align-items: center;
}

.search_smooth_d434 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.notification-lower-011b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.dirty-7f18 {
    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;
}

.shadow_2f9f {
    color: var(--text-gray);
}

.photo_first_ea60 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.title_solid_179e {
    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);
}

.title_solid_179e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.down-ebf5 {
    margin-top: 3rem;
}

.paragraph_tall_95f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.picture_10eb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean_3bc1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.soft-a3f0 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soft-a3f0:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.bright_0e3f {
    padding: var(--section-padding);
}

.info_middle_2b1c {
    margin: 2rem 0;
}

.alert_a031 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.modal-current-1695 {
    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;
}

.modal-current-1695:hover, .modal-current-1695.fn-active-dcc4 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.progress-34ab {
    display: none;
}

.progress-34ab.fn-active-dcc4 {
    display: block;
}

.over_ea61 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.basic-d514 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.advanced-072e h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.advanced-072e ul {
    list-style: none;
    padding: 0;
}

.advanced-072e ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.advanced-072e ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.row-blue-c06d {
    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 */
.gallery-complex-7efa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_f88e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center_6aad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.outer-9fa6 {
    color: var(--accent-color);
    margin: 0;
}

.panel-6a92 {
    display: flex;
    gap: 1.5rem;
}

.feature-806d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.section_action_a21e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag_prev_0dc0 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.tag_prev_0dc0.logo_256c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag_prev_0dc0.inner-0b23 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tag_prev_0dc0.white-cceb {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.image-simple-0c6f {
    margin-top: 2rem;
}

.media_full_f7e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature_219a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .feature_219a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-b297 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.hover-blue-ee12 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.title-ced4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav_8167 {
    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 */
.carousel-black-2ab4 {
    padding: var(--section-padding);
}

.silver-29f7 {
    margin: 2rem 0;
}

.container-4b42 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.tabs-b8a0 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.filter_south_8ebb {
    list-style: none;
    padding: 0;
}

.filter_south_8ebb 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;
}

.filter_south_8ebb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.filter_south_8ebb li:last-child {
    border-bottom: none;
}

.icon-fb15 {
    margin: 2rem 0;
}

.accent-tall-15cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.carousel-slow-943c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .carousel-slow-943c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tag-6057 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_95a0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.huge-08ab {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.footer-1264 {
    margin-top: 2rem;
}

.texture_1523 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.container-7f22 {
    list-style: none;
    padding: 0;
}

.active_d4b2 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.active_d4b2 a {
    color: var(--accent-color);
    text-decoration: none;
}

.active_d4b2 a:hover {
    text-decoration: underline;
}

.dynamic_8692 {
    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 */
.panel-343b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-b768 {
    margin: 2rem 0;
}

.primary-76a5 {
    margin-bottom: 3rem;
}

.primary-76a5 .over-b7b5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.under-8963 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.active_next_6167 {
    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);
}

.active_next_6167:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.basic_136d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .basic_136d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-stale-7840 {
    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 */
.pagination-49e0 {
    padding: var(--section-padding);
}

.title_tall_8309 {
    margin: 2rem 0;
}

.red-86f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.first-363c {
    overflow-x: auto;
    margin: 2rem 0;
}

.input-7e9b {
    background: rgba(6, 182, 212, 0.1) !important;
}

.button_soft_2308 {
    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;
}

.tag_7024 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.picture_9486 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .picture_9486 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hot_446b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot_446b .right_aad1 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.hot_446b .footer-c64c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-7ec7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.message_5823 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-d707 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-d707 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_clean_3dcf {
    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;
}

.shadow_clean_3dcf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.grid_4667 {
    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);
}

.form-hovered-0367 {
    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;
}

.info_narrow_e3ef {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.preview-0817 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.solid_401f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pro-3663 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-5861 {
    color: var(--text-white);
    font-weight: 600;
}

.footer_798d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header_26d8 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header_26d8 .fresh-5e90 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.in-3cc9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .in-3cc9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_41c7 {
    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);
}

.frame_41c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.frame_41c7 .menu_eba3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_41c7 .pagination_c87d {
    color: var(--text-gray);
    font-size: 1rem;
}

.article-active-c51f {
    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);
}

.active_e0e2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.active_e0e2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.detail_1e4d {
    margin: 2rem 0;
}

.button-ff24 {
    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);
}

.button-ff24:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.nav-orange-ef5c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brown-8469 {
    flex: 1;
}

.primary-lower-e6a1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active_358a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.down-bf29 {
    margin: 2rem 0;
}

.nav-86ac {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-86ac .footer-c64c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.nav-86ac .gallery-plasma-3020 {
    color: var(--text-gray);
    margin: 0;
}

.menu_b375 {
    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);
}

.menu_b375 .box_outer_263e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.layout-7ec7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.new_92df {
    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;
}

.dropdown_short_62a0 {
    flex: 1;
}

.logo-0e1a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hot_344b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.background-advanced-c6a5 {
    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;
}

.alert-eea2 {
    flex: 1;
}

.filter_39ff {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.black_fa48 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.list_e188 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.modal_35d7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.left_28f9 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.left_28f9 .fresh-5e90 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video_6647 {
    margin-top: 2rem;
}

.video_6647 .bright_bd66 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.out_8a80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-00ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .summary-00ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-00ea .video_8bb3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_564b {
    margin: 2rem 0;
}

.outer-382a {
    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 */
.lower_b23a {
    padding: var(--section-padding);
}

.item-large-1502 {
    margin-top: 1rem;
}

.chip-1dc1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.chip-1dc1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.chip-1dc1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.alert-25e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh_dd19 {
    margin: 2rem 0;
}

.up_4ac7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.table_down_38d3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.selected-ef78 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.icon-glass-d9c3 {
    margin: 2rem 0;
}

.soft_5d3a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.soft_5d3a .over-b7b5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_43d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .highlight_43d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.banner-0f49 {
    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);
}

.photo_154e {
    color: var(--text-white);
    font-weight: 600;
}

.paper_f667 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.background-d06e {
    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);
}

.background-d06e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.description-1a71 {
    padding: var(--section-padding);
}

.container_1b3f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container_1b3f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tabs-b885 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-b885 .status-bd2e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-b885 .message_2b75 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.media-medium-f57f {
    flex: 1;
}

.media-pro-527c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.grid_first_4365 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_first_4365 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.grid_first_4365 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.paragraph_bright_37eb {
    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);
}

.paragraph_bright_37eb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph_bright_37eb strong {
    color: var(--warning-color);
}

/* Slots Section */
.highlight_wood_fc4c {
    padding: var(--section-padding);
}

.input-335d {
    margin: 2rem 0;
}

/* Table Games Section */
.heading_pro_1ce1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_1453 {
    margin: 2rem 0;
}

.gold_1017 {
    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);
}

.gold_1017:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gold_1017 .notification_21b4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold_1017 .panel-4358 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.header-7125 {
    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);
}

.header-7125 .box_outer_263e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.input_2e97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright_39dd {
    margin: 2rem 0;
}

.info_a60d {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-f621 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first_eb71 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.selected_6f4e {
    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);
}

.selected_6f4e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.selected_6f4e.fn-active-dcc4 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-black-752d {
    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);
}

.complex_e6e0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.complex_e6e0 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.motion_8325 {
    padding: var(--section-padding);
}

.up-8651 {
    margin: 2rem 0;
}

.hidden-bright-b87d {
    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);
}

.hidden-bright-b87d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .hidden-bright-b87d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.light-e02d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.west_1fdc {
    flex: 1;
}

.element_6117 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-4b92 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.rough-db46 {
    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;
}

.wrapper-364d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-lower-cad1 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hovered_3d2e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.next_ce2a {
    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;
}

.next_ce2a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.title-white-a376 {
    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);
}

.aside-hard-6b9f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside-hard-6b9f strong {
    color: var(--accent-color);
}

/* New Games Section */
.filter-new-c11e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered_4136 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hovered_4136 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hovered_4136 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide-8c5e {
    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;
}

.wide-8c5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.huge_1eb6 {
    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;
}

.outline_first_014a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.content-a94a {
    font-size: 2rem;
}

.easy_c3e9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.table_7e70 {
    flex: 1;
}

.banner-6f9f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.liquid-f234 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dirty-dfe5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface_static_dbcd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.focus_55ad {
    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;
}

.down_796d {
    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;
}

.down_796d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.modal_01ee {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-pressed-7144 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-b7fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gradient-b7fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite-b4bc {
    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);
}

.summary_fbdf {
    color: var(--text-white);
    font-weight: 600;
}

.info-271c {
    color: var(--accent-color);
    font-weight: 600;
}

.warm_a5ac {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.warm_a5ac strong {
    color: var(--accent-color);
}

/* Security Section */
.breadcrumb-red-c174 {
    padding: var(--section-padding);
}

/* Benefits Section */
.shade_1a33 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.box-39e9 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.focus_abbb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-fast-e326 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.logo-3ac9 {
    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) {
    .logo-3ac9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo-3ac9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo-3ac9 .background-advanced-c6a5 {
    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;
}

.logo-3ac9 .alert-eea2 {
    flex: 1;
}

.logo-3ac9 .filter_39ff {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.logo-3ac9 .black_fa48 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tag-64df {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-64df .in-1acd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag-64df .avatar_465c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-64df .avatar_465c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tag-64df .avatar_465c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.border_small_1c33 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.label_8fe2 {
    padding: var(--section-padding);
}

.basic-3818 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .basic-3818 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_red_1ed3 {
    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);
}

.footer_red_1ed3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.footer_red_1ed3 .sidebar_pink_2bb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_red_1ed3 .header-c6e7 {
    flex: 1;
}

.footer_red_1ed3 .panel-e5f1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer_red_1ed3 .outline-92d3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.list_silver_a504 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_silver_a504 .secondary_first_05fa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_silver_a504 .preview-large-1345 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.list_silver_a504 .preview-large-1345 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);
}

.list_silver_a504 .preview-large-1345 li:last-child {
    border-bottom: none;
}

.list_silver_a504 .preview-large-1345 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;
}

.list_silver_a504 .preview-large-1345 li strong {
    color: var(--text-white);
}

.pagination-green-458c {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.pagination-green-458c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pagination-green-458c strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.sort_solid_a890 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-7093 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop-7093 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb-ab4d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-ab4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.content-over-5db8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.black_1558 {
    font-size: 2rem;
}

.old_f85b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown_easy_1402 {
    flex: 1;
}

.pagination_9153 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination_9153 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pagination_9153 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.grid_dbe5 {
    margin-top: 3rem;
}

.container-4b42 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tabs-b8a0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter_south_8ebb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_south_8ebb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.filter_south_8ebb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.filter_south_8ebb li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.frame_pink_11b7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_thick_921f {
    margin: 2rem 0;
}

.picture-d2b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.picture-d2b1 .over-b7b5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner_78ad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .banner_78ad {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail_8848 {
    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);
}

.detail_8848:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.stale_16e1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.item-30c0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.popup_top_290f {
    padding: var(--section-padding);
}

.pressed_b6dc {
    margin: 2rem 0;
}

.active_73e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .active_73e0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_73e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle-efc1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.middle-efc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.solid-d3fd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hover-912f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.next_4168 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.next_4168.pink-1cf8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.feature-e1db {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.next-dead {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.gradient-warm-47bc {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.active_wood_1e4f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.medium_8134 {
    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);
}

.medium_8134 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.medium_8134 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.card-light-686d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-lite-d9b5 {
    margin: 2rem 0;
}

.center_ab36 {
    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) {
    .center_ab36 {
        flex-direction: column;
        gap: 1rem;
    }
}

.center_ab36:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.center_ab36::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);
}

.feature-cb04 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.module-d826 {
    flex: 1;
}

.last-3cd8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.badge-c51a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-c51a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_bfe7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_de7d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-hard-46dd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-hard-46dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-3a46 {
    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);
}

.dropdown-clean-a17c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.component_silver_9bd0 {
    flex: 1;
}

.feature_7c6d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.text_ee8c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.banner_light_669a {
    margin-top: 2rem;
    text-align: center;
}

.basic-d609 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.basic-d609 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tag_1129 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_1129 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_e6e3 {
    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);
}

.component_e6e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component_e6e3 .media-4bf4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_e6e3 .border_gold_e17c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.component_e6e3 .card-a87e {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.component_e6e3 .tiny_8473 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.icon-3e25 {
    padding: var(--section-padding);
}

.lite-0dd0 .cool-16b0 {
    flex: 1;
}

/* Promo Calendar Section */
.full-cdca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-4f29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-4f29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-hovered-20ca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic_333f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.left-dec2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solid-4f9d {
    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);
}

.tertiary_hard_be91 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text_2744 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tabs-up-0d1c {
    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);
}

.tabs-up-0d1c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-up-0d1c strong {
    color: var(--accent-color);
}

/* Requirements Section */
.mask-fresh-8819 {
    padding: var(--section-padding);
}

.aside_focused_ae4d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .aside_focused_ae4d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fluid_5a33 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_31e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-1110 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-1110 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.silver-3551 {
    margin-top: 3rem;
}

.silver-3551 .container-4b42 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.silver-3551 .tabs-b8a0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.silver-3551 .filter_south_8ebb {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.silver-3551 .filter_south_8ebb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.silver-3551 .filter_south_8ebb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.silver-3551 .filter_south_8ebb li strong {
    color: var(--warning-color);
}

.carousel_pro_7c2d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel_pro_7c2d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.slow_db43 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_4463 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_4463 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_9e6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_9e6b .over-b7b5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.button_outer_043c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.old-92eb {
    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);
}

.old-92eb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.icon-cfec {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_full_f8c0 {
    flex: 1;
}

.tabs-b978 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.frame_dirty_2e06 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.modal_warm_bb36 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.notification_5491 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fast-c179 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .fast-c179 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_static_0937 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row_static_0937:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_d8fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gradient_focused_3b60 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pressed_44b4 {
    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);
}

.breadcrumb-fluid-4027 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.breadcrumb-fluid-4027 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.footer_upper_1fdc { 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; }
.fluid-ccb8, .gradient_outer_d425 { max-width:100%; height:auto; }

.focus-solid-f10b, .tabs-cac9, .button-advanced-7570 { white-space:normal; }

.row_b4b8,
.message_center_8840,
.menu-liquid-a1af,
.tag_1129,
.down-bf29,
.hover-liquid-f658 {
  flex-wrap:wrap;
}

[class*="grid"],
.fast-c179,
.active_73e0,
.box_6e98 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.panel_6391 img,
.message_center_8840 img,
.outer_e111 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.progress-0ccb, .badge_inner_7f29,
.active-a4d3, .hero_in_ea02 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.south-007c { width:100%; overflow-x:auto; }
.south-007c table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.button_prev_ae48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .button_prev_ae48 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.info-solid-a970 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.silver_a58a,
.popup_right_6a98,
.logo_4380,
.last_27e9,
.in_46b2,
.fast-c179,
.active_73e0,
.box_6e98,
.steel_7460,
.up-8651,
.button_prev_ae48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .silver_a58a,
  .popup_right_6a98,
  .logo_4380,
  .last_27e9,
  .in_46b2,
  .fast-c179,
  .active_73e0,
  .box_6e98,
  .steel_7460,
  .up-8651,
  .button_prev_ae48 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.huge-d219,
.grid_6c30,
.row_static_0937,
.gold_7f16,
.middle-efc1,
.layout-middle-9399,
.hidden-bright-b87d,
.info-solid-a970 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.chip-white-2632,
.hero-d80d,
.hover-blue-63b0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.chip-white-2632 > *,
.hero-d80d > *,
.hover-blue-63b0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 3dff */
.phantom-card-b5 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
