/* {$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;
}

.carousel-49d7 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.notification_6999 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .notification_6999 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .notification_6999 {
        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 */
.disabled-under-7018 {
    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);
}

.chip-e576 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .chip-e576 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .main-72d2 {
        grid-column: 1;
    }
    
    .carousel-cc42 {
        grid-column: 2;
    }
    
    .mask-4883 {
        grid-column: 3;
    }
}

.main-72d2 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.main-72d2:hover img {
    transform: scale(1.05);
}

/* Navigation */
.feature-short-3fa8 {
    display: none;
}

@media (min-width: 1024px) {
    .feature-short-3fa8 {
        display: block;
    }
}

/* Grouped Navigation */
.outline_c399 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.slow_af06 {
    position: relative;
}

.overlay-1b42 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.slow_af06 .pattern-9c27 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.pattern-9c27 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.small-c750 {
    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;
}

.small-c750:hover,
.small-c750.fn-active-87f9 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.static-7e09 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .static-7e09 {
        display: flex;
    }
}

/* Mobile Register Button */
.carousel-cc42 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel-cc42 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.banner-wood-41e9 {
    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;
}

.banner-wood-41e9::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 */
.mask-4883 {
    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) {
    .mask-4883 {
        display: none;
    }
}

.mask-4883 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.mask-4883.fn-active-87f9 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mask-4883.fn-active-87f9 span:nth-child(2) {
    opacity: 0;
}

.mask-4883.fn-active-87f9 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.button_590a {
    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;
}

.button_590a.fn-active-87f9 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.component-south-d69a {
    overflow: hidden;
}

.info_12f6 {
    list-style: none;
    padding: 0.75rem 0;
}

.accordion_over_8751 {
    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;
}

.accordion_over_8751:hover,
.accordion_over_8751.fn-active-87f9 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.accordion_over_8751.status-brown-56cd {
    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;
}

.accordion_over_8751.status-brown-56cd::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 */
.text_699f {
    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;
}

.west_1abe {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.west_1abe:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.tabs_first_ee99 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.tabs_first_ee99:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.paragraph-9bb0 {
    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;
}

.paragraph-9bb0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.prev_5969 {
    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;
}

.card_3ff9 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.card_3ff9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.old_c9d3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.old_c9d3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav_98ab {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.nav_98ab:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.sort_dynamic_cf31 {
    font-size: 1em;
    font-weight: 700;
}

.column-0513 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.over_8014 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.over_8014::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;
}

.background_old_d69e {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .background_old_d69e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.notice-purple-96ee {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sort-left-f555 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.search_4c85 {
    margin-bottom: 2rem;
}

.hidden_next_3f0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hidden_next_3f0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_45e0 {
    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);
}

.action_a1ee {
    font-size: 1.5rem;
}

.top_2075 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.shade-static-0f6c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.disabled_fixed_2fe1 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.disabled_fixed_2fe1:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.current-2d38 {
    text-align: center;
    margin-bottom: 3rem;
}

.caption_75a6 {
    margin-bottom: 1rem;
}

.layout-3a7b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.column-center-f97e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .column-center-f97e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .column-center-f97e.background-ea7c {
        direction: rtl;
    }
    
    .column-center-f97e.background-ea7c > * {
        direction: ltr;
    }
}

.gallery-de2d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.gallery-de2d:first-child {
    margin-top: 0;
}

.static-7ccf {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.active_bd18 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.active_bd18:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.backdrop-rough-de28 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-rough-de28 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight_b5c7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_dynamic_d370 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.widget-pressed-6946 {
    list-style: none;
}

.widget-pressed-6946 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-pressed-6946 li:last-child {
    border-bottom: none;
}

/* Games Features */
.item-focused-015d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.progress_bright_c1b8 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.over-e975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-top-9219 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.green-e3a3 {
    margin: 2rem 0;
}

.avatar-gas-bb35 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hard_4b3c {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.primary-8ffe {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.nav-8440 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.paragraph-bf87 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-bf87 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dark-9616 {
    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);
}

.dark-9616:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.message_8629 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pagination_up_9912 {
    font-size: 1.5rem;
}

.section-ef9e {
    color: var(--accent-color);
    margin: 0;
}

.simple_9898 {
    list-style: none;
}

.simple_9898 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.simple_9898 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.footer-53c4 {
    margin: 2rem 0;
}

.rough_770b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tabs_0e83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tabs_0e83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-blue-9274 {
    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);
}

.liquid_5763 {
    font-size: 1.25rem;
}

.gradient-e844 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.action-539f,
.under_dcb5 {
    text-align: center;
    margin: 2rem 0;
}

.first-d82e,
.active-basic-4e92 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.paper-615a {
    margin: 2rem 0;
    text-align: center;
}

.media_6d6d {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media_6d6d::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;
}

.avatar_aa20 {
    position: relative;
    z-index: 1;
}

.shadow-hard-fdbd {
    margin-bottom: 1rem;
}

.dropdown-725e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.column_hard_53ad {
    margin-bottom: 3rem;
}

.tertiary_iron_ac1a {
    margin-top: 3rem;
}

.steel_69cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steel_69cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_69cd .button_45e0 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed-3d0b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_light_8e8e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.background-cold-df11 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.sort_1ed3 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .sort_1ed3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_1ed3 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tertiary_01a8 {
    margin-bottom: 1rem;
}

.purple-532b img {
    margin-bottom: 1rem;
}

.medium-07b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_52d5 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.alert-fresh-e9fa {
    list-style: none;
}

.alert-fresh-e9fa li {
    margin-bottom: 0.5rem;
}

.alert-fresh-e9fa a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.alert-fresh-e9fa a:hover {
    color: var(--accent-color);
}

.summary-d0e6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.large_444a {
    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);
}

.large_444a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.banner-7994 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.banner-7994 p {
    margin-bottom: 0.25rem;
}

.frame-down-6666 {
    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) {
    .frame-down-6666 {
        flex-direction: row;
    }
}

.sort-medium-5f30 {
    text-align: center;
}

@media (min-width: 768px) {
    .sort-medium-5f30 {
        text-align: left;
    }
}

.sort-medium-5f30 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.row_short_af34 {
    font-size: 0.75rem !important;
}

.east-77ed {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.plasma_eb03 {
    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);
    }
}

