/* {$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;
}

.frame_bright_4a87 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.text_purple_cca0 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .text_purple_cca0 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .text_purple_cca0 {
        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 */
.item-slow-f3b8 {
    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);
}

.pagination-inner-7c13 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .pagination-inner-7c13 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .sort_last_fc3d {
        grid-column: 1;
    }
    
    .thumbnail_8d5d {
        grid-column: 2;
    }
    
    .detail-fresh-345f {
        grid-column: 3;
    }
}

.sort_last_fc3d img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.sort_last_fc3d:hover img {
    transform: scale(1.05);
}

/* Navigation */
.north-3b50 {
    display: none;
}

@media (min-width: 1024px) {
    .north-3b50 {
        display: block;
    }
}

/* Grouped Navigation */
.list_46d2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.avatar_13ad {
    position: relative;
}

.upper-3d39 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.avatar_13ad .label_soft_ebe4 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.label_soft_ebe4 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.old-9241 {
    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;
}

.old-9241:hover,
.old-9241.fn-active-b2bd {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.light_ea68 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .light_ea68 {
        display: flex;
    }
}

/* Mobile Register Button */
.thumbnail_8d5d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .thumbnail_8d5d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.slider-719f {
    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;
}

.slider-719f::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 */
.detail-fresh-345f {
    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) {
    .detail-fresh-345f {
        display: none;
    }
}

.detail-fresh-345f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.detail-fresh-345f.fn-active-b2bd span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.detail-fresh-345f.fn-active-b2bd span:nth-child(2) {
    opacity: 0;
}

.detail-fresh-345f.fn-active-b2bd span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.pressed-d8a4 {
    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;
}

.pressed-d8a4.fn-active-b2bd {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.brown_d719 {
    overflow: hidden;
}

.progress_5ebc {
    list-style: none;
    padding: 0.75rem 0;
}

.block_black_1b1b {
    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;
}

.block_black_1b1b:hover,
.block_black_1b1b.fn-active-b2bd {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.block_black_1b1b.preview-7998 {
    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;
}

.block_black_1b1b.preview-7998::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 */
.large_0dd3 {
    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;
}

.rough_1fda {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.rough_1fda:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.menu_purple_f9f7 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.menu_purple_f9f7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.info_dim_8d18 {
    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;
}

.info_dim_8d18:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.disabled-paper-ff7b {
    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;
}

.bronze-1210 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.bronze-1210:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern_yellow_db11 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern_yellow_db11:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.silver_4435 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.silver_4435: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);
}

.stale_c41c {
    font-size: 1em;
    font-weight: 700;
}

.alert-cold-f8c4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.popup_3160 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.popup_3160::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;
}

.badge_955d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .badge_955d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.huge-efd1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.accent-dynamic-f474 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.item-next-e4ff {
    margin-bottom: 2rem;
}

.south-d083 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .south-d083 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header-focused-c520 {
    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);
}

.notification-0047 {
    font-size: 1.5rem;
}

.over_4ab0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.accordion_ee95 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-0d91 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.heading-0d91:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hover-4b05 {
    text-align: center;
    margin-bottom: 3rem;
}

.selected-e082 {
    margin-bottom: 1rem;
}

.feature_878b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.west_9051 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .west_9051 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .west_9051.tooltip_0723 {
        direction: rtl;
    }
    
    .west_9051.tooltip_0723 > * {
        direction: ltr;
    }
}

.panel_north_6c74 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.panel_north_6c74:first-child {
    margin-top: 0;
}

.glass_124e {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pagination_53f5 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.pagination_53f5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.full_3488 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_3488 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_fluid_7b61 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary_443d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.over_7405 {
    list-style: none;
}

.over_7405 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.over_7405 li:last-child {
    border-bottom: none;
}

/* Games Features */
.hard_968d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.form-hard-63bd {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.article_outer_e06b {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower-60a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.component-23f2 {
    margin: 2rem 0;
}

.input_9154 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.icon_dirty_68e8 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.accent_d507 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.section-green-c303 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.logo-motion-40b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-motion-40b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_e18e {
    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);
}

.hover_e18e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay_92eb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.right-9c57 {
    font-size: 1.5rem;
}

.focus-fluid-c597 {
    color: var(--accent-color);
    margin: 0;
}

.hovered_a72a {
    list-style: none;
}

.hovered_a72a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hovered_a72a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.static_95af {
    margin: 2rem 0;
}

.hidden_690d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pro-28ca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pro-28ca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-medium-f5bf {
    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);
}

.status-820b {
    font-size: 1.25rem;
}

.item_next_483e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.purple-4af7,
.pattern_02b2 {
    text-align: center;
    margin: 2rem 0;
}

.mini-b95f,
.wrapper_outer_d019 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.notification-warm-7a91 {
    margin: 2rem 0;
    text-align: center;
}

.pattern_6393 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pattern_6393::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;
}

