/* {$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;
}

.card_d80b {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.slider-purple-3adc {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .slider-purple-3adc {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .slider-purple-3adc {
        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 */
.modal_ba14 {
    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);
}

.short-69bb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .short-69bb {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .container-light-b418 {
        grid-column: 1;
    }
    
    .silver_e1d4 {
        grid-column: 2;
    }
    
    .nav_narrow_5ac2 {
        grid-column: 3;
    }
}

.container-light-b418 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.container-light-b418:hover img {
    transform: scale(1.05);
}

/* Navigation */
.aside_3e8a {
    display: none;
}

@media (min-width: 1024px) {
    .aside_3e8a {
        display: block;
    }
}

/* Grouped Navigation */
.list-6fb4 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cool_6384 {
    position: relative;
}

.stone_27bf {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.cool_6384 .article_old_7947 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.article_old_7947 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.accent_2df3 {
    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;
}

.accent_2df3:hover,
.accent_2df3.fn-active-93e8 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.south_3a9f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .south_3a9f {
        display: flex;
    }
}

/* Mobile Register Button */
.silver_e1d4 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .silver_e1d4 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.article_4024 {
    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;
}

.article_4024::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 */
.nav_narrow_5ac2 {
    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) {
    .nav_narrow_5ac2 {
        display: none;
    }
}

.nav_narrow_5ac2 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav_narrow_5ac2.fn-active-93e8 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav_narrow_5ac2.fn-active-93e8 span:nth-child(2) {
    opacity: 0;
}

.nav_narrow_5ac2.fn-active-93e8 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.background-0003 {
    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;
}

.background-0003.fn-active-93e8 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.sort-7370 {
    overflow: hidden;
}

.outline-hard-8bdf {
    list-style: none;
    padding: 0.75rem 0;
}

.footer_large_cbcb {
    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;
}

.footer_large_cbcb:hover,
.footer_large_cbcb.fn-active-93e8 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.footer_large_cbcb.fixed_4873 {
    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;
}

.footer_large_cbcb.fixed_4873::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 */
.dynamic_34ad {
    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;
}

.dropdown_rough_91e7 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.dropdown_rough_91e7:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.banner_right_9ac5 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.banner_right_9ac5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.advanced_efa6 {
    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;
}

.advanced_efa6:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.focused-1bed {
    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;
}

.accent_right_458e {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.accent_right_458e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.right-d86d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.right-d86d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.modal-silver-9395 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.modal-silver-9395: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);
}

.next_2a44 {
    font-size: 1em;
    font-weight: 700;
}

.sort-eac4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tertiary_cool_3d2f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tertiary_cool_3d2f::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;
}

.motion_6f9e {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .motion_6f9e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.badge_dirty_c82e {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.form_action_fbec {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.accent_7eb9 {
    margin-bottom: 2rem;
}

.dirty-ed65 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .dirty-ed65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_large_7888 {
    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);
}

.info_3d53 {
    font-size: 1.5rem;
}

.paper-6d2b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.block-5cd4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature_9b1e {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.feature_9b1e:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.badge-7f79 {
    text-align: center;
    margin-bottom: 3rem;
}

.left_01c1 {
    margin-bottom: 1rem;
}

.basic-c9ba {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.frame-silver-c555 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .frame-silver-c555 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .frame-silver-c555.accent_bottom_9007 {
        direction: rtl;
    }
    
    .frame-silver-c555.accent_bottom_9007 > * {
        direction: ltr;
    }
}

.bronze-a5fb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.bronze-a5fb:first-child {
    margin-top: 0;
}

.primary-motion-23b1 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.overlay-4fda {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.overlay-4fda:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.bronze-bdb2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-bdb2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-28d0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video_wood_0c70 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.steel-de52 {
    list-style: none;
}

.steel-de52 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steel-de52 li:last-child {
    border-bottom: none;
}

/* Games Features */
.slow_00d6 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.video-b9d9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.status_088c {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_action_977f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.container-prev-1edf {
    margin: 2rem 0;
}

.notice-0488 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.video-adab {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.thumbnail-b30d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.shade_fixed_f3d9 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.down_fb7e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_fb7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_437a {
    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);
}

.image_437a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight_45d0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.steel_0a0f {
    font-size: 1.5rem;
}

.module-1aa1 {
    color: var(--accent-color);
    margin: 0;
}

.notification-bottom-1b31 {
    list-style: none;
}

.notification-bottom-1b31 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.notification-bottom-1b31 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.gradient-static-2ee8 {
    margin: 2rem 0;
}

.hard-b704 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.message-iron-9572 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .message-iron-9572 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_black_bff2 {
    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);
}

.progress_a9b1 {
    font-size: 1.25rem;
}

.brown-c3d2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.west_a10a,
.media_white_cced {
    text-align: center;
    margin: 2rem 0;
}

.nav-cb6a,
.backdrop-action-8276 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.avatar-right-16fd {
    margin: 2rem 0;
    text-align: center;
}

.steel-3e35 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.steel-3e35::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;
}

.green-7acc {
    position: relative;
    z-index: 1;
}

.footer-pro-bdc2 {
    margin-bottom: 1rem;
}

.caption_plasma_921d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.notification_hot_4033 {
    margin-bottom: 3rem;
}

.info-white-bb4b {
    margin-top: 3rem;
}

.selected-c092 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .selected-c092 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-c092 .modal_large_7888 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs-orange-be8e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface_soft_d701 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.alert_20a8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.sort-dbce {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .sort-dbce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort-dbce {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.slider_next_abca {
    margin-bottom: 1rem;
}

.modal-purple-5652 img {
    margin-bottom: 1rem;
}

.element_030e {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_c2f1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.top-9868 {
    list-style: none;
}

.top-9868 li {
    margin-bottom: 0.5rem;
}

.top-9868 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-9868 a:hover {
    color: var(--accent-color);
}

.caption_fluid_c419 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.steel_3895 {
    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);
}

.steel_3895:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.pink_e1ab {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.pink_e1ab p {
    margin-bottom: 0.25rem;
}

.component_complex_91a8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .component_complex_91a8 {
        flex-direction: row;
    }
}

.center-7f2f {
    text-align: center;
}

@media (min-width: 768px) {
    .center-7f2f {
        text-align: left;
    }
}

.center-7f2f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gas-30ac {
    font-size: 0.75rem !important;
}

.description_fixed_c1d6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.liquid-6d6e {
    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);
    }
}

.tabs-50d2 {
    animation: fadeInUp 0.6s ease-out;
}

.top-9333 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.red-60c6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red-60c6 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.feature_up_3a82 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_up_3a82 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-bbe0 {
    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);
}

.cold-bbe0 .status_088c {
    font-size: 1.25rem;
}

.cold-bbe0 .white-d607 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.alert-copper-f916 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert-copper-f916 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_cf40 {
    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);
}

.accordion_cf40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_4634 {
    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);
}