.item-f751 {
    animation: fadeInUp 0.6s ease-out;
}

.container_last_fda1 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.pattern_0f46 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_0f46 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.form-2fe6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-2fe6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_79cb {
    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);
}

.hot_79cb .over-e975 {
    font-size: 1.25rem;
}

.hot_79cb .dynamic-968c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.blue_2592 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .blue_2592 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-7e3a {
    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);
}

.content-7e3a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden-cold-3d82 {
    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);
}

.module-3f42 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-e58f {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper_6a49 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_c2d0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort_c2d0 .aside-top-9219 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_c2d0 .new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_5017 {
    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);
}

.hero-liquid-8ac1 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.hero-liquid-8ac1 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hero-liquid-8ac1 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.background_bf28 {
    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);
}

.shadow_cool_6688 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter_9aab {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter_9aab label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.filter_9aab 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);
}

.filter_9aab input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.filter_9aab input::placeholder {
    color: var(--text-muted);
}

.main_mini_26b6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight_effd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.highlight_effd input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.mask-6735 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.mask-6735:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tabs_0e83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_0e83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-blue-9274 {
    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);
}

.search-blue-9274 .liquid_5763 {
    font-size: 1.25rem;
}

.search-blue-9274 .gradient-e844 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.red_0980 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current_49b1 {
    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);
}

.current_49b1 .over-e975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.current_49b1 .aside-top-9219 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.current_49b1 .new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-over-9d6e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_ff04 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.cold_ff04 .wrapper_32f5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold_ff04 .thumbnail-upper-f3e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-9adc {
    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);
}

.orange_f4b0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .orange_f4b0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green_b84d {
    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);
}

.green_b84d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_98db {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.summary_cb8f {
    flex: 1;
}

.stale_61cf {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.avatar-current-5b49 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.texture_wide_ee23 {
    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);
}

.texture_wide_ee23:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.texture_665f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_665f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_large_7e8c {
    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);
}

.disabled_large_7e8c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hot-41a2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue-f004 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.action-acc3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary_f3f1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focus_4690 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_471f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade-solid-59b1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-solid-59b1 .article_clean_480d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade-solid-59b1 .info-29da {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-74b1 {
    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);
}

.white_aa84 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_849e {
    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);
}

.outline_849e .over-e975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_849e .aside-top-9219 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_849e .new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-active-021a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-active-021a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.white-3508 {
    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);
}

.white-3508:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.summary_solid_f3d5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_solid_f3d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_837d {
    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);
}

.container_837d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_soft_fe7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_8045 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hard_4b3c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.yellow_28b3 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.hard-af8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-b792 {
    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);
}

.form-b792:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner_94f3 {
    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);
}

.grid-narrow-649c {
    flex: 1;
}

.hover_bd37 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.button_a47c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.highlight-8c09 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-92af {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_pressed_972e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_pressed_972e .wrapper_32f5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_pressed_972e .thumbnail-upper-f3e3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under_dcb5 {
    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);
}

.breadcrumb_tall_36ff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_tall_36ff {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.summary_short_fbf7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_short_fbf7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-e226 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new-e226:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright_84e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_purple_f3bb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shadow_soft_c83b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo-static-8011 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.yellow-c39f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-d4d5 {
    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);
}

