/* {$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;
}

.video_over_2ab8 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.tooltip_d04a {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .tooltip_d04a {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tooltip_d04a {
        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 */
.highlight_thick_5cf7 {
    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);
}

.gas-be40 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .gas-be40 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dark_dc0a {
        grid-column: 1;
    }
    
    .dropdown-b0c7 {
        grid-column: 2;
    }
    
    .light-3383 {
        grid-column: 3;
    }
}

.dark_dc0a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dark_dc0a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tabs-240b {
    display: none;
}

@media (min-width: 1024px) {
    .tabs-240b {
        display: block;
    }
}

/* Grouped Navigation */
.footer_1253 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.component_in_51f2 {
    position: relative;
}

.tooltip_black_b808 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.component_in_51f2 .banner-warm-0bcb {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.banner-warm-0bcb {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.sort-5403 {
    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;
}

.sort-5403:hover,
.sort-5403.fn-active-ccd7 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.action_4757 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .action_4757 {
        display: flex;
    }
}

/* Mobile Register Button */
.dropdown-b0c7 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .dropdown-b0c7 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.surface_6aa8 {
    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;
}

.surface_6aa8::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 */
.light-3383 {
    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) {
    .light-3383 {
        display: none;
    }
}

.light-3383 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.light-3383.fn-active-ccd7 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.light-3383.fn-active-ccd7 span:nth-child(2) {
    opacity: 0;
}

.light-3383.fn-active-ccd7 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.heading-hard-89e5 {
    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;
}

.heading-hard-89e5.fn-active-ccd7 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.filter-dirty-022f {
    overflow: hidden;
}

.hard_5dd9 {
    list-style: none;
    padding: 0.75rem 0;
}

.secondary_e9d6 {
    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;
}

.secondary_e9d6:hover,
.secondary_e9d6.fn-active-ccd7 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.secondary_e9d6.card_gold_fd23 {
    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;
}

.secondary_e9d6.card_gold_fd23::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 */
.hot_c62a {
    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;
}

.medium-db99 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.medium-db99:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.thick-5487 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.thick-5487:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.frame_6ced {
    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;
}

.frame_6ced:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.content_2c08 {
    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;
}

.element-b50c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.element-b50c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.active_bc3e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.active_bc3e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.silver_3eec {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.silver_3eec: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);
}

.aside_ea1c {
    font-size: 1em;
    font-weight: 700;
}

.detail_south_1938 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.sidebar-smooth-8fba {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.sidebar-smooth-8fba::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.row_dc31 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .row_dc31 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.smooth-6545 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.notice-8012 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.heading_pro_933c {
    margin-bottom: 2rem;
}

.middle_13d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .middle_13d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.south-d0fb {
    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);
}

.column_south_adb3 {
    font-size: 1.5rem;
}