.video-prev-de1a {
    position: relative;
    z-index: 1;
}

.component-d684 {
    margin-bottom: 1rem;
}

.west-0d4c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.focus_large_2ab0 {
    margin-bottom: 3rem;
}

.lower-c662 {
    margin-top: 3rem;
}

.progress_bronze_9dd6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .progress_bronze_9dd6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_bronze_9dd6 .header-focused-c520 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dirty_418f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic_4fcb {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.plasma-501b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.banner_stale_c6da {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .banner_stale_c6da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner_stale_c6da {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.media_new_287e {
    margin-bottom: 1rem;
}

.center_e35d img {
    margin-bottom: 1rem;
}

.progress-a199 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_center_56aa {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.nav-b1b8 {
    list-style: none;
}

.nav-b1b8 li {
    margin-bottom: 0.5rem;
}

.nav-b1b8 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-b1b8 a:hover {
    color: var(--accent-color);
}

.overlay_7ef3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter_lite_1b17 {
    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);
}

.filter_lite_1b17:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hidden_83d1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hidden_83d1 p {
    margin-bottom: 0.25rem;
}

.large-304e {
    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) {
    .large-304e {
        flex-direction: row;
    }
}

.footer_new_e5a0 {
    text-align: center;
}

@media (min-width: 768px) {
    .footer_new_e5a0 {
        text-align: left;
    }
}

.footer_new_e5a0 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fast_f115 {
    font-size: 0.75rem !important;
}

.wrapper_slow_1462 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tooltip_hot_d888 {
    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);
    }
}

.photo_a812 {
    animation: fadeInUp 0.6s ease-out;
}

.caption-f195 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.block_040a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_040a {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.input_fcdd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_fcdd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_fixed_92d2 {
    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);
}

.texture_fixed_92d2 .article_outer_e06b {
    font-size: 1.25rem;
}

.texture_fixed_92d2 .green_2fc1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.gold-374c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold-374c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_2a84 {
    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);
}

.hard_2a84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_df3e {
    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);
}

.notice_left_c0e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.caption-first-13e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_a82e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-focused-b2e3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-focused-b2e3 .lower-60a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-focused-b2e3 .hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_advanced_d990 {
    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);
}

.widget-d43b {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.widget-d43b img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.widget-d43b img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.component-pressed-1a54 {
    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);
}

.cool_0c33 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bottom-30ef {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bottom-30ef label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bottom-30ef 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);
}

.bottom-30ef input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.bottom-30ef input::placeholder {
    color: var(--text-muted);
}

.info-cool-baae {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tertiary-a25a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.tertiary-a25a input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.layout_5945 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.layout_5945:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pro-28ca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro-28ca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-medium-f5bf {
    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);
}

.accordion-medium-f5bf .status-820b {
    font-size: 1.25rem;
}

.accordion-medium-f5bf .item_next_483e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gradient-a6ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_a425 {
    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);
}

.tooltip_a425 .article_outer_e06b {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_a425 .lower-60a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_a425 .hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-red-e18b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search-steel-fce2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-steel-fce2 .feature-smooth-49e1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-steel-fce2 .blue_fe3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale-afc0 {
    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);
}

.logo-small-d86d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-small-d86d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_a13c {
    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);
}

.right_a13c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green_0bab {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.message-b0d1 {
    flex: 1;
}

.hard_aefe {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info_static_7172 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row-upper-ffd2 {
    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);
}

.row-upper-ffd2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.huge_88cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .huge_88cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short_1596 {
    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);
}

.short_1596:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_8225 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-wide-7015 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card_02ac {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.surface_center_7d1e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask-faa1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-6839 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.black_e32e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.black_e32e .hidden-30a0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.black_e32e .purple-c22d {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-a242 {
    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);
}

.up_59c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm_fc84 {
    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);
}

.warm_fc84 .article_outer_e06b {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm_fc84 .lower-60a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.warm_fc84 .hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_fresh_d601 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_fresh_d601 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic_4494 {
    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);
}

.basic_4494:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.tiny-f833 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-f833 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-29b0 {
    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);
}

.in-29b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_east_a1bd {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced_eb7e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.icon_dirty_68e8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.primary-ac6c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.slider_3784 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough_3cb5 {
    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);
}

.rough_3cb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green_d474 {
    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);
}

.fluid_6b23 {
    flex: 1;
}

.fixed-cb5b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.element_4c82 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blue-a13c {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-next-8f65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-d8b9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-d8b9 .feature-smooth-49e1 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort-d8b9 .blue_fe3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_02b2 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_4323 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_4323 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.soft_2d65 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft_2d65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_5a82 {
    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);
}