.container_de46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.east_0ce4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.center_a0c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_aa84 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_849e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outline_849e .aside-top-9219 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline_849e .new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-7ef8 {
    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);
}

.breadcrumb_solid_e356 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_solid_e356 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_solid_e356 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_1cbb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer_1cbb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-dd96 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.label_1820 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shade_center_bdc9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.backdrop_392c {
    padding: 1.5rem;
}

.paragraph-9ab2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_aaed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_aaed 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;
}

.background_aaed li:last-child {
    border-bottom: none;
}

.background_aaed li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.notification_12a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_12a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_5450 {
    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);
}

.card_5450:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_f78c {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading-in-7a87 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form_e992 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.info_78b8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hovered_60f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_63a0 {
    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);
}

.tag_brown_13f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple_a31f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_center_8d6b {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-hot-8d8e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar_6749 {
    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);
}

.box_tall_aaef {
    text-align: center;
}

.icon-outer-121b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_inner_42d6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.column-outer-233d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-fast-ab15 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-fast-ab15 .aside-top-9219 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-fast-ab15 .new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-last-b096 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column-last-b096 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-last-b096 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_next_e461 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel_next_e461:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-5d7f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.frame_c564 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.aside-top-9219 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.purple_9ac8 {
    padding: 1.5rem;
}

.new-0004 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paragraph_6aef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph_6aef 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;
}

.paragraph_6aef li:last-child {
    border-bottom: none;
}

.paragraph_6aef li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.accordion-over-f954 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.icon-glass-c50a {
    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);
}

.icon-glass-c50a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-light-e92d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main_e102 {
    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);
}

.hidden-cold-3d82 {
    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;
}

.module-3f42 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column-e58f {
    color: var(--text-gray);
    line-height: 1.6;
}

.row_4774 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood_dee6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.small_8d00 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-fddc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.silver-50fd {
    display: flex;
    gap: 1rem;
}

.silver-50fd .breadcrumb_c4da {
    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;
}

.logo-0f38 {
    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);
}

.widget_c29a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.fast_a65c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fast_a65c 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;
}

.fast_a65c li:last-child {
    border-bottom: none;
}

.fast_a65c li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.video-225e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-225e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-225e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-d122 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.liquid-d122:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough_16a0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.border-bcc4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_clean_480d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.summary-liquid-df06 {
    font-size: 1rem;
}

.label_ba31 {
    padding: 1.5rem;
}

.info-29da {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.fluid-adca {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.fluid-adca .box_tall_aaef {
    text-align: center;
}

.fluid-adca .card_inner_42d6 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.fluid-adca .frame-yellow-4ef3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.lite_3a2f {
    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);
}

.lite_3a2f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.motion-2d8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-2d8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_1f86 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.upper_1f86:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-7cd4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-bb34 {
    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);
}

.list-d2dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel_advanced_2edb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module_94d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-de95 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.popup-b17f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_8398 {
    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);
}

.orange_8560 {
    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;
}

.orange_8560.copper-52f9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.orange_8560.frame-f16d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.orange_8560.fresh_4295 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.orange_8560.button_9f0f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.orange_8560.brown_eedf {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.summary-hot-4b05 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_huge_de73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-out-a981 {
    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);
}

.primary_wide_d99f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.card-over-9d6e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-over-9d6e 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;
}

.card-over-9d6e li:last-child {
    border-bottom: none;
}

.card-over-9d6e li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.gas-c735 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gas-c735 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gas-c735 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_3e38 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.middle_3e38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle_3e38.yellow_a2bd {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .middle_3e38.yellow_a2bd {
        grid-column: span 3;
    }
}

.avatar_large_8732 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.middle_3e38.yellow_a2bd .avatar_large_8732 {
    background: rgba(6, 182, 212, 0.1);
}

.article_blue_4c3e {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stale_05b5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.middle_3e38.yellow_a2bd .stale_05b5 {
    color: var(--info-color);
}

.prev_2e2e {
    padding: 1.5rem;
    text-align: center;
}

.menu_outer_5817 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.middle_3e38.yellow_a2bd .menu_outer_5817 {
    color: var(--info-color);
}

.frame-warm-46ff {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sidebar-clean-5c33 {
    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 */
.logo-gold-75c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-gold-75c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_next_f424 {
    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);
}

.gallery_next_f424:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-west-cbca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current_49b1 {
    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);
}

.liquid_5763 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-c474 {
    flex: 1;
}

.rough_770b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.middle-c6af {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_current_9b81 {
    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);
}

.west-4261 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.widget-a5c8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.plasma_eb03 {
    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);
}

.liquid_c1d5 {
  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);
}

.liquid_c1d5 .box_tall_aaef {
    text-align: center;
}