.center_8b29 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.info_7470 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-6355 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.slider-6355:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.active_fixed_df73 {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-5822 {
    margin-bottom: 1rem;
}

.red_3ed2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-plasma-39fd {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel-plasma-39fd {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .carousel-plasma-39fd.detail-in-4052 {
        direction: rtl;
    }
    
    .carousel-plasma-39fd.detail-in-4052 > * {
        direction: ltr;
    }
}

.new-7037 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.new-7037:first-child {
    margin-top: 0;
}

.active_14ad {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.chip_bottom_0829 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.chip_bottom_0829:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.overlay_4c66 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_4c66 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_pressed_c281 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph_286b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.bottom-a33a {
    list-style: none;
}

.bottom-a33a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-a33a li:last-child {
    border-bottom: none;
}

/* Games Features */
.hover-c3ac {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.texture-motion-091a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.active_938a {
    font-size: 2rem;
    flex-shrink: 0;
}

.left_8d35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.logo_13e5 {
    margin: 2rem 0;
}

.icon-gold-10ba {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.filter_ba2f {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.picture_0079 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.summary_19a2 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.tall_c739 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_c739 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress-fa5d {
    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);
}

.progress-fa5d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pressed_4aba {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.text-240a {
    font-size: 1.5rem;
}

.grid_plasma_b482 {
    color: var(--accent-color);
    margin: 0;
}

.panel-east-7559 {
    list-style: none;
}

.panel-east-7559 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.panel-east-7559 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.solid-c39e {
    margin: 2rem 0;
}

.section-stone-8826 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.nav-solid-a51c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-solid-a51c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow_b8ab {
    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);
}

.detail-wide-8011 {
    font-size: 1.25rem;
}

.new-2e06 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.hidden-c919,
.detail_stale_f037 {
    text-align: center;
    margin: 2rem 0;
}

.mini-85da,
.backdrop_a090 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.right_30a9 {
    margin: 2rem 0;
    text-align: center;
}

.footer-solid-80da {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-solid-80da::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;
}

.blue_c90f {
    position: relative;
    z-index: 1;
}

.accordion_c607 {
    margin-bottom: 1rem;
}

.card-mini-194e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tertiary_static_603d {
    margin-bottom: 3rem;
}

.tag_407c {
    margin-top: 3rem;
}

.bright_d214 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bright_d214 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bright_d214 .south-d0fb {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-1d7a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.liquid-8d8c {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.silver_b1ef {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.card_west_32e7 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .card_west_32e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card_west_32e7 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notice-6805 {
    margin-bottom: 1rem;
}

.layout-4485 img {
    margin-bottom: 1rem;
}

.box-1039 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up_60f1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.iron_6ea0 {
    list-style: none;
}

.iron_6ea0 li {
    margin-bottom: 0.5rem;
}

.iron_6ea0 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.iron_6ea0 a:hover {
    color: var(--accent-color);
}

.chip_6105 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.liquid-d126 {
    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);
}

.liquid-d126:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.cold-ab54 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.cold-ab54 p {
    margin-bottom: 0.25rem;
}

.text-997a {
    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) {
    .text-997a {
        flex-direction: row;
    }
}

.static_a9d9 {
    text-align: center;
}

@media (min-width: 768px) {
    .static_a9d9 {
        text-align: left;
    }
}

.static_a9d9 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider-3782 {
    font-size: 0.75rem !important;
}

.form_medium_78dc {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.message-6d13 {
    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);
    }
}

.light-c720 {
    animation: fadeInUp 0.6s ease-out;
}

.soft-6c85 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.progress-b9ec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-b9ec {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.surface_adbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_adbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-in-5522 {
    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);
}

.carousel-in-5522 .active_938a {
    font-size: 1.25rem;
}

.carousel-in-5522 .backdrop_fixed_cd33 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.small-7eea {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small-7eea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid-8596 {
    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);
}

.fluid-8596:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard_614d {
    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);
}

.middle_d1a0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery-2789 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-c195 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption_b526 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_b526 .left_8d35 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption_b526 .hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer-986d {
    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);
}

.caption-bff0 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.caption-bff0 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.caption-bff0 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.focus-c796 {
    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);
}

.disabled_motion_48ee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shade-new-f396 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shade-new-f396 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shade-new-f396 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);
}

.shade-new-f396 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.shade-new-f396 input::placeholder {
    color: var(--text-muted);
}

.banner-cool-beba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-78b3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.card-78b3 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.copper_3915 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.copper_3915:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.nav-solid-a51c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-solid-a51c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow_b8ab {
    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);
}

.slow_b8ab .detail-wide-8011 {
    font-size: 1.25rem;
}

.slow_b8ab .new-2e06 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.east-adf3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass_bd3e {
    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);
}

.glass_bd3e .active_938a {
    font-size: 2rem;
    flex-shrink: 0;
}

.glass_bd3e .left_8d35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass_bd3e .hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_fast_afb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_25bb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip_25bb .up_38d6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip_25bb .focused-afaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-a5e0 {
    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);
}

.outline-light-f611 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline-light-f611 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner-0413 {
    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);
}

.inner-0413:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-gold-7147 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.frame_motion_20dc {
    flex: 1;
}

.badge_advanced_1b9a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery_6b0f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bright_78f5 {
    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);
}

.bright_78f5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.title_db5e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_db5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-bottom-9ed8 {
    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);
}

.box-bottom-9ed8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort_bronze_0ad1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-581f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cold_2147 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside-f7dc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gas_2be8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid-5ba2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-pro-426d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-pro-426d .solid_3e18 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-pro-426d .mask-6a00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_96c6 {
    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);
}

.info-bright-a549 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas_9e4b {
    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);
}

.gas_9e4b .active_938a {
    font-size: 2rem;
    flex-shrink: 0;
}

.gas_9e4b .left_8d35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas_9e4b .hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-2d5e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed-2d5e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_8205 {
    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);
}

.status_8205:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.video-da0b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-da0b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_ab9f {
    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_ab9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-4c7a {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_a67d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter_ba2f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hard-a089 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.fixed_18c8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic_5371 {
    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);
}

.dynamic_5371:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_8a0d {
    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);
}

.secondary-7ebd {
    flex: 1;
}

.dropdown_5fbf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.menu_e326 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.liquid_96ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.label_4671 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_f8f8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_f8f8 .up_38d6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media_f8f8 .focused-afaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_stale_f037 {
    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);
}

.backdrop-2f89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-2f89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.background-4656 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-4656 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom-5bbc {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bottom-5bbc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid_faf0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-890a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description-6819 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tabs_pink_0c93 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.large-f9d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short-4521 {
    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);
}