.detail_5a82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-7360 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_copper_df59 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.button_dim_4fc2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.primary-fixed-b116 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_bottom_3b2c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_wood_4adc {
    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);
}

.hot-3a74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column_3263 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.first-94e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up_59c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm_fc84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.warm_fc84 .lower-60a7 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_fc84 .hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm_5cb9 {
    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);
}

.message_south_de77 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message_south_de77 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_south_de77 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static-d1ac {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.static-d1ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight-c2e0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tall_722d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.last_37cf {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.cool-55ad {
    padding: 1.5rem;
}

.pressed_4ca2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-1878 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-1878 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;
}

.highlight-1878 li:last-child {
    border-bottom: none;
}

.highlight-1878 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.blue_da32 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_da32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected_1867 {
    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);
}

.selected_1867:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass_0146 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar_silver_73e2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.under_0bdd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dropdown-434e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.over_3001 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container-brown-a7ab {
    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);
}

.video_dark_45db {
    font-size: 2rem;
    flex-shrink: 0;
}

.white-0a7f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel_in_52c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom_74b6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.next_488c {
    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);
}

.short-4d0a {
    text-align: center;
}

.hover-basic-e9de {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.caption-9297 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.photo-brown-d934 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paper_6295 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper_6295 .lower-60a7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paper_6295 .hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-paper-1441 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-paper-1441 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-paper-1441 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-fluid-5e54 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.focus-fluid-5e54:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_7ca5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slider_dynamic_06e6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.lower-60a7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.active-top-84be {
    padding: 1.5rem;
}

.hot_bc48 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.red_87fa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red_87fa 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;
}

.red_87fa li:last-child {
    border-bottom: none;
}

.red_87fa li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.gold_407a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.disabled-glass-4dc8 {
    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-glass-4dc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-advanced-6b0a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-middle-0d0e {
    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);
}

.column_df3e {
    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;
}

.notice_left_c0e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-first-13e5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west-e9d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-63f1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gold-509f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight-9068 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.active-51d0 {
    display: flex;
    gap: 1rem;
}

.active-51d0 .section_fc2b {
    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;
}

.grid-c9f2 {
    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);
}

.hovered-fdff {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.rough-e104 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rough-e104 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;
}

.rough-e104 li:last-child {
    border-bottom: none;
}

.rough-e104 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.slow-d523 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slow-d523 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slow-d523 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_lower_d470 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.label_lower_d470:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table_mini_7d83 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination_4dcf {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hidden-30a0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.gold-e113 {
    font-size: 1rem;
}

.mini_4ae5 {
    padding: 1.5rem;
}

.purple-c22d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.copper-b204 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.copper-b204 .short-4d0a {
    text-align: center;
}

.copper-b204 .caption-9297 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.copper-b204 .rough-be01 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.narrow_9407 {
    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);
}

.narrow_9407:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.block_silver_fc9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_silver_fc9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-mini-caf9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-mini-caf9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dim_deba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-7b10 {
    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);
}

.video-5634 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-3237 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-stale-ba8f {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-center-d6fc {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dropdown_be9e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-simple-14cc {
    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);
}

.nav-fe47 {
    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;
}

.nav-fe47.popup_down_a2e4 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.nav-fe47.notice-motion-69cf {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.nav-fe47.item-8a6d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.nav-fe47.row_7a7c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.nav-fe47.dim-c2c5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.column_6660 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.down_7a24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-e082 {
    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);
}

.button_02fa {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.backdrop-red-e18b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop-red-e18b 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;
}

.backdrop-red-e18b li:last-child {
    border-bottom: none;
}

.backdrop-red-e18b li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wide_fcd7 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wide_fcd7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide_fcd7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_e20b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image_e20b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_e20b.green-0952 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .image_e20b.green-0952 {
        grid-column: span 3;
    }
}

.gallery_paper_0804 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.image_e20b.green-0952 .gallery_paper_0804 {
    background: rgba(6, 182, 212, 0.1);
}

.fluid_32e8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.layout_right_21f2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.image_e20b.green-0952 .layout_right_21f2 {
    color: var(--info-color);
}

.overlay-28ef {
    padding: 1.5rem;
    text-align: center;
}

.widget-5c17 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.image_e20b.green-0952 .widget-5c17 {
    color: var(--info-color);
}

.chip_db30 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.motion-9fc0 {
    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 */
.widget_a80a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_a80a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-d702 {
    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);
}

.action-d702:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-21d8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_a425 {
    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);
}

.status-820b {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface-1412 {
    flex: 1;
}

.hidden_690d {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active_a467 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_4359 {
    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);
}

.modal_ee77 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.logo-a6bd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tooltip_hot_d888 {
    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);
}

.outline-e7a5 {
  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);
}

.outline-e7a5 .short-4d0a {
    text-align: center;
}