.liquid_c1d5 .icon-outer-121b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.liquid_c1d5 .card_inner_42d6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph-clean-f5ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-7002 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-da11 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-3d85 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-2a8a {
    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);
}

.tag-f513 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-258b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-small-8eeb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag-small-8eeb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-small-8eeb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-complex-6f11 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tooltip-complex-6f11:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_8904 {
    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);
}

.advanced-8f3c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification_0093 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.stone-c60d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stone-c60d.wide_794f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.stone-c60d.easy-1316 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.stone-c60d.notice_412e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gas_fe5d {
    padding: 1.5rem;
    text-align: center;
}

.sort_3cee {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.last_a261 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.last_a261 .frame-white-0953 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.text-pressed-36f5 {
    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);
}

.text-pressed-36f5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.label-wide-0a91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hovered_2daa {
    text-align: center;
}

.hovered_2daa .icon-outer-121b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hovered_2daa .card_inner_42d6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.focused_01fb { text-align: center; }
.tag-27c7 { text-align: left; }
.in_e990 { text-align: right; }

.image-fresh-6988 { margin-bottom: 0; }
.thumbnail_4c49 { margin-bottom: 0.5rem; }
.backdrop-5855 { margin-bottom: 1rem; }
.panel-0292 { margin-bottom: 1.5rem; }
.outline-a824 { margin-bottom: 2rem; }

.aside_last_3646 { margin-top: 0; }
.status-a454 { margin-top: 0.5rem; }
.short-ecf2 { margin-top: 1rem; }
.form_2ac2 { margin-top: 1.5rem; }
.lower-851f { margin-top: 2rem; }

.fn-hidden-87f9 { display: none; }
.fn-visible-87f9 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .over_8014 {
        padding: 6rem 0 3rem;
    }
    
    .background_old_d69e {
        text-align: center;
    }
    
    .column-center-f97e {
        text-align: center;
    }
    
    .hidden_next_3f0c {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .disabled-under-7018,
    .button_590a,
    .media_6d6d,
    .background-cold-df11 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .over_8014 {
        background: none;
    }
}

/* Providers Section */
.middle-fd77 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-action-aa34 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-action-aa34 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .background-action-aa34 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_thick_4af2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.aside_thick_4af2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dark-06f9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.border_first_e1af {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.link-3cba {
    list-style: none;
    padding: 0;
}

.link-3cba li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.link-3cba li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.list-old-b81d {
    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);
}

.list-old-b81d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.dropdown-paper-7b50 {
    padding: var(--section-padding);
}

.sort-8450 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-8450 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_4c7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion_4c7d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery_b048 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.light-81d4 {
    display: flex;
    flex-direction: column;
}

.cold-0c2f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.cold_e275 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.smooth_6561 {
    color: var(--accent-color);
}

.active-3cf8 {
    font-size: 1.25rem;
}

.popup-cb5b {
    margin-bottom: 1rem;
}

.popup-cb5b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.highlight_e3b8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.banner-a87f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.box_tall_aaef {
    text-align: center;
}

.icon-outer-121b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_inner_42d6 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.block-wood-f8f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-053a {
    margin: 2rem 0;
}

.overlay-medium-0b0a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.overlay-medium-0b0a .over-e975 {
    font-size: 2rem;
    flex-shrink: 0;
}

.info_left_f1b5 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.medium-b376 {
    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;
}

.medium-b376:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active_easy_81ff {
    font-size: 2rem;
}

.pressed_db94 {
    display: flex;
    flex-direction: column;
}

.picture-0d02 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.message-c526 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.old-d9df {
    padding: var(--section-padding);
}

.popup_269c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .popup_269c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup_269c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-bd82 {
    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);
}

.sort-bd82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort-bd82 .icon-outer-121b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sort-bd82 .card_inner_42d6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.sort-bd82 .sort-dirty-153d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.caption-5f69 {
    margin-top: 4rem;
}

.iron-ba42 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.button_696e {
    overflow-x: auto;
}

.orange_1749 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.orange_1749 thead {
    background: var(--accent-color);
}

.orange_1749 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.orange_1749 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.orange_1749 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.orange_1749 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.image_lite_efeb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-last-6523 {
    max-width: 900px;
    margin: 0 auto;
}

.section-9d6a {
    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);
}

.section-9d6a:hover {
    border-color: var(--accent-color);
}

.dark_f9e1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.dark_f9e1 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.thick-4f33 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.section-9d6a.fn-active-87f9 .thick-4f33 {
    transform: rotate(45deg);
}

.avatar_5b46 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.section-9d6a.fn-active-87f9 .avatar_5b46 {
    max-height: 1000px;
}

.avatar_5b46 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.hero-basic-d60c {
    padding: var(--section-padding);
}