.widget_orange_73c0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.section-dark-5fa3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_00f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-bright-a549 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas_9e4b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.gas_9e4b .left_8d35 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gas_9e4b .hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
}

.steel_1840 {
    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);
}

.button_16a2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button_16a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button_16a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_a20b {
    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_a20b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_south_fa64 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.cool-b482 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.plasma-2760 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.mini_144f {
    padding: 1.5rem;
}

.overlay_out_87d1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.summary_copper_fcd7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary_copper_fcd7 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;
}

.summary_copper_fcd7 li:last-child {
    border-bottom: none;
}

.summary_copper_fcd7 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.dropdown-medium-7e1a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-medium-7e1a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-b2ca {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.form-b2ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-238c {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper_top_128a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label_e3bf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.image_bright_ed85 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.logo_6285 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer_cbd5 {
    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);
}

.mini-c024 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-purple-d2ea {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass-0f63 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-ec65 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.header_north_094d {
    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);
}

.aside-b5c4 {
    text-align: center;
}

.chip_light_6625 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-27b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text-west-40a9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-stale-7e3c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-stale-7e3c .left_8d35 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-stale-7e3c .hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-d7f2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-d7f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-d7f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid-f432 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fluid-f432:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-c226 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_cold_9186 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.left_8d35 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.list-f0cc {
    padding: 1.5rem;
}

.hero_589d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover_bottom_8608 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover_bottom_8608 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;
}

.hover_bottom_8608 li:last-child {
    border-bottom: none;
}

.hover_bottom_8608 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.tag-f38d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.modal-2976 {
    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);
}

.modal-2976:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_dark_004a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail_0669 {
    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);
}

.hard_614d {
    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;
}

.middle_d1a0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-2789 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-64c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_ae6d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow-6ad4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.element_2bcc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hard_cc14 {
    display: flex;
    gap: 1rem;
}

.hard_cc14 .block_581c {
    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;
}

.badge_78b4 {
    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);
}

.label_4132 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.down_e8c9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.down_e8c9 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;
}

.down_e8c9 li:last-child {
    border-bottom: none;
}

.down_e8c9 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.gallery_lower_1743 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery_lower_1743 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery_lower_1743 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_e92a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.content_e92a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_144e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_down_5989 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.solid_3e18 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.content-1460 {
    font-size: 1rem;
}

.fluid_8414 {
    padding: 1.5rem;
}

.mask-6a00 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.left-328b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.left-328b .aside-b5c4 {
    text-align: center;
}

.left-328b .accordion-27b9 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.left-328b .prev-1752 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hovered-e89a {
    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);
}

.hovered-e89a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.iron-69c3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron-69c3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_silver_17b2 {
    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);
}

.slider_silver_17b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough-aab5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.east-b05e {
    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);
}

.footer-51b5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-paper-5f9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-df67 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-f807 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.backdrop_9be7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-bronze-24e7 {
    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);
}

.info-current-0d2c {
    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;
}

.info-current-0d2c.media-cold-454b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.info-current-0d2c.header-6695 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.info-current-0d2c.secondary-f6b7 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.info-current-0d2c.main_iron_176e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.info-current-0d2c.prev-76e7 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.module-374c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-7bae {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_a264 {
    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);
}

.nav-outer-b311 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.layout_fast_afb3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_fast_afb3 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;
}

.layout_fast_afb3 li:last-child {
    border-bottom: none;
}

.layout_fast_afb3 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.container-under-86d8 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .container-under-86d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container-under-86d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-61c0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element-61c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-61c0.hero_2f83 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .element-61c0.hero_2f83 {
        grid-column: span 3;
    }
}

.title_iron_0656 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.element-61c0.hero_2f83 .title_iron_0656 {
    background: rgba(6, 182, 212, 0.1);
}

.hard-3cbb {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.east-be54 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.element-61c0.hero_2f83 .east-be54 {
    color: var(--info-color);
}

.brown-0518 {
    padding: 1.5rem;
    text-align: center;
}

.description_46cc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.element-61c0.hero_2f83 .description_46cc {
    color: var(--info-color);
}

.bronze-1f3e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.banner_active_ef2b {
    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 */
.preview-north-c1bf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-north-c1bf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_first_d445 {
    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);
}

.article_first_d445:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-4fdb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass_bd3e {
    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);
}

.detail-wide-8011 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_831d {
    flex: 1;
}

.section-stone-8826 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-dbde {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough_0ebd {
    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);
}

.sort_dd8b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pattern_f235 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.message-6d13 {
    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);
}

.filter_dark_994e {
  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);
}

.filter_dark_994e .aside-b5c4 {
    text-align: center;
}

.filter_dark_994e .chip_light_6625 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.filter_dark_994e .accordion-27b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.logo-c877 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-red-78cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_7f11 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tall_7b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_b5b2 {
    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);
}