.outline-e7a5 .hover-basic-e9de {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.outline-e7a5 .caption-9297 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header-cold-48ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_c0d8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_0db9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs_a07c {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-f780 {
    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);
}

.fluid-85c2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_dd91 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_next_5416 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media_next_5416 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media_next_5416 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown-79a7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dropdown-79a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-out-2085 {
    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);
}

.form_hard_d59e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.light-7b81 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.copper_097f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copper_097f.smooth-0841 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.copper_097f.red-9305 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.copper_097f.active_wood_22b9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.label_1579 {
    padding: 1.5rem;
    text-align: center;
}

.glass_3568 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.right-e6df {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.right-e6df .last_68dd {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tag_e719 {
    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);
}

.tag_e719:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dropdown-black-4828 {
  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);
}

.hover-pro-db2a {
    text-align: center;
}

.hover-pro-db2a .hover-basic-e9de {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hover-pro-db2a .caption-9297 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.backdrop-c6f6 { text-align: center; }
.dynamic-c433 { text-align: left; }
.tooltip_left_9b64 { text-align: right; }

.button_8b4f { margin-bottom: 0; }
.media-purple-b813 { margin-bottom: 0.5rem; }
.table_fixed_3749 { margin-bottom: 1rem; }
.pattern_up_ad18 { margin-bottom: 1.5rem; }
.wrapper-20e6 { margin-bottom: 2rem; }

.out_e0ec { margin-top: 0; }
.modal-0632 { margin-top: 0.5rem; }
.heading-hovered-ceec { margin-top: 1rem; }
.slider_8623 { margin-top: 1.5rem; }
.badge_9887 { margin-top: 2rem; }

.fn-hidden-b2bd { display: none; }
.fn-visible-b2bd { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .popup_3160 {
        padding: 6rem 0 3rem;
    }
    
    .badge_955d {
        text-align: center;
    }
    
    .west_9051 {
        text-align: center;
    }
    
    .south-d083 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .item-slow-f3b8,
    .pressed-d8a4,
    .pattern_6393,
    .plasma-501b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .popup_3160 {
        background: none;
    }
}

/* Providers Section */
.frame_e316 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_gold_435f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_gold_435f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern_gold_435f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow_ea05 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.narrow_ea05:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media-paper-823e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gallery-0c39 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gradient-b2b3 {
    list-style: none;
    padding: 0;
}

.gradient-b2b3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.gradient-b2b3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.footer-f737 {
    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);
}

.footer-f737 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.border-f192 {
    padding: var(--section-padding);
}

.caption-complex-8526 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-complex-8526 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-4644 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.huge-4644:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tag_b534 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.aside-white-c49f {
    display: flex;
    flex-direction: column;
}

.copper-39c5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.modal-2829 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.photo-d777 {
    color: var(--accent-color);
}

.title_last_b4ca {
    font-size: 1.25rem;
}

.hard-8cb7 {
    margin-bottom: 1rem;
}

.hard-8cb7 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.disabled_0d8e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.input-2379 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.short-4d0a {
    text-align: center;
}