.hero-liquid-8ac1 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.section-stale-0874 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.last_adbf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_adbf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.prev-e35c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_defe {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lower_1368 {
    font-size: 2rem;
}

.summary-d020 {
    color: var(--text-white);
    margin: 0;
}

.outline_huge_9d12 {
    list-style: none;
    padding: 0;
}

.outline_huge_9d12 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline_huge_9d12 li:last-child {
    border-bottom: none;
}

.input-bronze-5c75 {
    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);
}

.input-bronze-5c75 p {
    color: var(--success-color);
    margin: 0;
}

.picture_71c7 {
    margin-top: 3rem;
}

.widget_c29a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.notice_blue_8d45 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notice_blue_8d45 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.smooth-7abd {
    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);
}

.upper_0d04 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.smooth-7abd p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.avatar_bcf9 {
    padding: var(--section-padding);
}

.prev_d3b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev_d3b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-31d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content-31d4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.widget-glass-6f4e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fixed-5fce {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shade_f525 {
    flex: 1;
}

.media-first-d429 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.full-701e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.image_08bf {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_3141 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.white_3141:last-child {
    border-bottom: none;
}

/* Comparison Section */
.status-focused-1b64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.cold-cc4c {
    padding: var(--section-padding);
}

.gradient-bronze-15d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.photo_lite_5a39 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_lite_5a39 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_47b9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up_b4b3, .wrapper-dc86, .east-e4af {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.east-e4af {
    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 */
.picture_brown_9ba6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_light_03f5 {
    margin: 2rem 0;
}

.hot-b77b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current_cf66 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.aside_upper_f818 {
    list-style: none;
    padding: 0;
}

.aside_upper_f818 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;
}

.aside_upper_f818 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.aside_upper_f818 li:last-child {
    border-bottom: none;
}

.card_up_7772 {
    text-align: center;
    margin-top: 2rem;
}

.header-ec71 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.surface-3487 {
    padding: var(--section-padding);
}

.large_17a5 {
    margin: 2rem 0;
}

.grid_322d {
    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) {
    .grid_322d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.grid_322d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.logo_5ae0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.wood_6098 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.panel-378e {
    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;
}

.media_461a {
    flex: 1;
}

.nav_dark_b35e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.caption_stale_3958 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.caption-narrow-34a0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.frame_81d6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .frame_81d6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sidebar-cold-59ee {
    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);
}

.sidebar-cold-59ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sidebar-cold-59ee .icon-outer-121b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar-cold-59ee .card_inner_42d6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tall_318d {
    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);
}

.info-lite-969c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.info-lite-969c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.background_e63d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .background_e63d {
        grid-template-columns: 1fr 1fr;
    }
}

.hover_af00 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-bdf6 {
    margin-bottom: 1.5rem;
}

.overlay-bdf6 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay-bdf6 input,
.overlay-bdf6 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;
}

.overlay-bdf6 input:focus,
.overlay-bdf6 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.full_ac36 {
    width: 100%;
    margin-top: 1rem;
}

.button-788c {
    display: flex;
    align-items: center;
}

.first-f997 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb_cool_8374 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.slow_1cc6 {
    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;
}

.texture-mini-1ba5 {
    color: var(--text-gray);
}

.south-b000 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.menu_motion_1fdf {
    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);
}

.menu_motion_1fdf p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.over-821e {
    margin-top: 3rem;
}

.silver-0ef7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.preview_huge_5fbe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_46f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.video-9ab2 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-9ab2:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.rough-9330 {
    padding: var(--section-padding);
}

.box-hard-0625 {
    margin: 2rem 0;
}

.mask-motion-92e8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tall_f496 {
    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;
}

.tall_f496:hover, .tall_f496.fn-active-87f9 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.glass_1c3c {
    display: none;
}

.glass_1c3c.fn-active-87f9 {
    display: block;
}

.dirty-c61e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal_easy_82bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.panel_gas_a664 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.panel_gas_a664 ul {
    list-style: none;
    padding: 0;
}