.pressed-83a9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paper_7489 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-d89a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .new-d89a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new-d89a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table-bright-6ef4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table-bright-6ef4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow-c655 {
    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);
}

.input-b6c9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.table_right_89f0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.carousel-321d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-321d.nav_bright_bab9 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.carousel-321d.bright-68cd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.carousel-321d.shadow-d070 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.badge_pro_f948 {
    padding: 1.5rem;
    text-align: center;
}

.gold-20f0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.in_5c77 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.in_5c77 .caption_fluid_0602 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.button_blue_332f {
    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);
}

.button_blue_332f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.selected_09a3 {
  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);
}

.thumbnail_66e2 {
    text-align: center;
}

.thumbnail_66e2 .chip_light_6625 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.thumbnail_66e2 .accordion-27b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.sort-solid-8fcb { text-align: center; }
.under_75f5 { text-align: left; }
.slider-b029 { text-align: right; }

.yellow-a512 { margin-bottom: 0; }
.prev-ad62 { margin-bottom: 0.5rem; }
.gas_5499 { margin-bottom: 1rem; }
.selected_d78f { margin-bottom: 1.5rem; }
.purple_a9d4 { margin-bottom: 2rem; }

.input_hard_a17b { margin-top: 0; }
.cold_b854 { margin-top: 0.5rem; }
.photo-action-136f { margin-top: 1rem; }
.bottom-c1c9 { margin-top: 1.5rem; }
.rough-4845 { margin-top: 2rem; }

.fn-hidden-ccd7 { display: none; }
.fn-visible-ccd7 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .sidebar-smooth-8fba {
        padding: 6rem 0 3rem;
    }
    
    .row_dc31 {
        text-align: center;
    }
    
    .carousel-plasma-39fd {
        text-align: center;
    }
    
    .middle_13d0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .highlight_thick_5cf7,
    .heading-hard-89e5,
    .footer-solid-80da,
    .silver_b1ef {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .sidebar-smooth-8fba {
        background: none;
    }
}

/* Providers Section */
.feature-in-0fa0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-2996 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-2996 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input-2996 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-current-33fb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.frame-current-33fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.west_3f2f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.carousel-copper-5e1f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pattern_pressed_d74f {
    list-style: none;
    padding: 0;
}

.pattern_pressed_d74f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pattern_pressed_d74f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.slider_clean_20f7 {
    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);
}

.slider_clean_20f7 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.title_2dd4 {
    padding: var(--section-padding);
}

.complex-c241 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-c241 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_pro_bc23 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.summary_pro_bc23:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.backdrop_cool_3749 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.heading-7062 {
    display: flex;
    flex-direction: column;
}