.short-94ab {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.button_a991 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_cool_8cfb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_71fb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.background_71fb .slider_action_977f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background_71fb .dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-261f {
    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);
}

.slider-aa0e {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.slider-aa0e img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.slider-aa0e img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hero_0c8c {
    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);
}

.button-iron-3468 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-9830 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-9830 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.card-9830 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);
}

.card-9830 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.card-9830 input::placeholder {
    color: var(--text-muted);
}

.tag-ced5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tooltip-ff26 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.tooltip-ff26 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.hovered_0f2c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.hovered_0f2c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.message-iron-9572 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-iron-9572 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_black_bff2 {
    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);
}

.label_black_bff2 .progress_a9b1 {
    font-size: 1.25rem;
}

.label_black_bff2 .brown-c3d2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.large-95cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-thick-6ee4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-thick-6ee4 .status_088c {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-thick-6ee4 .slider_action_977f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary-thick-6ee4 .dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-4f83 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-8e04 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-8e04 .title_silver_21fd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask-8e04 .box_b36b {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas-572d {
    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);
}

.secondary_right_de52 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary_right_de52 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_f9dd {
    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);
}

.plasma_f9dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_e91e {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.red-4d23 {
    flex: 1;
}

.notification-right-aa65 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.picture_paper_5a72 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.main-6b01 {
    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);
}

.main-6b01:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.nav_190b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_190b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-pink-0929 {
    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);
}

.sort-pink-0929:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-508f {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-dd1b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status_tiny_18fc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.large_a930 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice_dynamic_6026 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_77af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-action-0919 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-action-0919 .badge-pressed-e243 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary-action-0919 .widget_a478 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_bf91 {
    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);
}

.yellow-0aab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_cc63 {
    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_cc63 .status_088c {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_cc63 .slider_action_977f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_cc63 .dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_450f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_450f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron-5345 {
    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);
}

.iron-5345:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.text-glass-c08d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-glass-c08d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_next_3157 {
    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);
}

.logo_next_3157:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall-96ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-up-a56f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-adab {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.cool_f966 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.border-gas-33a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-b118 {
    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);
}

.gas-b118:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_565f {
    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);
}

.badge_51c5 {
    flex: 1;
}

.dirty_d78b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.search_lower_42b7 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.east-19a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-7106 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_slow_6be3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_slow_6be3 .title_silver_21fd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background_slow_6be3 .box_b36b {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_white_cced {
    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);
}

.hard_6689 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_6689 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.link_steel_f168 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_steel_f168 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new_a2dd {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new_a2dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pressed-e2c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-orange-3258 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layout_dadd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.liquid-ab04 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.old_2fa9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-b972 {
    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);
}

.selected-3efc {
    font-size: 2rem;
    flex-shrink: 0;
}