.panel_gas_a664 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.panel_gas_a664 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tooltip_warm_b6bb {
    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 */
.frame_purple_a5a9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-54ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-6089 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.backdrop-slow-b62e {
    color: var(--accent-color);
    margin: 0;
}

.badge-5fff {
    display: flex;
    gap: 1.5rem;
}

.cool-9840 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gold-613e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.image-cool-b35c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.image-cool-b35c.up-cf58 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.image-cool-b35c.card-paper-20ff {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.image-cool-b35c.search-red-e5f6 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cool-2fad {
    margin-top: 2rem;
}

.widget-smooth-4697 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bright_2d5e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .bright_2d5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_a344 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.medium_f6d8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notification_8b96 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.tertiary_west_6d12 {
    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 */
.label-2737 {
    padding: var(--section-padding);
}

.active-1e0d {
    margin: 2rem 0;
}

.progress_current_1e59 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.hidden-pink-ae7e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.light-9020 {
    list-style: none;
    padding: 0;
}

.light-9020 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;
}

.light-9020 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.light-9020 li:last-child {
    border-bottom: none;
}

.layout_dbbe {
    margin: 2rem 0;
}

.logo_dafa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture_light_bfee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .texture_light_bfee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout_0247 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold_a851 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_solid_1f9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.chip-pink-ec3b {
    margin-top: 2rem;
}

.stale_61cf {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.status-left-e79b {
    list-style: none;
    padding: 0;
}

.message-3345 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.message-3345 a {
    color: var(--accent-color);
    text-decoration: none;
}

.message-3345 a:hover {
    text-decoration: underline;
}

.alert_64d9 {
    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 */
.media_880f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_e995 {
    margin: 2rem 0;
}

.component_9198 {
    margin-bottom: 3rem;
}

.component_9198 .current_cf66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.table-c0ca {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pattern-in-a7dc {
    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);
}

.pattern-in-a7dc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.last-a030 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .last-a030 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-7112 {
    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 */
.surface-west-822c {
    padding: var(--section-padding);
}

.gallery_8643 {
    margin: 2rem 0;
}

.message_cold_5a1b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.upper_d977 {
    overflow-x: auto;
    margin: 2rem 0;
}

.pink-c327 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.input_9455 {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-6260 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.card-322e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .card-322e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-last-2d4c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-last-2d4c .over-e975 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.menu-last-2d4c .aside-top-9219 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active_hard_fcbc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.status_orange_1269 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_upper_8702 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_upper_8702 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-5b01 {
    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;
}

.pressed-5b01:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dirty_1952 {
    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);
}

.dynamic-30c7 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.box-prev-b77e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.panel-outer-03ed {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.badge_6b3a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.selected_e907 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel_soft_c582 {
    color: var(--text-white);
    font-weight: 600;
}

.module-b9d3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.carousel-140a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-140a .breadcrumb_c4da {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.small_af0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small_af0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-full-d842 {
    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);
}

.section-full-d842:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.section-full-d842 .icon-outer-121b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-full-d842 .card_inner_42d6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.old_dbd4 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-yellow-d256 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-yellow-d256 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.yellow-c39f {
    margin: 2rem 0;
}

.dropdown-d4d5 {
    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);
}

.dropdown-d4d5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.container_de46 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.column_short_6238 {
    flex: 1;
}

.east_0ce4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.center_a0c2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.white_aa84 {
    margin: 2rem 0;
}

.outline_849e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_849e .aside-top-9219 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outline_849e .new-0004 {
    color: var(--text-gray);
    margin: 0;
}

.sidebar-7ef8 {
    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);
}

.sidebar-7ef8 .first-d82e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.active_hard_fcbc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.inner_94f3 {
    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;
}

.grid-narrow-649c {
    flex: 1;
}

.button_a47c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.highlight-8c09 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.hidden-cold-3d82 {
    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;
}

.message_2f70 {
    flex: 1;
}

.module-3f42 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.column-e58f {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.small_8d00 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.photo-fddc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.silver-50fd {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.silver-50fd .breadcrumb_c4da {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.logo-0f38 {
    margin-top: 2rem;
}

.logo-0f38 .widget_c29a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.rough-302d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_6749 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .avatar_6749 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_6749 .box_tall_aaef {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-outer-233d {
    margin: 2rem 0;
}

.video-fast-ab15 {
    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 */
.south-00ce {
    padding: var(--section-padding);
}

.purple_9ac8 {
    margin-top: 1rem;
}

.paragraph_6aef {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.paragraph_6aef li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.paragraph_6aef li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.stone_ca71 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.medium-1809 {
    margin: 2rem 0;
}

.primary-0a51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.active-iron-4e7c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message_plasma_7ef5 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.hover_hot_9b5d {
    margin: 2rem 0;
}

.item-pro-e046 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.item-pro-e046 .current_cf66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.widget_glass_cbb2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .widget_glass_cbb2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip_short_3f33 {
    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);
}

.content-1a39 {
    color: var(--text-white);
    font-weight: 600;
}

.notice-yellow-7e10 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.filter-6f86 {
    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);
}

.filter-6f86 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.message-pro-1b8b {
    padding: var(--section-padding);
}

.badge_a4a0 {
    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;
}

.badge_a4a0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.plasma-f4b3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plasma-f4b3 .upper_0d04 {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma-f4b3 .detail_lower_2ba7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_c66f {
    flex: 1;
}

.link-beee {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.label_south_582d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.label_south_582d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.label_south_582d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.component_ef70 {
    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);
}

.component_ef70 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.component_ef70 strong {
    color: var(--warning-color);
}

/* Slots Section */
.badge-warm-e272 {
    padding: var(--section-padding);
}

.focus_4690 {
    margin: 2rem 0;
}

/* Table Games Section */
.fluid_8428 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_471f {
    margin: 2rem 0;
}

.shade-solid-59b1 {
    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);
}

.shade-solid-59b1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-solid-59b1 .article_clean_480d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade-solid-59b1 .info-29da {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus-74b1 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.focus-74b1 .first-d82e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.detail_soft_a464 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh_4281 {
    margin: 2rem 0;
}

.feature_hard_56b2 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_a82a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_2413 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cold-e8bd {
    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);
}

.cold-e8bd:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.cold-e8bd.fn-active-87f9 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-602c {
    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);
}

.media_6b6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media_6b6b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.element_steel_7316 {
    padding: var(--section-padding);
}

.highlight_rough_61f0 {
    margin: 2rem 0;
}

.large_7310 {
    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);
}

.large_7310:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .large_7310 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.accent-bronze-2fb6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.south-8589 {
    flex: 1;
}

.accordion_active_d368 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.easy-01f3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.column_yellow_e8f8 {
    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;
}

.detail-north-ece0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.detail_small_a99c {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.orange_9fb2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wide-770f {
    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;
}

.wide-770f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.text-gold-d450 {
    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);
}

.first-4652 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.first-4652 strong {
    color: var(--accent-color);
}

/* New Games Section */
.pink-7b65 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-dirty-2589 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .caption-dirty-2589 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-dirty-2589 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right_0508 {
    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;
}

.right_0508:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element-small-95c1 {
    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;
}

.new-5838 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.container-hovered-939a {
    font-size: 2rem;
}

.hidden-solid-33cc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.progress_415b {
    flex: 1;
}

.gas-697e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.clean_18bd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge_88df {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cool_eda0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.message-center-1a18 {
    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;
}

.detail_5f02 {
    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;
}

.detail_5f02:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero_simple_add9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_last_eef2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb_1563 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .breadcrumb_1563 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass_50a1 {
    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);
}

.short_0403 {
    color: var(--text-white);
    font-weight: 600;
}

.title_bc20 {
    color: var(--accent-color);
    font-weight: 600;
}

.focused-fdbc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.focused-fdbc strong {
    color: var(--accent-color);
}

/* Security Section */
.small-23b6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.wide-8cac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.hover_e97b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.progress_stone_9645 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new_c590 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.video-brown-9c9c {
    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) {
    .video-brown-9c9c {
        flex-direction: column;
        gap: 1rem;
    }
}

.video-brown-9c9c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.video-brown-9c9c .hidden-cold-3d82 {
    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;
}

.video-brown-9c9c .message_2f70 {
    flex: 1;
}

.video-brown-9c9c .module-3f42 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.video-brown-9c9c .column-e58f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.aside_thick_7362 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_thick_7362 .rough_770b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_thick_7362 .red_0980 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_thick_7362 .red_0980 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.aside_thick_7362 .red_0980 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.breadcrumb-hard-c8cc {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.white_df2d {
    padding: var(--section-padding);
}

.left_fb52 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .left_fb52 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_huge_47d2 {
    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);
}

.widget_huge_47d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.widget_huge_47d2 .blue-b851 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_huge_47d2 .summary-dark-050c {
    flex: 1;
}

.widget_huge_47d2 .wrapper_32f5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget_huge_47d2 .slow-57b9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.media-silver-59f3 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-silver-59f3 .banner-b1f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-silver-59f3 .slow_3a16 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.media-silver-59f3 .slow_3a16 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);
}

.media-silver-59f3 .slow_3a16 li:last-child {
    border-bottom: none;
}

.media-silver-59f3 .slow_3a16 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;
}

.media-silver-59f3 .slow_3a16 li strong {
    color: var(--text-white);
}

.module_a762 {
    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_a762 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module_a762 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.caption-large-555e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-gold-c0ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input-gold-c0ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_west_3172 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary_west_3172:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.middle-3ea1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-e033 {
    font-size: 2rem;
}

.icon-down-d9e8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.label_5285 {
    flex: 1;
}

.shade_46a3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade_46a3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.shade_46a3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fast-e04a {
    margin-top: 3rem;
}

.progress_current_1e59 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hidden-pink-ae7e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.light-9020 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light-9020 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.light-9020 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.light-9020 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.bronze-915b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_2786 {
    margin: 2rem 0;
}

.action-340a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.action-340a .current_cf66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prev-dca6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .prev-dca6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature_right_8ba2 {
    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);
}

.feature_right_8ba2:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.new-96b5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.soft-0325 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.status_upper_415e {
    padding: var(--section-padding);
}

.card_complex_80eb {
    margin: 2rem 0;
}

.detail-black-f0d0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .detail-black-f0d0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-black-f0d0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium-751d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.medium-751d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-ac7f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.simple-cc7f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.glass-8ef1 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.glass-8ef1.focus-d24c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.shadow_4fc1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.banner_dynamic_f4d3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.gradient_4c46 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module-dirty-bad5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.east_0dab {
    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);
}

.east_0dab p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.east_0dab strong {
    color: var(--accent-color);
}

/* Update Log Section */
.middle_2799 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-d6ea {
    margin: 2rem 0;
}

.link-70a2 {
    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) {
    .link-70a2 {
        flex-direction: column;
        gap: 1rem;
    }
}

.link-70a2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link-70a2::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);
}