.list-53eb {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.advanced_eee6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.nav_06f4 {
    color: var(--accent-color);
}

.silver_9131 {
    font-size: 1.25rem;
}

.heading_d278 {
    margin-bottom: 1rem;
}

.heading_d278 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.logo_complex_12bb {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.static-0d25 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.aside-b5c4 {
    text-align: center;
}

.chip_light_6625 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-27b9 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.clean_00f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small_785b {
    margin: 2rem 0;
}

.pagination-c480 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.pagination-c480 .active_938a {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_0abb {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.small_f4b9 {
    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;
}

.small_f4b9:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tall-be8a {
    font-size: 2rem;
}

.accent-in-1331 {
    display: flex;
    flex-direction: column;
}

.article-hovered-1661 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bronze_8ab3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.description_top_5a68 {
    padding: var(--section-padding);
}

.photo_4124 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .photo_4124 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_4124 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_fast_5df5 {
    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);
}

.filter_fast_5df5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter_fast_5df5 .chip_light_6625 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.filter_fast_5df5 .accordion-27b9 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.filter_fast_5df5 .disabled-middle-650f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.south_b592 {
    margin-top: 4rem;
}

.shadow_ae64 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.fast-f0a2 {
    overflow-x: auto;
}

.title-87b0 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.title-87b0 thead {
    background: var(--accent-color);
}

.title-87b0 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.title-87b0 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.title-87b0 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.title-87b0 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.dynamic-54de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-fd94 {
    max-width: 900px;
    margin: 0 auto;
}

.active-18c0 {
    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);
}

.active-18c0:hover {
    border-color: var(--accent-color);
}

.block_674e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.block_674e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.cool_f9be {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.active-18c0.fn-active-ccd7 .cool_f9be {
    transform: rotate(45deg);
}

.chip-stale-fbe4 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.active-18c0.fn-active-ccd7 .chip-stale-fbe4 {
    max-height: 1000px;
}

.chip-stale-fbe4 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.badge-pink-958c {
    padding: var(--section-padding);
}

.caption-bff0 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.card-left-a92b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-8cef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-8cef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip_in_b253 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_5a12 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.grid-yellow-f912 {
    font-size: 2rem;
}

.picture_e979 {
    color: var(--text-white);
    margin: 0;
}

.active_lite_20c8 {
    list-style: none;
    padding: 0;
}

.active_lite_20c8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_lite_20c8 li:last-child {
    border-bottom: none;
}

.element_blue_9260 {
    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);
}

.element_blue_9260 p {
    color: var(--success-color);
    margin: 0;
}

.modal_d94f {
    margin-top: 3rem;
}

.label_4132 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.banner_paper_d908 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .banner_paper_d908 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary-a1a5 {
    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);
}

.icon_b6e6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tertiary-a1a5 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.shadow_north_aafd {
    padding: var(--section-padding);
}

.container-left-8855 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-left-8855 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm_ed7a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.warm_ed7a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.banner-c8f7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.border-2693 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cool-6363 {
    flex: 1;
}

.thumbnail_701f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.link-68b4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.photo_outer_3ddf {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-motion-eacf {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-motion-eacf:last-child {
    border-bottom: none;
}

/* Comparison Section */
.surface_action_baf5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.active_694e {
    padding: var(--section-padding);
}

.grid-5673 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.item-tiny-3c57 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-tiny-3c57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-huge-4134 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_upper_adfb, .table_2d7e, .prev_44f8 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.prev_44f8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 0.75rem;
}

/* Terms Section */
.component-south-475b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-green-e214 {
    margin: 2rem 0;
}

.disabled_dim_d630 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left-6573 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.easy_6335 {
    list-style: none;
    padding: 0;
}

.easy_6335 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;
}

.easy_6335 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.easy_6335 li:last-child {
    border-bottom: none;
}

.tooltip_over_ca80 {
    text-align: center;
    margin-top: 2rem;
}

.border_static_8da5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.photo-7884 {
    padding: var(--section-padding);
}

.solid_211f {
    margin: 2rem 0;
}

.bronze_c20c {
    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) {
    .bronze_c20c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bronze_c20c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paper_957e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.picture_3295 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.bottom-efe6 {
    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;
}

.grid-6ad6 {
    flex: 1;
}

.frame-focused-53f8 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.paragraph-stale-959e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.modal-6072 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.rough_935a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .rough_935a {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.complex_34f1 {
    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);
}

.complex_34f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.complex_34f1 .chip_light_6625 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.complex_34f1 .accordion-27b9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.box_cc69 {
    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);
}

.avatar-rough-5f59 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.avatar-rough-5f59 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.list_center_44d4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .list_center_44d4 {
        grid-template-columns: 1fr 1fr;
    }
}

.column_cdb7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark_a9a7 {
    margin-bottom: 1.5rem;
}

.dark_a9a7 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dark_a9a7 input,
.dark_a9a7 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;
}

.dark_a9a7 input:focus,
.dark_a9a7 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.action-652d {
    width: 100%;
    margin-top: 1rem;
}

.dropdown-036a {
    display: flex;
    align-items: center;
}

.over_f74b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.preview-cold-18db {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.progress_ec86 {
    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;
}

.full_042c {
    color: var(--text-gray);
}

.block-b251 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.form_d7d9 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning-color);
}

.form_d7d9 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.main-large-0252 {
    margin-top: 3rem;
}

.search_upper_219e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.widget_f55d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-a249 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.north-3a6b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.north-3a6b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.next_b19b {
    padding: var(--section-padding);
}

.first-c729 {
    margin: 2rem 0;
}

.warm_c478 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner_yellow_de8f {
    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;
}

.banner_yellow_de8f:hover, .banner_yellow_de8f.fn-active-ccd7 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.white-6672 {
    display: none;
}

.white-6672.fn-active-ccd7 {
    display: block;
}

.east_dc1c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic_3aa2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.in-0c21 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.in-0c21 ul {
    list-style: none;
    padding: 0;
}