.new_eff3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper_cold_b425 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow-0aab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_cc63 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.preview_cc63 .slider_action_977f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_cc63 .dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-3540 {
    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);
}

.dynamic_e211 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dynamic_e211 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dynamic_e211 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-a147 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview-a147:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_c936 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hard_dd12 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.preview-2bec {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.form-dd1d {
    padding: 1.5rem;
}

.component-59d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text_pro_fdd7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text_pro_fdd7 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;
}

.text_pro_fdd7 li:last-child {
    border-bottom: none;
}

.text_pro_fdd7 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.focus_7edf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_7edf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-7562 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-7562:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro_56ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-8ca5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay_ec04 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mask_silver_c586 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.input_0472 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_gold_7177 {
    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);
}

.under-68f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.over-8ada {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bronze_396a {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_a001 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.summary-9686 {
    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);
}

.row_south_9484 {
    text-align: center;
}

.hidden-middle-f989 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west-cb67 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.info_ca8f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion_c9f2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_c9f2 .slider_action_977f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.motion_c9f2 .dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.small_d7b5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small_d7b5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small_d7b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_thick_d07f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.description_thick_d07f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion_0839 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.accent-next-8fd9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.slider_action_977f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.advanced_9f5c {
    padding: 1.5rem;
}

.dropdown-gas-f8fc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gold-6628 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold-6628 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.gold-6628 li:last-child {
    border-bottom: none;
}

.gold-6628 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.article_last_31b2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.info-62e9 {
    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);
}

.info-62e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh-4565 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-a334 {
    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);
}

.card_4634 {
    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;
}

.short-94ab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_a991 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-79c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-fresh-90f9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-light-33da {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled_upper_c03b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.logo-941b {
    display: flex;
    gap: 1rem;
}

.logo-941b .container-action-783e {
    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;
}

.bronze-0824 {
    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);
}

.border_bright_1547 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.current_5bc2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_5bc2 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;
}

.current_5bc2 li:last-child {
    border-bottom: none;
}

.current_5bc2 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.south-30f1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .south-30f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-30f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_de05 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary_de05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_smooth_df59 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header-3fa5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.badge-pressed-e243 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tall-6654 {
    font-size: 1rem;
}

.blue-f3ae {
    padding: 1.5rem;
}

.widget_a478 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.disabled_yellow_db55 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.disabled_yellow_db55 .row_south_9484 {
    text-align: center;
}

.disabled_yellow_db55 .west-cb67 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.disabled_yellow_db55 .accent_warm_0f99 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.green-b8c2 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.green-b8c2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.left_c6fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left_c6fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-1940 {
    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);
}

.aside-1940:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-a986 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-complex-cbf1 {
    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);
}

.avatar-last-67ac {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow_35ac {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface-dim-7dfd {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-top-343c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav_d842 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone_7cb5 {
    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);
}

.static_30fb {
    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;
}

.static_30fb.upper-470f {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.static_30fb.link_blue_25dc {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.static_30fb.container-350c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.static_30fb.popup-bright-f4db {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.static_30fb.tooltip_hovered_294b {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hero_139b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary_iron_1ffa {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma_834a {
    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);
}

.lite-5ab3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gradient-4f83 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-4f83 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;
}

.gradient-4f83 li:last-child {
    border-bottom: none;
}

.gradient-4f83 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wide-9972 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wide-9972 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide-9972 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed_7829 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pressed_7829:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pressed_7829.west_557b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .pressed_7829.west_557b {
        grid-column: span 3;
    }
}

.hidden-short-7e52 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.pressed_7829.west_557b .hidden-short-7e52 {
    background: rgba(6, 182, 212, 0.1);
}

.pattern-aa86 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.summary_focused_4f62 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.pressed_7829.west_557b .summary_focused_4f62 {
    color: var(--info-color);
}

.badge_8d1f {
    padding: 1.5rem;
    text-align: center;
}

.detail-5f01 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pressed_7829.west_557b .detail-5f01 {
    color: var(--info-color);
}

.block_46d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.disabled_a376 {
    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 */
.modal-right-77c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-right-77c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_5d2b {
    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);
}

.overlay_5d2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny_d4d8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-thick-6ee4 {
    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);
}

.progress_a9b1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-c7fd {
    flex: 1;
}

.hard-b704 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_ed4e {
    color: var(--text-gray);
    line-height: 1.6;
}

.black_6e27 {
    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);
}

.sidebar-53e7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.warm_78b4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.liquid-6d6e {
    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);
}

.shade-dim-db11 {
  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);
}

.shade-dim-db11 .row_south_9484 {
    text-align: center;
}

.shade-dim-db11 .hidden-middle-f989 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.shade-dim-db11 .west-cb67 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block_paper_5d94 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_iron_2d29 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_1a9f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus-smooth-0927 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_3aa9 {
    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);
}