.tall_76f1 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.badge-steel-44cc {
    flex: 1;
}

.button_blue_8134 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.accordion-middle-ce19 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-middle-ce19 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.card_mini_6773 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-8db5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon-1115 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .icon-1115 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed-1537 {
    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);
}

.pink_1137 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lower_3494 {
    flex: 1;
}

.list-05be {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.warm_016f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary-bright-0eea {
    margin-top: 2rem;
    text-align: center;
}

.rough_c495 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.rough_c495 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.motion-2d8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-2d8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper_1f86 {
    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);
}

.upper_1f86:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.upper_1f86 .heading_f78c {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper_1f86 .heading-in-7a87 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.upper_1f86 .form_e992 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.upper_1f86 .info_78b8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.video_a2b9 {
    padding: var(--section-padding);
}

.dynamic-bb34 .brown_b5d8 {
    flex: 1;
}

/* Promo Calendar Section */
.list-gold-3767 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-0b20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-0b20 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_fast_89e6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-fixed-fcd9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.border_tiny_e763 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copper-338a {
    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);
}

.item-focused-100b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.lower_0855 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.dropdown_bottom_133c {
    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);
}

.dropdown_bottom_133c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown_bottom_133c strong {
    color: var(--accent-color);
}

/* Requirements Section */
.status-74ae {
    padding: var(--section-padding);
}