.hover-basic-e9de {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.caption-9297 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.image_fresh_e6bd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner-2759 {
    margin: 2rem 0;
}

.tabs_warm_c72f {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tabs_warm_c72f .article_outer_e06b {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-ff19 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.video_soft_5a9b {
    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;
}

.video_soft_5a9b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dirty_6998 {
    font-size: 2rem;
}

.paragraph-dcfd {
    display: flex;
    flex-direction: column;
}

.backdrop-east-b115 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.text-33fd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.hard-4067 {
    padding: var(--section-padding);
}

.notification_2cab {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notification_2cab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_2cab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-north-ad48 {
    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);
}

.block-north-ad48:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block-north-ad48 .hover-basic-e9de {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.block-north-ad48 .caption-9297 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.block-north-ad48 .shadow_thick_5609 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.old-a35d {
    margin-top: 4rem;
}

.menu_huge_00fb {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.status-e4fc {
    overflow-x: auto;
}

.paragraph_30c5 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.paragraph_30c5 thead {
    background: var(--accent-color);
}

.paragraph_30c5 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.paragraph_30c5 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_30c5 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.paragraph_30c5 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.complex_6195 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-588e {
    max-width: 900px;
    margin: 0 auto;
}

.layout-86c1 {
    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);
}

.layout-86c1:hover {
    border-color: var(--accent-color);
}

.item_9f99 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.item_9f99 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.dirty-4692 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.layout-86c1.fn-active-b2bd .dirty-4692 {
    transform: rotate(45deg);
}

.texture-yellow-ce9b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.layout-86c1.fn-active-b2bd .texture-yellow-ce9b {
    max-height: 1000px;
}

.texture-yellow-ce9b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.gas-8b5a {
    padding: var(--section-padding);
}

.widget-d43b {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.list_2fb6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.motion-6404 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-6404 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.glass_10d8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_dim_0472 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.list-ad0b {
    font-size: 2rem;
}

.surface_d762 {
    color: var(--text-white);
    margin: 0;
}

.video-314a {
    list-style: none;
    padding: 0;
}

.video-314a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-314a li:last-child {
    border-bottom: none;
}

.dim_03b6 {
    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);
}

.dim_03b6 p {
    color: var(--success-color);
    margin: 0;
}

.primary_solid_f4b8 {
    margin-top: 3rem;
}

.hovered-fdff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.image-cool-63e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-cool-63e9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.picture_3be4 {
    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);
}

.hovered_4048 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.picture_3be4 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.widget_a170 {
    padding: var(--section-padding);
}

.stone-cf7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stone-cf7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_f3b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.first_f3b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.easy_562f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article_new_20f1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.focus-yellow-49ba {
    flex: 1;
}

.image-dirty-eafa {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.bronze_6d29 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.stale-505a {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion_11fe {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.motion_11fe:last-child {
    border-bottom: none;
}

/* Comparison Section */
.pagination-61c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.item_iron_ba47 {
    padding: var(--section-padding);
}

.smooth-9606 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.banner_last_62c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_last_62c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-bottom-81df {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_42e3, .small_6c95, .complex-a800 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.complex-a800 {
    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 */
.paragraph_white_f3c2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup-eacd {
    margin: 2rem 0;
}

.secondary_dynamic_f3cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_ae16 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.easy_e310 {
    list-style: none;
    padding: 0;
}

.easy_e310 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.easy_e310 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.easy_e310 li:last-child {
    border-bottom: none;
}

.search-orange-147d {
    text-align: center;
    margin-top: 2rem;
}

.element-d6cb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.fast-a464 {
    padding: var(--section-padding);
}

.header_8646 {
    margin: 2rem 0;
}

.component_bfd0 {
    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) {
    .component_bfd0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.component_bfd0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool-314d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.wide_80ec {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.video-c156 {
    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;
}

.right_cd1d {
    flex: 1;
}

.card-a545 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.top-8769 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.motion-0f48 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.form_c794 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .form_c794 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.primary-slow-a75b {
    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);
}

.primary-slow-a75b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.primary-slow-a75b .hover-basic-e9de {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.primary-slow-a75b .caption-9297 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hidden-ba00 {
    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);
}

.dim_c9c9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dim_c9c9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.selected-6489 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .selected-6489 {
        grid-template-columns: 1fr 1fr;
    }
}

.background-d9f5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-fluid-9109 {
    margin-bottom: 1.5rem;
}

.section-fluid-9109 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-fluid-9109 input,
.section-fluid-9109 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;
}

.section-fluid-9109 input:focus,
.section-fluid-9109 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.backdrop_pink_34e8 {
    width: 100%;
    margin-top: 1rem;
}

.action_7507 {
    display: flex;
    align-items: center;
}

.smooth_1647 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.medium_1dbd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.pro-daaf {
    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;
}

.shade-light-27ae {
    color: var(--text-gray);
}

.container_brown_f62d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.tooltip-f02d {
    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);
}

.tooltip-f02d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.outline-92fd {
    margin-top: 3rem;
}

.notification-ec86 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.sidebar-small-3508 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim_1bd9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.search_20c1 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search_20c1:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.modal_wood_d448 {
    padding: var(--section-padding);
}

.video-inner-9f76 {
    margin: 2rem 0;
}

.progress_95cf {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tall_823c {
    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_823c:hover, .tall_823c.fn-active-b2bd {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.thick_d314 {
    display: none;
}

.thick_d314.fn-active-b2bd {
    display: block;
}

.tertiary-fab8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_38ae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture-glass-dc61 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.texture-glass-dc61 ul {
    list-style: none;
    padding: 0;
}

.texture-glass-dc61 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.texture-glass-dc61 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.box-under-c323 {
    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 */
.focused-03d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_8a0b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_simple_c58d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.image_02cb {
    color: var(--accent-color);
    margin: 0;
}

.hidden-2184 {
    display: flex;
    gap: 1.5rem;
}

.wood-ed40 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.middle_09b1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.hover_upper_e993 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover_upper_e993.menu_7ed3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hover_upper_e993.secondary-93b4 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hover_upper_e993.avatar_tall_9d07 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.icon-641d {
    margin-top: 2rem;
}

.button-2fd2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.huge_e0dc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .huge_e0dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-left-e0a5 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.black-076c {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.video_red_a143 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.huge_3b6a {
    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 */
.full_d278 {
    padding: var(--section-padding);
}

.pro_dca5 {
    margin: 2rem 0;
}

.plasma_694b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.table_c0ed {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.background-de73 {
    list-style: none;
    padding: 0;
}

.background-de73 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;
}

.background-de73 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.background-de73 li:last-child {
    border-bottom: none;
}

.content_bf23 {
    margin: 2rem 0;
}

.container-easy-c435 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slow_723c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slow_723c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent-ced6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-medium-25f5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block-inner-1be5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thick_2a25 {
    margin-top: 2rem;
}

.hard_aefe {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.avatar-42e6 {
    list-style: none;
    padding: 0;
}

.hovered-1e94 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hovered-1e94 a {
    color: var(--accent-color);
    text-decoration: none;
}

.hovered-1e94 a:hover {
    text-decoration: underline;
}

.badge-1624 {
    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 */
.aside-b0db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-light-33a9 {
    margin: 2rem 0;
}

.layout-db6c {
    margin-bottom: 3rem;
}

.layout-db6c .tag_ae16 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.paragraph-yellow-8f90 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.preview_bottom_6485 {
    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);
}

.preview_bottom_6485:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tiny_19c2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tiny_19c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in_55e5 {
    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 */
.medium_aba5 {
    padding: var(--section-padding);
}

.shadow_wood_2bec {
    margin: 2rem 0;
}

.cold_1275 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-9418 {
    overflow-x: auto;
    margin: 2rem 0;
}

.hovered-4acd {
    background: rgba(6, 182, 212, 0.1) !important;
}

.main-c53d {
    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;
}

.wrapper_8f00 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.outer_09b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .outer_09b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass_36ae {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_36ae .article_outer_e06b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.glass_36ae .lower-60a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture-f32b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.shadow_f567 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-c7aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-c7aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-79fa {
    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;
}

.caption-79fa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.green-b4d2 {
    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);
}

.title_old_2287 {
    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;
}

.shadow_motion_b270 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.black-be7e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.main-5a18 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.disabled-middle-0957 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-3306 {
    color: var(--text-white);
    font-weight: 600;
}

.slider-gold-6ae3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section_cold_a505 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section_cold_a505 .section_fc2b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modal_8cc2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_8cc2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-06bb {
    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);
}

.dynamic-06bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic-06bb .hover-basic-e9de {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic-06bb .caption-9297 {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop_bf27 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_711a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.avatar_711a strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.outline_bottom_3b2c {
    margin: 2rem 0;
}

.dropdown_wood_4adc {
    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_wood_4adc:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hot-3a74 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.blue-1659 {
    flex: 1;
}

.column_3263 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.first-94e9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.up_59c0 {
    margin: 2rem 0;
}

.warm_fc84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm_fc84 .lower-60a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.warm_fc84 .hot_bc48 {
    color: var(--text-gray);
    margin: 0;
}

.warm_5cb9 {
    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);
}

.warm_5cb9 .mini-b95f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.picture-f32b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.green_d474 {
    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;
}

.fluid_6b23 {
    flex: 1;
}

.element_4c82 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.blue-a13c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.column_df3e {
    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;
}

.notice-aae4 {
    flex: 1;
}

.notice_left_c0e2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.caption-first-13e5 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.gold-509f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.highlight-9068 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.active-51d0 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.active-51d0 .section_fc2b {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.grid-c9f2 {
    margin-top: 2rem;
}

.grid-c9f2 .hovered-fdff {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.over_8f45 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_488c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .next_488c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next_488c .short-4d0a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-brown-d934 {
    margin: 2rem 0;
}

.paper_6295 {
    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 */
.tabs-b54c {
    padding: var(--section-padding);
}

.active-top-84be {
    margin-top: 1rem;
}

.red_87fa {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.red_87fa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.red_87fa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.gas-2c0b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-9b42 {
    margin: 2rem 0;
}

.border_silver_ab1b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.notification-29db {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accent_42f9 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.under-c1a9 {
    margin: 2rem 0;
}

.gradient_thick_0d72 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.gradient_thick_0d72 .tag_ae16 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_4a72 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion_4a72 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro_9057 {
    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);
}

.lite-4c8b {
    color: var(--text-white);
    font-weight: 600;
}

.advanced_0508 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.outline-6657 {
    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);
}

.outline-6657 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.cold_c154 {
    padding: var(--section-padding);
}

.popup-hovered-f69d {
    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;
}

.popup-hovered-f69d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.huge-a787 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huge-a787 .hovered_4048 {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge-a787 .notification-liquid-c6d0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dirty-283b {
    flex: 1;
}

.text_37a7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.image-ab1a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-ab1a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.image-ab1a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.alert-b0d1 {
    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);
}

.alert-b0d1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert-b0d1 strong {
    color: var(--warning-color);
}

/* Slots Section */
.element-fixed-cdfa {
    padding: var(--section-padding);
}

.mask-faa1 {
    margin: 2rem 0;
}

/* Table Games Section */
.nav-hard-ed65 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-6839 {
    margin: 2rem 0;
}

.black_e32e {
    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);
}

.black_e32e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.black_e32e .hidden-30a0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.black_e32e .purple-c22d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.block-a242 {
    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);
}

.block-a242 .mini-b95f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.wrapper_4f96 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-left-26be {
    margin: 2rem 0;
}

.photo_69ec {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom_ee9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.under_d96b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.accent-bright-50b7 {
    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);
}

.accent-bright-50b7:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.accent-bright-50b7.fn-active-b2bd {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_5ad6 {
    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);
}

.popup_hovered_44fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup_hovered_44fe strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.banner_pro_ca66 {
    padding: var(--section-padding);
}

.thumbnail-liquid-e7b4 {
    margin: 2rem 0;
}

.card-5d3c {
    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);
}

.card-5d3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .card-5d3c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.dropdown_d5e2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.slider_d0d5 {
    flex: 1;
}

.feature-rough-04bb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wide-bd31 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hard-81ff {
    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;
}

.outline-gas-385f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.down-6355 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dim_4f56 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header_plasma_6f64 {
    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;
}

.header_plasma_6f64:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.upper_46af {
    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);
}

.notice_6b0b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice_6b0b strong {
    color: var(--accent-color);
}

/* New Games Section */
.card_1b6b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right_d05b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .right_d05b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .right_d05b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple_0cc1 {
    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;
}

.purple_0cc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_complex_85e2 {
    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;
}

.current_013f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.lite-03fc {
    font-size: 2rem;
}

.new-f41e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.secondary_liquid_7023 {
    flex: 1;
}

.border-top-0a58 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.simple-4129 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dirty-7dfa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_green_9fe8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.plasma-e1b3 {
    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;
}

.full_da1d {
    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;
}

.full_da1d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.table_1c7b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-1ef1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic-5452 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .dynamic-5452 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_8c47 {
    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);
}

.top_dbf7 {
    color: var(--text-white);
    font-weight: 600;
}

.summary_light_f33a {
    color: var(--accent-color);
    font-weight: 600;
}

.hard-b69a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hard-b69a strong {
    color: var(--accent-color);
}

/* Security Section */
.rough_bd9e {
    padding: var(--section-padding);
}

/* Benefits Section */
.thumbnail_cold_8be2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.simple_5286 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tertiary_under_fe97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-0bca {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.slider_6a50 {
    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) {
    .slider_6a50 {
        flex-direction: column;
        gap: 1rem;
    }
}

.slider_6a50:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slider_6a50 .column_df3e {
    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;
}

.slider_6a50 .notice-aae4 {
    flex: 1;
}

.slider_6a50 .notice_left_c0e2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.slider_6a50 .caption-first-13e5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hovered_3179 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_3179 .hidden_690d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hovered_3179 .gradient-a6ce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered_3179 .gradient-a6ce li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered_3179 .gradient-a6ce li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.black_cdd9 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.notice_upper_7356 {
    padding: var(--section-padding);
}

.thumbnail_62f5 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .thumbnail_62f5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_98bb {
    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);
}

.right_98bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.right_98bb .gold_845a {
    font-size: 2rem;
    flex-shrink: 0;
}

.right_98bb .in_a780 {
    flex: 1;
}

.right_98bb .feature-smooth-49e1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right_98bb .widget_black_ef95 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.module_gas_4095 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_gas_4095 .detail-3aa1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module_gas_4095 .badge-7f48 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.module_gas_4095 .badge-7f48 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);
}

.module_gas_4095 .badge-7f48 li:last-child {
    border-bottom: none;
}

.module_gas_4095 .badge-7f48 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;
}

.module_gas_4095 .badge-7f48 li strong {
    color: var(--text-white);
}

.video_51ed {
    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);
}

.video_51ed p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.video_51ed strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.aside_dynamic_29e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink_5af5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pink_5af5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.message_next_9fb8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message_next_9fb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slider-54a2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-4481 {
    font-size: 2rem;
}

.background-2740 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.icon_e80d {
    flex: 1;
}

.hovered-4040 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered-4040 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered-4040 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.south_cfae {
    margin-top: 3rem;
}

.plasma_694b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.table_c0ed {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.background-de73 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-de73 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.background-de73 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.background-de73 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.dark_34fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_2842 {
    margin: 2rem 0;
}

.feature-d5c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.feature-d5c1 .tag_ae16 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold-f63f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold-f63f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle_7c3a {
    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);
}

.middle_7c3a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.item_fe37 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay_684f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.sort_66e5 {
    padding: var(--section-padding);
}

.chip-b4bb {
    margin: 2rem 0;
}

.photo-fe7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .photo-fe7c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo-fe7c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_66f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail_66f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.black_43a8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.button-5d2a {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.card-full-29df {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-full-29df.description_491c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.steel_79bb {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.input_573b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.hover_f38a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border-c16c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lower-bed4 {
    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);
}

.lower-bed4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lower-bed4 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.filter-new-bca1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-9b6d {
    margin: 2rem 0;
}

.hero-b3df {
    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) {
    .hero-b3df {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-b3df:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hero-b3df::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);
}

.glass_9d3e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.surface-057e {
    flex: 1;
}

.avatar_1e6c {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info_short_7098 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info_short_7098 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_df3d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-bronze-9a13 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_liquid_2575 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description_liquid_2575 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold-eb51 {
    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);
}

.surface-6780 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.menu-left-ffd1 {
    flex: 1;
}

.dirty_1aa9 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.solid_051b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lower-c13d {
    margin-top: 2rem;
    text-align: center;
}

.north-5c47 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north-5c47 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.block_silver_fc9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_silver_fc9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-mini-caf9 {
    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);
}

.box-mini-caf9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box-mini-caf9 .glass_0146 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-mini-caf9 .sidebar_silver_73e2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.box-mini-caf9 .under_0bdd {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.box-mini-caf9 .dropdown-434e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.solid_53f9 {
    padding: var(--section-padding);
}

.description-7b10 .large_42aa {
    flex: 1;
}

/* Promo Calendar Section */
.breadcrumb_down_a56f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny_e373 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny_e373 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next_fe22 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-under-72dc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.frame-tiny-2aa2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-fbba {
    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);
}

.widget_13cf {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.disabled_fixed_593d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.out_dc0a {
    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);
}

.out_dc0a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.out_dc0a strong {
    color: var(--accent-color);
}

/* Requirements Section */
.medium_cedf {
    padding: var(--section-padding);
}

.tall_d623 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tall_d623 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel_1f81 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-d1aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside-8c5e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-8c5e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-fdd7 {
    margin-top: 3rem;
}

.heading-fdd7 .plasma_694b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.heading-fdd7 .table_c0ed {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-fdd7 .background-de73 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.heading-fdd7 .background-de73 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.heading-fdd7 .background-de73 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.heading-fdd7 .background-de73 li strong {
    color: var(--warning-color);
}

.background-fa07 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.background-fa07 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.liquid-44c1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out-de6b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out-de6b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_d415 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_d415 .tag_ae16 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.silver_7552 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.soft_ff68 {
    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);
}

.soft_ff68:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.backdrop-393e {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_19ec {
    flex: 1;
}

.motion-d560 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.secondary-north-031b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hero_red_078c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.summary_right_a77b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.disabled-glass-4e55 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .disabled-glass-4e55 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_east_9cee {
    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);
}

.box_east_9cee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-5817 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline_huge_fe1f {
    color: var(--text-gray);
    font-size: 1rem;
}

.dim_c9c9 {
    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);
}

.nav_9dce {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.nav_9dce strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.text_purple_cca0 { 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; }
.heading-0d91, .pagination_53f5 { max-width:100%; height:auto; }

.large_0dd3, .info_dim_8d18, .disabled-paper-ff7b { white-space:normal; }

.badge_955d,
.west_9051,
.widget_a80a,
.block_silver_fc9f,
.up_59c0,
.media_next_5416 {
  flex-wrap:wrap;
}

[class*="grid"],
.disabled-glass-4e55,
.photo-fe7c,
.progress_bronze_9dd6 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.popup_3160 img,
.west_9051 img,
.accordion_ee95 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.huge-efd1, .accent-dynamic-f474,
.selected-e082, .feature_878b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.status-e4fc { width:100%; overflow-x:auto; }
.status-e4fc table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.pattern_gold_435f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .pattern_gold_435f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.narrow_ea05 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.notification_2cab,
.video_paper_7136,
.header_east_cc6a,
.status_motion_4d6c,
.form_c794,
.disabled-glass-4e55,
.photo-fe7c,
.progress_bronze_9dd6,
.dropdown-black-4828,
.thumbnail-liquid-e7b4,
.pattern_gold_435f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .notification_2cab,
  .video_paper_7136,
  .header_east_cc6a,
  .status_motion_4d6c,
  .form_c794,
  .disabled-glass-4e55,
  .photo-fe7c,
  .progress_bronze_9dd6,
  .dropdown-black-4828,
  .thumbnail-liquid-e7b4,
  .pattern_gold_435f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.block-north-ad48,
.primary-slow-a75b,
.box_east_9cee,
.header-focused-c520,
.detail_66f2,
.hover-pro-db2a,
.card-5d3c,
.narrow_ea05 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.text_aed6,
.aside_brown_d239,
.west-736e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.text_aed6 > *,
.aside_brown_d239 > *,
.west-736e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: e0fa */
.shadow-element-q1 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.3;
}