.in-0c21 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.in-0c21 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.carousel-e7c4 {
    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 */
.mask-d91c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-brown-9857 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-2ad3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.border-98d4 {
    color: var(--accent-color);
    margin: 0;
}

.photo_db05 {
    display: flex;
    gap: 1.5rem;
}

.status-bright-cb26 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.aside-39f4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.center_1d61 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.center_1d61.notice_ab18 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.center_1d61.shadow_693e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.center_1d61.gallery_mini_2c72 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.full-bcca {
    margin-top: 2rem;
}

.caption_simple_12e0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pattern-bright-4c27 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pattern-bright-4c27 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-9e3a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.backdrop_b604 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-cab8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.link_a17d {
    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 */
.box-fresh-af84 {
    padding: var(--section-padding);
}

.solid-0373 {
    margin: 2rem 0;
}

.nav_1176 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.media-b6aa {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.surface_large_ed1c {
    list-style: none;
    padding: 0;
}

.surface_large_ed1c 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;
}

.surface_large_ed1c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.surface_large_ed1c li:last-child {
    border-bottom: none;
}

.preview-703f {
    margin: 2rem 0;
}

.form-9717 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.frame-9bc2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .frame-9bc2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list_c297 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white_6c01 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.action_1700 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wide_a0d2 {
    margin-top: 2rem;
}

.badge_advanced_1b9a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.filter-complex-e55e {
    list-style: none;
    padding: 0;
}

.photo_light_edfe {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.photo_light_edfe a {
    color: var(--accent-color);
    text-decoration: none;
}

.photo_light_edfe a:hover {
    text-decoration: underline;
}

.frame-silver-9c90 {
    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 */
.container_e81a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_1c0d {
    margin: 2rem 0;
}

.up-8984 {
    margin-bottom: 3rem;
}

.up-8984 .left-6573 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.alert_88b1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.large_2701 {
    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);
}

.large_2701:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.brown_2441 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .brown_2441 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_9680 {
    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 */
.caption_0523 {
    padding: var(--section-padding);
}

.nav_bright_fc9b {
    margin: 2rem 0;
}

.hero_bc42 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.search_huge_1366 {
    overflow-x: auto;
    margin: 2rem 0;
}

.gold_5f9e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.purple-92cb {
    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;
}

.block-ebc4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.header-paper-1ec1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .header-paper-1ec1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_f905 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink_f905 .active_938a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pink_f905 .left_8d35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list-25bb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.north_f9af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-2511 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-2511 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-1822 {
    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;
}

.detail-1822:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.light-865a {
    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);
}

.south-b120 {
    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;
}

.mini_4508 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface_huge_ea3b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.frame-iron-577a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blue-5242 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper-hard-f9a7 {
    color: var(--text-white);
    font-weight: 600;
}

.notification-small-6969 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tertiary-lower-ddc2 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary-lower-ddc2 .block_581c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.preview_6816 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview_6816 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image_wide_bac3 {
    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);
}

.image_wide_bac3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image_wide_bac3 .chip_light_6625 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image_wide_bac3 .accordion-27b9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.article-medium-b561 {
    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);
}

.article-5441 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.article-5441 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.large-f9d0 {
    margin: 2rem 0;
}

.short-4521 {
    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);
}

.short-4521:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.widget_orange_73c0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.slider_e9b3 {
    flex: 1;
}

.section-dark-5fa3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_00f6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.info-bright-a549 {
    margin: 2rem 0;
}

.gas_9e4b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas_9e4b .left_8d35 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.gas_9e4b .hero_589d {
    color: var(--text-gray);
    margin: 0;
}

.steel_1840 {
    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);
}