.purple-cf73 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.element-medium-24d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-41e8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion-41e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion-41e8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-motion-b7c0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.modal-motion-b7c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_7249 {
    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);
}

.action-72f9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bronze_ba5e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.alert-39d8 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-39d8.sidebar_pink_0cfc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.alert-39d8.west-a13a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.alert-39d8.rough_7c8f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.article_basic_9c5d {
    padding: 1.5rem;
    text-align: center;
}

.card-easy-5459 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.message-plasma-7f5d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.message-plasma-7f5d .background-soft-a575 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.container_af20 {
    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);
}

.container_af20:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.sidebar_active_8305 {
  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);
}

.selected_ca67 {
    text-align: center;
}

.selected_ca67 .hidden-middle-f989 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.selected_ca67 .west-cb67 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.search-5b6d { text-align: center; }
.grid-048e { text-align: left; }
.status-short-6b1f { text-align: right; }

.silver-1402 { margin-bottom: 0; }
.image-small-b176 { margin-bottom: 0.5rem; }
.up_8d87 { margin-bottom: 1rem; }
.sort-6dbb { margin-bottom: 1.5rem; }
.center_0992 { margin-bottom: 2rem; }

.steel_5b4b { margin-top: 0; }
.mini_7089 { margin-top: 0.5rem; }
.lite-efc6 { margin-top: 1rem; }
.panel_939a { margin-top: 1.5rem; }
.content-under-bb5f { margin-top: 2rem; }

.fn-hidden-93e8 { display: none; }
.fn-visible-93e8 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tertiary_cool_3d2f {
        padding: 6rem 0 3rem;
    }
    
    .motion_6f9e {
        text-align: center;
    }
    
    .frame-silver-c555 {
        text-align: center;
    }
    
    .dirty-ed65 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .modal_ba14,
    .background-0003,
    .steel-3e35,
    .alert_20a8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tertiary_cool_3d2f {
        background: none;
    }
}

/* Providers Section */
.content_f3aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_advanced_3442 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_advanced_3442 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_advanced_3442 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-9c28 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.red-9c28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gas_7163 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dropdown-57c4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.input-3c8e {
    list-style: none;
    padding: 0;
}

.input-3c8e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.input-3c8e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.content-e1a2 {
    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);
}

.content-e1a2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.surface-dynamic-ae0a {
    padding: var(--section-padding);
}

.header_complex_12f6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_complex_12f6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-0c64 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.top-0c64:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.notice-207f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.huge_fe77 {
    display: flex;
    flex-direction: column;
}

.feature_white_b74a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dynamic_f781 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.detail_70da {
    color: var(--accent-color);
}

.list-48aa {
    font-size: 1.25rem;
}

.dynamic-80a2 {
    margin-bottom: 1rem;
}

.dynamic-80a2 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.lower-98d2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.overlay-dirty-b557 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.row_south_9484 {
    text-align: center;
}

.hidden-middle-f989 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west-cb67 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.fresh-0024 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-a710 {
    margin: 2rem 0;
}