.copper_33ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .copper_33ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shade_liquid_728c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_fast_758c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.light_2d61 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light_2d61 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.input-f29e {
    margin-top: 3rem;
}

.input-f29e .progress_current_1e59 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.input-f29e .hidden-pink-ae7e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input-f29e .light-9020 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.input-f29e .light-9020 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.input-f29e .light-9020 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.input-f29e .light-9020 li strong {
    color: var(--warning-color);
}

.hot-a303 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hot-a303 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.panel-green-ee64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action_6c5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action_6c5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_fccc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.clean_fccc .current_cf66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.breadcrumb-853b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tertiary-red-b976 {
    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);
}

.tertiary-red-b976:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container_inner_0b85 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main-b1c2 {
    flex: 1;
}

.out_61b0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.sort_9d85 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pattern_b813 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.thumbnail_current_781f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.column-0954 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .column-0954 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-d6d6 {
    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);
}

.hard-d6d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.green-e7bb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold-3930 {
    color: var(--text-gray);
    font-size: 1rem;
}

.info-lite-969c {
    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);
}

.right_3e42 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.right_3e42 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.notification_6999 { 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; }
.disabled_fixed_2fe1, .active_bd18 { max-width:100%; height:auto; }

.text_699f, .paragraph-9bb0, .prev_5969 { white-space:normal; }

.background_old_d69e,
.column-center-f97e,
.logo-gold-75c9,
.motion-2d8e,
.white_aa84,
.tag-small-8eeb {
  flex-wrap:wrap;
}

[class*="grid"],
.column-0954,
.detail-black-f0d0,
.steel_69cd {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.over_8014 img,
.column-center-f97e img,
.shade-static-0f6c img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.notice-purple-96ee, .sort-left-f555,
.caption_75a6, .layout-3a7b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.button_696e { width:100%; overflow-x:auto; }
.button_696e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.background-action-aa34 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .background-action-aa34 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.aside_thick_4af2 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.popup_269c,
.backdrop_77a1,
.element-677a,
.chip-bronze-af12,
.frame_81d6,
.column-0954,
.detail-black-f0d0,
.steel_69cd,
.label-wide-0a91,
.highlight_rough_61f0,
.background-action-aa34 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .popup_269c,
  .backdrop_77a1,
  .element-677a,
  .chip-bronze-af12,
  .frame_81d6,
  .column-0954,
  .detail-black-f0d0,
  .steel_69cd,
  .label-wide-0a91,
  .highlight_rough_61f0,
  .background-action-aa34 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.sort-bd82,
.sidebar-cold-59ee,
.hard-d6d6,
.button_45e0,
.medium-751d,
.hovered_2daa,
.large_7310,
.aside_thick_4af2 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.red_ebdf,
.preview-first-d080,
.modal-purple-3558 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.red_ebdf > *,
.preview-first-d080 > *,
.modal-purple-3558 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d1fc */
.phantom-card-e3 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.2;
}