.steel_1840 .mini-85da {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.list-25bb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.gradient_8a0d {
    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;
}

.secondary-7ebd {
    flex: 1;
}

.menu_e326 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.liquid_96ff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.hard_614d {
    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;
}

.section-e052 {
    flex: 1;
}

.middle_d1a0 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gallery-2789 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.narrow-6ad4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.element_2bcc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hard_cc14 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hard_cc14 .block_581c {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.badge_78b4 {
    margin-top: 2rem;
}

.badge_78b4 .label_4132 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.progress_5ee8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_north_094d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .header_north_094d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_north_094d .aside-b5c4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-west-40a9 {
    margin: 2rem 0;
}

.avatar-stale-7e3c {
    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 */
.action_441d {
    padding: var(--section-padding);
}

.list-f0cc {
    margin-top: 1rem;
}

.hover_bottom_8608 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hover_bottom_8608 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hover_bottom_8608 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.accordion-2693 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-old-da43 {
    margin: 2rem 0;
}

.section-tall-8589 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.plasma-8f5c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.left_5c4e {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.main_8d23 {
    margin: 2rem 0;
}

.old_de51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.old_de51 .left-6573 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link_clean_7f25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link_clean_7f25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.block-bottom-3ead {
    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);
}

.header_middle_ea50 {
    color: var(--text-white);
    font-weight: 600;
}

.search-mini-4d93 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.center-1a8b {
    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);
}

.center-1a8b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.menu_rough_2864 {
    padding: var(--section-padding);
}

.icon_action_3d4c {
    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;
}

.icon_action_3d4c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.upper-6aad {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper-6aad .icon_b6e6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-6aad .module-ad11 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dark_b53e {
    flex: 1;
}

.pro_bf5f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.primary_f6dc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary_f6dc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.primary_f6dc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.module_south_8d93 {
    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);
}

.module_south_8d93 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module_south_8d93 strong {
    color: var(--warning-color);
}

/* Slots Section */
.alert-907b {
    padding: var(--section-padding);
}

.gas_2be8 {
    margin: 2rem 0;
}

/* Table Games Section */
.layout_plasma_ed9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-5ba2 {
    margin: 2rem 0;
}

.shadow-pro-426d {
    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);
}

.shadow-pro-426d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shadow-pro-426d .solid_3e18 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-pro-426d .mask-6a00 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.module_96c6 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.module_96c6 .mini-85da {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.old_4e2c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-6a9a {
    margin: 2rem 0;
}

.thumbnail_mini_ff54 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_solid_69e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-065a {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.video_7f5b {
    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);
}

.video_7f5b:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.video_7f5b.fn-active-ccd7 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_d023 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.small_dd36 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small_dd36 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.box_fast_f5af {
    padding: var(--section-padding);
}

.frame_3fbc {
    margin: 2rem 0;
}

.list_9b45 {
    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);
}

.list_9b45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .list_9b45 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.module-0ad0 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.image_down_5ec3 {
    flex: 1;
}

.lower_9827 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.avatar_stone_b8b5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.active_out_5d99 {
    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;
}

.easy_ec23 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.texture-4236 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cold-fc06 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter_cool_50a2 {
    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;
}

.filter_cool_50a2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.picture_e659 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.steel_49f7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel_49f7 strong {
    color: var(--accent-color);
}

/* New Games Section */
.out-e63d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-7f3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .sort-7f3a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort-7f3a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-580a {
    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;
}

.medium-580a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block_bf06 {
    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;
}

.narrow-854e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.complex_7bb0 {
    font-size: 2rem;
}

.image-2800 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.mask_68ff {
    flex: 1;
}

.yellow_5b4a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.component-center-000f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.advanced-aace {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.easy_805f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background_motion_e451 {
    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;
}

.disabled_fixed_be3f {
    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;
}

.disabled_fixed_be3f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.container_3ee0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-paper-0fe9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lower_aa8b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .lower_aa8b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-current-df0e {
    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);
}

.gallery_7683 {
    color: var(--text-white);
    font-weight: 600;
}

.easy_afee {
    color: var(--accent-color);
    font-weight: 600;
}

.wrapper-e1f5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.wrapper-e1f5 strong {
    color: var(--accent-color);
}

/* Security Section */
.wide-e480 {
    padding: var(--section-padding);
}

/* Benefits Section */
.under-fb51 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.box_solid_46b1 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.outline_36dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current-e5d3 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.image_upper_2958 {
    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) {
    .image_upper_2958 {
        flex-direction: column;
        gap: 1rem;
    }
}

.image_upper_2958:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.image_upper_2958 .hard_614d {
    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;
}

.image_upper_2958 .section-e052 {
    flex: 1;
}

.image_upper_2958 .middle_d1a0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.image_upper_2958 .gallery-2789 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.shade-9a35 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-9a35 .section-stone-8826 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade-9a35 .east-adf3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade-9a35 .east-adf3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.shade-9a35 .east-adf3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.heading-333e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.section_8fef {
    padding: var(--section-padding);
}

.avatar_2f44 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .avatar_2f44 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-clean-53a2 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container-clean-53a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.container-clean-53a2 .basic_054d {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-clean-53a2 .soft-bb7f {
    flex: 1;
}

.container-clean-53a2 .up_38d6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container-clean-53a2 .module-52d2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.filter-a5cc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-a5cc .solid-2c84 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-a5cc .notification-1f5a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.filter-a5cc .notification-1f5a 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);
}

.filter-a5cc .notification-1f5a li:last-child {
    border-bottom: none;
}

.filter-a5cc .notification-1f5a 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;
}

.filter-a5cc .notification-1f5a li strong {
    color: var(--text-white);
}

.header_d4f7 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.header_d4f7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header_d4f7 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.dim_322c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-73fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .text-73fb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column-8509 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.column-8509:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info_bef9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cold_c550 {
    font-size: 2rem;
}

.dark_7a05 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.module_right_28fb {
    flex: 1;
}

.message-glass-50cd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-glass-50cd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.message-glass-50cd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.rough-559e {
    margin-top: 3rem;
}

.nav_1176 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.media-b6aa {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface_large_ed1c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surface_large_ed1c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.surface_large_ed1c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.surface_large_ed1c li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.video_top_bde1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small_9b92 {
    margin: 2rem 0;
}

.dynamic_989e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dynamic_989e .left-6573 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo_focused_c595 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo_focused_c595 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel_prev_4b90 {
    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);
}

.panel_prev_4b90:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.panel_bf00 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.active-e469 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.block-f93b {
    padding: var(--section-padding);
}

.over_5e03 {
    margin: 2rem 0;
}