.search-dd05 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.search-dd05 .status_088c {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-e0bc {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.glass-d5b1 {
    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;
}

.glass-d5b1:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header_f3bf {
    font-size: 2rem;
}

.breadcrumb-dark-a9a7 {
    display: flex;
    flex-direction: column;
}

.message_36c1 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tabs-009b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.texture_pro_bbc9 {
    padding: var(--section-padding);
}

.nav_silver_b14d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav_silver_b14d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav_silver_b14d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_gas_ebc2 {
    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);
}

.content_gas_ebc2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content_gas_ebc2 .hidden-middle-f989 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.content_gas_ebc2 .west-cb67 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.content_gas_ebc2 .link-7183 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.action-2b71 {
    margin-top: 4rem;
}

.gallery_narrow_15c6 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.gold_329a {
    overflow-x: auto;
}

.mini_7b8a {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mini_7b8a thead {
    background: var(--accent-color);
}

.mini_7b8a th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.mini_7b8a td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.mini_7b8a tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.mini_7b8a tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.aside_old_4274 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_paper_30ac {
    max-width: 900px;
    margin: 0 auto;
}

.cool_664b {
    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);
}

.cool_664b:hover {
    border-color: var(--accent-color);
}

.notice-bacc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.notice-bacc h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.backdrop_29bf {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.cool_664b.fn-active-93e8 .backdrop_29bf {
    transform: rotate(45deg);
}

.in_cedb {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.cool_664b.fn-active-93e8 .in_cedb {
    max-height: 1000px;
}

.in_cedb p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.texture_e081 {
    padding: var(--section-padding);
}

.slider-aa0e {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.fast_3b86 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite_7d98 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite_7d98 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort_under_f53f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-919d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.panel_bdd7 {
    font-size: 2rem;
}

.video_bcab {
    color: var(--text-white);
    margin: 0;
}

.left_26c6 {
    list-style: none;
    padding: 0;
}

.left_26c6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.left_26c6 li:last-child {
    border-bottom: none;
}

.secondary-action-e2e4 {
    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);
}

.secondary-action-e2e4 p {
    color: var(--success-color);
    margin: 0;
}

.smooth_c638 {
    margin-top: 3rem;
}

.border_bright_1547 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.container_action_d603 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .container_action_d603 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden_3490 {
    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);
}

.advanced_6e46 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hidden_3490 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.blue-f616 {
    padding: var(--section-padding);
}

.outer_e740 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_e740 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma-a4d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.plasma-a4d3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tertiary-huge-8289 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight_0739 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.list_upper_e7e2 {
    flex: 1;
}

.backdrop-83d2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tabs-dac2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.menu-b13c {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_bronze_c363 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.title_bronze_c363:last-child {
    border-bottom: none;
}

/* Comparison Section */
.sort-static-f971 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.filter_896c {
    padding: var(--section-padding);
}

.outline-middle-7047 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.lite-df74 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-df74 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_current_da92 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-97c5, .tiny-a79c, .hover-1887 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hover-1887 {
    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 */
.button-north-97a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_fed2 {
    margin: 2rem 0;
}

.right_eda1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_6980 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.layout-liquid-0210 {
    list-style: none;
    padding: 0;
}

.layout-liquid-0210 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;
}

.layout-liquid-0210 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.layout-liquid-0210 li:last-child {
    border-bottom: none;
}

.dark_b40b {
    text-align: center;
    margin-top: 2rem;
}

.copper-027b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.column-13ef {
    padding: var(--section-padding);
}

.card_ce67 {
    margin: 2rem 0;
}

.dropdown_bd7c {
    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) {
    .dropdown_bd7c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.dropdown_bd7c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.button_bb85 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.description_middle_a9ed {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.detail-new-25a9 {
    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;
}

.alert-c59a {
    flex: 1;
}

.next_029d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.focus_pressed_645b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero-b5d3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.gradient-fb9d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .gradient-fb9d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.card-new-8648 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card-new-8648:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-new-8648 .hidden-middle-f989 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-new-8648 .west-cb67 {
    color: var(--text-gray);
    font-size: 1rem;
}

.mask_thick_d012 {
    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);
}

.texture-dim-a75f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.texture-dim-a75f strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.copper-41f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .copper-41f1 {
        grid-template-columns: 1fr 1fr;
    }
}

.dynamic-b860 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-yellow-3b66 {
    margin-bottom: 1.5rem;
}

.gallery-yellow-3b66 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-yellow-3b66 input,
.gallery-yellow-3b66 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;
}

.gallery-yellow-3b66 input:focus,
.gallery-yellow-3b66 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.detail_narrow_b6dc {
    width: 100%;
    margin-top: 1rem;
}

.form-cbb7 {
    display: flex;
    align-items: center;
}

.sidebar_558c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.label-down-2336 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.icon_stone_f958 {
    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;
}

.info_acfa {
    color: var(--text-gray);
}

.block_bb26 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.button-6907 {
    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);
}

.button-6907 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.wide-4e4e {
    margin-top: 3rem;
}

.shade_old_c17d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.chip_full_772b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small_3322 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gradient_medium_1f7a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient_medium_1f7a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.static-7935 {
    padding: var(--section-padding);
}

.east_c3c9 {
    margin: 2rem 0;
}

.dropdown_fa1f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.new-864b {
    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;
}

.new-864b:hover, .new-864b.fn-active-93e8 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.background-430c {
    display: none;
}

.background-430c.fn-active-93e8 {
    display: block;
}

.notification-short-ee9f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-light-6465 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bronze_36e1 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.bronze_36e1 ul {
    list-style: none;
    padding: 0;
}

.bronze_36e1 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.bronze_36e1 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.fast_f167 {
    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 */
.solid_e49b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_e070 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-3cec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.overlay-hovered-f724 {
    color: var(--accent-color);
    margin: 0;
}

.accent-063d {
    display: flex;
    gap: 1.5rem;
}

.shadow_upper_7a62 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.active-c6cf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.layout-center-0258 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.layout-center-0258.widget_e8f1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.layout-center-0258.hover_fe20 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.layout-center-0258.shadow-3f29 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.detail_purple_a6af {
    margin-top: 2rem;
}

.medium_fd9c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column-black-9c44 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .column-black-9c44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-cbe4 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.purple-4a82 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.large_c776 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.next-f6f4 {
    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 */
.black_d475 {
    padding: var(--section-padding);
}

.focused-fe50 {
    margin: 2rem 0;
}

.gallery_thick_862d {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.box_brown_4aee {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.chip_2749 {
    list-style: none;
    padding: 0;
}

.chip_2749 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;
}

.chip_2749 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.chip_2749 li:last-child {
    border-bottom: none;
}

.over_86d0 {
    margin: 2rem 0;
}

.layout_90f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar_4525 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .avatar_4525 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component-top-59bb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.right_9f7c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_dirty_dbbe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gradient_thick_a9b3 {
    margin-top: 2rem;
}

.notification-right-aa65 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.input-liquid-acba {
    list-style: none;
    padding: 0;
}

.south_e16e {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.south_e16e a {
    color: var(--accent-color);
    text-decoration: none;
}

.south_e16e a:hover {
    text-decoration: underline;
}

.complex-c3c7 {
    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-fresh-6898 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_action_fd5e {
    margin: 2rem 0;
}

.article-south-693a {
    margin-bottom: 3rem;
}

.article-south-693a .alert_6980 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.description_over_2a7c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.message_6cfe {
    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);
}

.message_6cfe:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.pagination_active_347d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pagination_active_347d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-solid-2cc7 {
    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 */
.dropdown-large-3731 {
    padding: var(--section-padding);
}

.last-1033 {
    margin: 2rem 0;
}

.sidebar-prev-6dae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.motion-ec73 {
    overflow-x: auto;
    margin: 2rem 0;
}

.backdrop-db77 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.motion-cb7c {
    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;
}

.link_liquid_d55f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.accent-cold-abb0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .accent-cold-abb0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_5ca5 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_5ca5 .status_088c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.element_5ca5 .slider_action_977f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-d580 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.button_motion_f6e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_wood_2ecb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_wood_2ecb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light-578f {
    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;
}

.light-578f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.grid-hovered-0f86 {
    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);
}

.detail_soft_b8b2 {
    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;
}

.wrapper_8842 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture_small_338c {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.title_e93c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.new-e2af {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion_under_d7a1 {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper_inner_bc67 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface_0359 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.surface_0359 .container-action-783e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper_glass_151c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_glass_151c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_036e {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel_036e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.panel_036e .hidden-middle-f989 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel_036e .west-cb67 {
    color: var(--text-gray);
    font-size: 1rem;
}

.accordion-f114 {
    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-gas-c7e7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.active-gas-c7e7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.old_2fa9 {
    margin: 2rem 0;
}

.hover-b972 {
    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);
}

.hover-b972:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.selected-3efc {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accordion-lower-a1f7 {
    flex: 1;
}

.new_eff3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper_cold_b425 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.yellow-0aab {
    margin: 2rem 0;
}

.preview_cc63 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_cc63 .slider_action_977f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.preview_cc63 .dropdown-gas-f8fc {
    color: var(--text-gray);
    margin: 0;
}

.green-3540 {
    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);
}

.green-3540 .nav-cb6a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.feature-d580 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.soft_565f {
    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;
}

.badge_51c5 {
    flex: 1;
}

.search_lower_42b7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.east-19a2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.card_4634 {
    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;
}

.action-be70 {
    flex: 1;
}

.short-94ab {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.button_a991 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.outline-light-33da {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.disabled_upper_c03b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.logo-941b {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.logo-941b .container-action-783e {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bronze-0824 {
    margin-top: 2rem;
}

.bronze-0824 .border_bright_1547 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.west-b46c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-9686 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .summary-9686 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-9686 .row_south_9484 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_ca8f {
    margin: 2rem 0;
}

.motion_c9f2 {
    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 */
.filter-a14e {
    padding: var(--section-padding);
}

.advanced_9f5c {
    margin-top: 1rem;
}

.gold-6628 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.gold-6628 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gold-6628 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.green-928c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-old-13c4 {
    margin: 2rem 0;
}

.mini_08d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.nav_a9e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.center_54f6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.accent-thick-4f2a {
    margin: 2rem 0;
}

.picture_ba2f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.picture_ba2f .alert_6980 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery_paper_9b2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_paper_9b2d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-c31d {
    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);
}

.dark_6bc6 {
    color: var(--text-white);
    font-weight: 600;
}

.action-7cf0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.message-91f4 {
    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);
}

.message-91f4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.current-eb53 {
    padding: var(--section-padding);
}

.form-paper-e3e2 {
    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;
}

.form-paper-e3e2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.label-2b79 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-2b79 .advanced_6e46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label-2b79 .card-8c33 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pink-ac9e {
    flex: 1;
}

.column-d81f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-91fd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-91fd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hero-91fd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.photo-slow-18e7 {
    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);
}

.photo-slow-18e7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo-slow-18e7 strong {
    color: var(--warning-color);
}

/* Slots Section */
.in_38a2 {
    padding: var(--section-padding);
}

.notice_dynamic_6026 {
    margin: 2rem 0;
}

/* Table Games Section */
.widget_over_673a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_77af {
    margin: 2rem 0;
}

.primary-action-0919 {
    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);
}

.primary-action-0919:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.primary-action-0919 .badge-pressed-e243 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary-action-0919 .widget_a478 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.next_bf91 {
    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);
}

.next_bf91 .nav-cb6a {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.widget-a42d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_de67 {
    margin: 2rem 0;
}

.panel-ac39 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot-33b2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_outer_e808 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.focused_9d76 {
    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);
}

.focused_9d76:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.focused_9d76.fn-active-93e8 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fluid-0943 {
    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);
}

.modal_c1ad {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_c1ad strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.disabled-1e25 {
    padding: var(--section-padding);
}

.pro-dcb4 {
    margin: 2rem 0;
}

.tabs_a9b4 {
    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);
}

.tabs_a9b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tabs_a9b4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.wide-1adb {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.gas_bec7 {
    flex: 1;
}

.card_huge_be81 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.top_3ba0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mini_2a06 {
    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;
}

.soft_5e65 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-9235 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-af8c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-white-2024 {
    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;
}

.hero-white-2024:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gallery_medium_1390 {
    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);
}

.filter_e0c1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.filter_e0c1 strong {
    color: var(--accent-color);
}

/* New Games Section */
.hidden_646e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-ed3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .frame-ed3a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-ed3a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-top-e894 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.alert-top-e894:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static-4339 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--warning-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pattern_01ac {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.motion_6394 {
    font-size: 2rem;
}

.purple_5bf5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.alert_plasma_2331 {
    flex: 1;
}

.north_177e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.alert-east-08f4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.next-2910 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input-1474 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bronze-cc9e {
    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;
}

.solid-3a78 {
    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;
}

.solid-3a78:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mask_hot_976f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-stale-4b68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_south_ef85 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .thumbnail_south_ef85 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-left-4424 {
    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);
}

.heading_3eed {
    color: var(--text-white);
    font-weight: 600;
}

.hero-7c73 {
    color: var(--accent-color);
    font-weight: 600;
}

.text-3e4c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.text-3e4c strong {
    color: var(--accent-color);
}

/* Security Section */
.form_hot_360b {
    padding: var(--section-padding);
}

/* Benefits Section */
.cool_9160 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.focus_d621 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.block-ac3f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-b79d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.avatar_easy_6aa8 {
    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) {
    .avatar_easy_6aa8 {
        flex-direction: column;
        gap: 1rem;
    }
}

.avatar_easy_6aa8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.avatar_easy_6aa8 .card_4634 {
    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;
}

.avatar_easy_6aa8 .action-be70 {
    flex: 1;
}

.avatar_easy_6aa8 .short-94ab {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.avatar_easy_6aa8 .button_a991 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.feature_brown_f48a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_brown_f48a .hard-b704 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_brown_f48a .large-95cf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_brown_f48a .large-95cf li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature_brown_f48a .large-95cf li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.menu_ea32 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.footer_wide_9eea {
    padding: var(--section-padding);
}

.down-f06e {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .down-f06e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_rough_bb61 {
    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);
}

.layout_rough_bb61:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.layout_rough_bb61 .layout_22e1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_rough_bb61 .link-hot-6297 {
    flex: 1;
}

.layout_rough_bb61 .title_silver_21fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_rough_bb61 .summary_325c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.heading-yellow-cf19 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-yellow-cf19 .tabs_steel_7a1f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-yellow-cf19 .center-7b9b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.heading-yellow-cf19 .center-7b9b 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);
}

.heading-yellow-cf19 .center-7b9b li:last-child {
    border-bottom: none;
}

.heading-yellow-cf19 .center-7b9b 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;
}

.heading-yellow-cf19 .center-7b9b li strong {
    color: var(--text-white);
}

.center-891c {
    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);
}

.center-891c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center-891c strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.secondary-8a30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-pink-c7a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .video-pink-c7a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-4160 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.feature-4160:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-selected-3ad8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-600d {
    font-size: 2rem;
}

.clean-0d27 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.component_4100 {
    flex: 1;
}

.accent_766c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent_766c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent_766c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.yellow_4d4c {
    margin-top: 3rem;
}

.gallery_thick_862d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.box_brown_4aee {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.chip_2749 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip_2749 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.chip_2749 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.chip_2749 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shadow-first-d8f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-3df1 {
    margin: 2rem 0;
}

.solid_c92d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.solid_c92d .alert_6980 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-bright-1469 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .frame-bright-1469 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_fe9b {
    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);
}

.form_fe9b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.alert_medium_ecfd {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel-7a41 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.card_green_3578 {
    padding: var(--section-padding);
}

.video_stone_9434 {
    margin: 2rem 0;
}

.main-fresh-08eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .main-fresh-08eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-fresh-08eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_1e16 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.primary_1e16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-old-bb3b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.title-steel-4702 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.logo-a1b7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-a1b7.highlight_light_c3ff {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.highlight_7005 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.image_east_c2b4 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.green-6460 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_5645 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown-hovered-8145 {
    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);
}

.dropdown-hovered-8145 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown-hovered-8145 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.modal_brown_d268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light_7578 {
    margin: 2rem 0;
}

.paragraph_stone_3e1c {
    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) {
    .paragraph_stone_3e1c {
        flex-direction: column;
        gap: 1rem;
    }
}

.paragraph_stone_3e1c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paragraph_stone_3e1c::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);
}

.bright_c625 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.content_large_5a50 {
    flex: 1;
}

.first_3207 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary-8b69 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-8b69 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_2dbf {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-cool-aa7b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in-ff32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .in-ff32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_gold_a93a {
    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);
}

.purple-90c4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.block_58c5 {
    flex: 1;
}

.column_75ee {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.action-c169 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.short_d63b {
    margin-top: 2rem;
    text-align: center;
}

.carousel_c52f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel_c52f strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.left_c6fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left_c6fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-1940 {
    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);
}

.aside-1940:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.aside-1940 .pro_56ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-1940 .pattern-8ca5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.aside-1940 .overlay_ec04 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.aside-1940 .mask_silver_c586 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.mini-7d42 {
    padding: var(--section-padding);
}

.link-complex-cbf1 .inner-a4fd {
    flex: 1;
}

/* Promo Calendar Section */
.feature_fixed_b868 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-3f65 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-3f65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-dim-31e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-50fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.layout_lower_4f3a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-orange-85f0 {
    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);
}

.slow_89e4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.blue-2f40 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.black-8d4b {
    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);
}

.black-8d4b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black-8d4b strong {
    color: var(--accent-color);
}

/* Requirements Section */
.notice-c0cf {
    padding: var(--section-padding);
}

.row_south_44d6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row_south_44d6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text_2933 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-e5af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input_black_149f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input_black_149f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.status_down_8b77 {
    margin-top: 3rem;
}

.status_down_8b77 .gallery_thick_862d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.status_down_8b77 .box_brown_4aee {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status_down_8b77 .chip_2749 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.status_down_8b77 .chip_2749 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.status_down_8b77 .chip_2749 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.status_down_8b77 .chip_2749 li strong {
    color: var(--warning-color);
}

.chip_b6ed {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_b6ed strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.bronze-fbfd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_c689 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current_c689 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-5664 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-5664 .alert_6980 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.widget_white_c72b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.secondary_in_e674 {
    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);
}

.secondary_in_e674:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.layout_full_9c91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface_focused_d2a5 {
    flex: 1;
}

.picture_61bf {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.short-f4d7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active-new-39ca {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.breadcrumb_da6d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paragraph_under_4752 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .paragraph_under_4752 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_0326 {
    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);
}

.gallery_0326:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs_tiny_24f2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old-88d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture-dim-a75f {
    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);
}

.text-fde9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-fde9 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.slider-purple-3adc { 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; }
.feature_9b1e, .overlay-4fda { max-width:100%; height:auto; }

.dynamic_34ad, .advanced_efa6, .focused-1bed { white-space:normal; }

.motion_6f9e,
.frame-silver-c555,
.modal-right-77c6,
.left_c6fe,
.yellow-0aab,
.accordion-41e8 {
  flex-wrap:wrap;
}

[class*="grid"],
.paragraph_under_4752,
.main-fresh-08eb,
.selected-c092 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tertiary_cool_3d2f img,
.frame-silver-c555 img,
.block-5cd4 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.badge_dirty_c82e, .form_action_fbec,
.left_01c1, .basic-c9ba {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.gold_329a { width:100%; overflow-x:auto; }
.gold_329a table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.breadcrumb_advanced_3442 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .breadcrumb_advanced_3442 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.red-9c28 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.nav_silver_b14d,
.hovered-dcaa,
.text_5174,
.brown-517c,
.gradient-fb9d,
.paragraph_under_4752,
.main-fresh-08eb,
.selected-c092,
.sidebar_active_8305,
.pro-dcb4,
.breadcrumb_advanced_3442 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .nav_silver_b14d,
  .hovered-dcaa,
  .text_5174,
  .brown-517c,
  .gradient-fb9d,
  .paragraph_under_4752,
  .main-fresh-08eb,
  .selected-c092,
  .sidebar_active_8305,
  .pro-dcb4,
  .breadcrumb_advanced_3442 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.content_gas_ebc2,
.card-new-8648,
.gallery_0326,
.modal_large_7888,
.primary_1e16,
.selected_ca67,
.tabs_a9b4,
.red-9c28 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.search_complex_71e5,
.overlay_6f28,
.card-slow-b796 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.search_complex_71e5 > *,
.overlay_6f28 > *,
.card-slow-b796 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7af8 */
.phantom-card-a1 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