.disabled-f72d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .disabled-f72d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-f72d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze_f335 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze_f335:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.menu-short-2808 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.popup-ed92 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.input-ffb7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.input-ffb7.tertiary-b138 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.light_9cf8 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.hovered-d133 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.silver-b45a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.icon_412f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow-93e8 {
    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);
}

.shadow-93e8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow-93e8 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.module_aeef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_e1ae {
    margin: 2rem 0;
}

.fluid-086e {
    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) {
    .fluid-086e {
        flex-direction: column;
        gap: 1rem;
    }
}

.fluid-086e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.fluid-086e::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);
}

.easy-4dac {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.steel_0784 {
    flex: 1;
}

.south-54ab {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.thumbnail_static_56d7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_static_56d7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_complex_29c0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-huge-d1c7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.background_8491 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .background_8491 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_dc4c {
    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);
}

.video-fresh-164f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aside_south_41b1 {
    flex: 1;
}

.backdrop_1e57 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.red-6cf0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.picture-stone-4394 {
    margin-top: 2rem;
    text-align: center;
}

.disabled-center-6ca1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.disabled-center-6ca1 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.iron-69c3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron-69c3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_silver_17b2 {
    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);
}

.slider_silver_17b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider_silver_17b2 .popup-238c {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_silver_17b2 .wrapper_top_128a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.slider_silver_17b2 .label_e3bf {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.slider_silver_17b2 .image_bright_ed85 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.focus-smooth-0fab {
    padding: var(--section-padding);
}

.east-b05e .upper-36ae {
    flex: 1;
}

/* Promo Calendar Section */
.complex_69a9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_f0fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_f0fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange_1b33 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_6abe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.panel-tiny-83c0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.row-stale-07d3 {
    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);
}

.east-e2f2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text_green_8917 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.yellow-217d {
    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);
}

.yellow-217d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow-217d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.popup_d75d {
    padding: var(--section-padding);
}

.advanced_c806 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .advanced_c806 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph_simple_0ee6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_simple_75cc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.search_36af {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_36af li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_4f40 {
    margin-top: 3rem;
}

.tag_4f40 .nav_1176 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tag_4f40 .media-b6aa {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag_4f40 .surface_large_ed1c {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tag_4f40 .surface_large_ed1c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tag_4f40 .surface_large_ed1c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tag_4f40 .surface_large_ed1c li strong {
    color: var(--warning-color);
}

.wrapper_full_03a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper_full_03a7 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.lower_7e59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-iron-07d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-iron-07d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_fresh_3564 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_fresh_3564 .left-6573 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.block-4c6f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-small-a2fb {
    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);
}

.message-small-a2fb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.current-26f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_bottom_d27b {
    flex: 1;
}

.fluid_4ee2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.carousel-f4b7 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.banner-81cf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.soft-e8ff {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fresh-1eed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .fresh-1eed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-basic-2a15 {
    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);
}

.gradient-basic-2a15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview_8c12 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel-short-051f {
    color: var(--text-gray);
    font-size: 1rem;
}

.avatar-rough-5f59 {
    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);
}

.green-83f8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.green-83f8 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.tooltip_d04a { 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; }
.slider-6355, .chip_bottom_0829 { max-width:100%; height:auto; }

.hot_c62a, .frame_6ced, .content_2c08 { white-space:normal; }

.row_dc31,
.carousel-plasma-39fd,
.preview-north-c1bf,
.iron-69c3,
.info-bright-a549,
.new-d89a {
  flex-wrap:wrap;
}

[class*="grid"],
.fresh-1eed,
.disabled-f72d,
.bright_d214 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.sidebar-smooth-8fba img,
.carousel-plasma-39fd img,
.info_7470 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.smooth-6545, .notice-8012,
.slider-5822, .red_3ed2 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.fast-f0a2 { width:100%; overflow-x:auto; }
.fast-f0a2 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.input-2996 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .input-2996 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.frame-current-33fb {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.photo_4124,
.banner-stale-0406,
.feature-23ad,
.pressed_780f,
.rough_935a,
.fresh-1eed,
.disabled-f72d,
.bright_d214,
.selected_09a3,
.frame_3fbc,
.input-2996 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .photo_4124,
  .banner-stale-0406,
  .feature-23ad,
  .pressed_780f,
  .rough_935a,
  .fresh-1eed,
  .disabled-f72d,
  .bright_d214,
  .selected_09a3,
  .frame_3fbc,
  .input-2996 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.filter_fast_5df5,
.complex_34f1,
.gradient-basic-2a15,
.south-d0fb,
.bronze_f335,
.thumbnail_66e2,
.list_9b45,
.frame-current-33fb {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.old_855e,
.container_ba39,
.item_last_3516 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.old_855e > *,
.container_ba39 > *,
.item_last_3516 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 0959 */
.phantom-card-m9 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
